Timeline
Jan 28, 2011:
- 11:56 PM Changeset in webkit [77051] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-28 Alexey Proskuryakov <ap@apple.com>
Reviewed by Dan Bernstein.
https://bugs.webkit.org/show_bug.cgi?id=53367
<rdar://problem/8926460> Remove dysfunctional code from -[WKPrintingView _isPrintingPreview].
- UIProcess/API/mac/WKPrintingView.mm: (-[WKPrintingView _isPrintingPreview]): The common branch works fine for now, no need to make platforms different.
- 11:37 PM Changeset in webkit [77050] by
-
- 4 edits2 adds in trunk
2011-01-28 Eric Seidel <eric@webkit.org>
Reviewed by Darin Adler.
HTML5 TreeBuilder regressed a Peacekeeper DOM test by 40%
https://bugs.webkit.org/show_bug.cgi?id=48719
It's unclear exactly what the Peacekeeper benchmark is testing,
because I haven't found a way to run it myself.
However, I constructed a benchmark which shows at least one possible slow point.
The HTML5 spec talks about creating a new document for every time we use
the fragment parsing algorithm. Document() it turns out, it a huge bloated
mess, and the constructor and destructor do a huge amount of work.
To avoid constructing (or destructing) documents for each innerHTML call,
this patch adds a shared dummy document used by all innerHTML calls.
- benchmarks/parser/tiny-innerHTML.html: Added.
2011-01-28 Eric Seidel <eric@webkit.org>
Reviewed by Darin Adler.
HTML5 TreeBuilder regressed a Peacekeeper DOM test by 40%
https://bugs.webkit.org/show_bug.cgi?id=48719
It's unclear exactly what the Peacekeeper benchmark is testing,
because I haven't found a way to run it myself.
However, I constructed a benchmark which shows at least one possible slow point.
The HTML5 spec talks about creating a new document for every time we use
the fragment parsing algorithm. Document() it turns out, it a huge bloated
mess, and the constructor and destructor do a huge amount of work.
To avoid constructing (or destructing) documents for each innerHTML call,
this patch adds a shared dummy document used by all innerHTML calls.
This patch brings us from 7x slower than Safari 5 on tiny-innerHTML
to only 1.5x slower than Safari 5. I'm sure there is more work to do here.
Saving a shared Document like this is error prone. Currently
DummyDocumentFactory::releaseDocument() calls removeAllChildren()
in an attempt to clear the Document's state. However it's possible
that that call is not sufficient and we'll have future bugs here.
- html/parser/HTMLTreeBuilder.cpp: (WebCore::DummyDocumentFactory::createDummyDocument): (WebCore::DummyDocumentFactory::releaseDocument): (WebCore::HTMLTreeBuilder::FragmentParsingContext::FragmentParsingContext): (WebCore::HTMLTreeBuilder::FragmentParsingContext::document): (WebCore::HTMLTreeBuilder::FragmentParsingContext::finished):
- html/parser/HTMLTreeBuilder.h:
- 11:06 PM Changeset in webkit [77049] by
-
- 3 edits2 adds in trunk
2011-01-28 Johnny Ding <jnd@chromium.org>
Reviewed by Adam Barth.
Gesture API, disallow popup bypass with using iframe src.
https://bugs.webkit.org/show_bug.cgi?id=53244
- fast/events/popup-blocked-from-iframe-src-expected.txt: Added.
- fast/events/popup-blocked-from-iframe-src.html: Added.
2011-01-28 Johnny Ding <jnd@chromium.org>
Reviewed by Adam Barth.
Gesture API: Don't use current gesture status to set "forceUserGesture" parameter when calling ScriptController::executeScript.
The "forceUserGesture" parameter should be only set when you are definitely sure that the running script is from a hyper-link.
https://bugs.webkit.org/show_bug.cgi?id=53244
Test: fast/events/popup-blocked-from-iframe-src.html
- bindings/ScriptControllerBase.cpp: (WebCore::ScriptController::executeIfJavaScriptURL):
- 11:00 PM Changeset in webkit [77048] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed; removed Chromium test expectations for tests that have been steadily passing.
In particular, many ietestcenter tests have been passing since V8 is updated to
version 3.0.12 in Chromium r72940.
- platform/chromium/test_expectations.txt:
- 10:25 PM Changeset in webkit [77047] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-28 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed; roll WebKit Chromium revision from 72894 to 73048.
- DEPS:
- 9:56 PM Changeset in webkit [77046] by
-
- 7 edits2 copies in trunk/LayoutTests
Updated test results after r76983.
Rubber-stamped by Maciej Stachowiak.
- platform/mac-leopard/fast/forms/select-writing-direction-natural-expected.txt: Copied from LayoutTests/platform/mac/fast/forms/select-writing-direction-natural-expected.txt.
- platform/mac-leopard/fast/text/international/bidi-menulist-expected.txt: Copied from LayoutTests/platform/mac/fast/text/international/bidi-menulist-expected.txt.
- platform/mac/fast/forms/select-writing-direction-natural-expected.checksum:
- platform/mac/fast/forms/select-writing-direction-natural-expected.png:
- platform/mac/fast/forms/select-writing-direction-natural-expected.txt:
- platform/mac/fast/text/international/bidi-menulist-expected.checksum:
- platform/mac/fast/text/international/bidi-menulist-expected.png:
- platform/mac/fast/text/international/bidi-menulist-expected.txt:
- 9:02 PM Changeset in webkit [77045] by
-
- 6 edits in trunk
2011-01-28 Simon Fraser <Simon Fraser>
Reviewed by Gavin Barraclough.
Add various clampToInt() methods to MathExtras.h
https://bugs.webkit.org/show_bug.cgi?id=52910
Use clampToInteger() from MathExtras.h
- css/CSSParser.cpp: (WebCore::CSSParser::parseCounter):
- 8:06 PM Changeset in webkit [77044] by
-
- 125 edits2 deletes in trunk/Source
2011-01-28 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r77006 and r77020.
http://trac.webkit.org/changeset/77006
http://trac.webkit.org/changeset/77020
https://bugs.webkit.org/show_bug.cgi?id=53360
"Broke Windows tests" (Requested by rniwa on #webkit).
- API/JSCallbackObject.h: (JSC::JSCallbackObjectData::setPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::getPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::setPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::markChildren): (JSC::JSCallbackObject::setPrivateProperty):
- API/JSCallbackObjectFunctions.h: (JSC::::put): (JSC::::staticFunctionGetter):
- API/JSObjectRef.cpp: (JSObjectMakeConstructor): (JSObjectSetPrivateProperty):
- API/JSWeakObjectMapRefInternal.h:
- JavaScriptCore.exp:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- JavaScriptCore.xcodeproj/project.pbxproj:
- bytecode/CodeBlock.cpp: (JSC::CodeBlock::markAggregate):
- bytecode/CodeBlock.h: (JSC::CodeBlock::globalObject):
- bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::BytecodeGenerator): (JSC::BytecodeGenerator::emitJumpIfNotFunctionCall): (JSC::BytecodeGenerator::emitJumpIfNotFunctionApply): (JSC::BytecodeGenerator::findScopedProperty):
- debugger/Debugger.cpp: (JSC::evaluateInGlobalCallFrame):
- debugger/DebuggerActivation.cpp: (JSC::DebuggerActivation::DebuggerActivation): (JSC::DebuggerActivation::markChildren):
- debugger/DebuggerActivation.h:
- debugger/DebuggerCallFrame.cpp: (JSC::DebuggerCallFrame::evaluate):
- interpreter/CallFrame.h: (JSC::ExecState::exception):
- interpreter/Interpreter.cpp: (JSC::Interpreter::resolve): (JSC::Interpreter::resolveSkip): (JSC::Interpreter::resolveGlobal): (JSC::Interpreter::resolveGlobalDynamic): (JSC::Interpreter::resolveBaseAndProperty): (JSC::Interpreter::unwindCallFrame): (JSC::appendSourceToError): (JSC::Interpreter::execute): (JSC::Interpreter::tryCacheGetByID): (JSC::Interpreter::privateExecute):
- jit/JITStubs.cpp: (JSC::JITThunks::tryCacheGetByID): (JSC::DEFINE_STUB_FUNCTION):
- jsc.cpp: (GlobalObject::GlobalObject):
- runtime/ArgList.cpp: (JSC::MarkedArgumentBuffer::markLists):
- runtime/Arguments.cpp: (JSC::Arguments::markChildren): (JSC::Arguments::getOwnPropertySlot): (JSC::Arguments::getOwnPropertyDescriptor): (JSC::Arguments::put):
- runtime/Arguments.h: (JSC::Arguments::setActivation): (JSC::Arguments::Arguments):
- runtime/ArrayConstructor.cpp: (JSC::ArrayConstructor::ArrayConstructor): (JSC::constructArrayWithSizeQuirk):
- runtime/ArrayPrototype.cpp: (JSC::arrayProtoFuncSplice):
- runtime/BatchedTransitionOptimizer.h: (JSC::BatchedTransitionOptimizer::BatchedTransitionOptimizer): (JSC::BatchedTransitionOptimizer::~BatchedTransitionOptimizer):
- runtime/BooleanConstructor.cpp: (JSC::BooleanConstructor::BooleanConstructor): (JSC::constructBoolean): (JSC::constructBooleanFromImmediateBoolean):
- runtime/BooleanPrototype.cpp: (JSC::BooleanPrototype::BooleanPrototype):
- runtime/ConservativeSet.cpp: (JSC::ConservativeSet::grow):
- runtime/ConservativeSet.h: (JSC::ConservativeSet::~ConservativeSet): (JSC::ConservativeSet::mark):
- runtime/DateConstructor.cpp: (JSC::DateConstructor::DateConstructor):
- runtime/DateInstance.cpp: (JSC::DateInstance::DateInstance):
- runtime/DatePrototype.cpp: (JSC::dateProtoFuncSetTime): (JSC::setNewValueFromTimeArgs): (JSC::setNewValueFromDateArgs): (JSC::dateProtoFuncSetYear):
- runtime/ErrorConstructor.cpp: (JSC::ErrorConstructor::ErrorConstructor):
- runtime/ErrorInstance.cpp: (JSC::ErrorInstance::ErrorInstance):
- runtime/ErrorPrototype.cpp: (JSC::ErrorPrototype::ErrorPrototype):
- runtime/FunctionConstructor.cpp: (JSC::FunctionConstructor::FunctionConstructor):
- runtime/FunctionPrototype.cpp: (JSC::FunctionPrototype::FunctionPrototype):
- runtime/GetterSetter.cpp: (JSC::GetterSetter::markChildren):
- runtime/GetterSetter.h: (JSC::GetterSetter::GetterSetter): (JSC::GetterSetter::getter): (JSC::GetterSetter::setGetter): (JSC::GetterSetter::setter): (JSC::GetterSetter::setSetter):
- runtime/GlobalEvalFunction.cpp: (JSC::GlobalEvalFunction::GlobalEvalFunction): (JSC::GlobalEvalFunction::markChildren):
- runtime/GlobalEvalFunction.h: (JSC::GlobalEvalFunction::cachedGlobalObject):
- runtime/Heap.cpp: (JSC::Heap::markProtectedObjects): (JSC::Heap::markTempSortVectors): (JSC::Heap::markRoots):
- runtime/InternalFunction.cpp: (JSC::InternalFunction::InternalFunction):
- runtime/JSAPIValueWrapper.h: (JSC::JSAPIValueWrapper::value): (JSC::JSAPIValueWrapper::JSAPIValueWrapper):
- runtime/JSActivation.cpp: (JSC::JSActivation::markChildren): (JSC::JSActivation::put):
- runtime/JSArray.cpp: (JSC::JSArray::JSArray): (JSC::JSArray::getOwnPropertySlot): (JSC::JSArray::getOwnPropertyDescriptor): (JSC::JSArray::put): (JSC::JSArray::putSlowCase): (JSC::JSArray::deleteProperty): (JSC::JSArray::increaseVectorLength): (JSC::JSArray::setLength): (JSC::JSArray::pop): (JSC::JSArray::push): (JSC::JSArray::unshiftCount): (JSC::JSArray::sort): (JSC::JSArray::fillArgList): (JSC::JSArray::copyToRegisters): (JSC::JSArray::compactForSorting):
- runtime/JSArray.h: (JSC::JSArray::getIndex): (JSC::JSArray::setIndex): (JSC::JSArray::uncheckedSetIndex): (JSC::JSArray::markChildrenDirect):
- runtime/JSByteArray.cpp: (JSC::JSByteArray::JSByteArray):
- runtime/JSCell.h: (JSC::JSCell::JSValue::toThisObject): (JSC::JSCell::MarkStack::append):
- runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction): (JSC::JSFunction::getOwnPropertySlot):
- runtime/JSGlobalData.h:
- runtime/JSGlobalObject.cpp: (JSC::markIfNeeded): (JSC::JSGlobalObject::reset): (JSC::JSGlobalObject::resetPrototype): (JSC::JSGlobalObject::markChildren):
- runtime/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObjectData::JSGlobalObjectData): (JSC::JSGlobalObject::regExpConstructor): (JSC::JSGlobalObject::errorConstructor): (JSC::JSGlobalObject::evalErrorConstructor): (JSC::JSGlobalObject::rangeErrorConstructor): (JSC::JSGlobalObject::referenceErrorConstructor): (JSC::JSGlobalObject::syntaxErrorConstructor): (JSC::JSGlobalObject::typeErrorConstructor): (JSC::JSGlobalObject::URIErrorConstructor): (JSC::JSGlobalObject::evalFunction): (JSC::JSGlobalObject::objectPrototype): (JSC::JSGlobalObject::functionPrototype): (JSC::JSGlobalObject::arrayPrototype): (JSC::JSGlobalObject::booleanPrototype): (JSC::JSGlobalObject::stringPrototype): (JSC::JSGlobalObject::numberPrototype): (JSC::JSGlobalObject::datePrototype): (JSC::JSGlobalObject::regExpPrototype): (JSC::JSGlobalObject::methodCallDummy): (JSC::Structure::prototypeForLookup): (JSC::constructArray):
- runtime/JSONObject.cpp: (JSC::Stringifier::Holder::object): (JSC::Stringifier::markAggregate): (JSC::Stringifier::stringify): (JSC::Stringifier::Holder::appendNextProperty): (JSC::Walker::callReviver): (JSC::Walker::walk):
- runtime/JSObject.cpp: (JSC::JSObject::defineGetter): (JSC::JSObject::defineSetter): (JSC::JSObject::removeDirect): (JSC::JSObject::putDirectFunction): (JSC::JSObject::putDirectFunctionWithoutTransition): (JSC::putDescriptor): (JSC::JSObject::defineOwnProperty):
- runtime/JSObject.h: (JSC::JSObject::getDirectOffset): (JSC::JSObject::putDirectOffset): (JSC::JSObject::flattenDictionaryObject): (JSC::JSObject::putDirectInternal): (JSC::JSObject::putDirect): (JSC::JSObject::putDirectFunction): (JSC::JSObject::putDirectWithoutTransition): (JSC::JSObject::putDirectFunctionWithoutTransition): (JSC::JSValue::putDirect): (JSC::JSObject::allocatePropertyStorageInline): (JSC::JSObject::markChildrenDirect):
- runtime/JSPropertyNameIterator.cpp: (JSC::JSPropertyNameIterator::JSPropertyNameIterator): (JSC::JSPropertyNameIterator::get):
- runtime/JSPropertyNameIterator.h:
- runtime/JSStaticScopeObject.cpp: (JSC::JSStaticScopeObject::markChildren):
- runtime/JSString.cpp: (JSC::StringObject::create):
- runtime/JSValue.h:
- runtime/JSWrapperObject.cpp: (JSC::JSWrapperObject::markChildren):
- runtime/JSWrapperObject.h: (JSC::JSWrapperObject::internalValue): (JSC::JSWrapperObject::setInternalValue):
- runtime/LiteralParser.cpp: (JSC::LiteralParser::parse):
- runtime/Lookup.cpp: (JSC::setUpStaticFunctionSlot):
- runtime/Lookup.h: (JSC::lookupPut):
- runtime/MarkStack.h: (JSC::MarkStack::appendValues):
- runtime/MathObject.cpp: (JSC::MathObject::MathObject):
- runtime/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
- runtime/NativeErrorPrototype.cpp: (JSC::NativeErrorPrototype::NativeErrorPrototype):
- runtime/NumberConstructor.cpp: (JSC::NumberConstructor::NumberConstructor): (JSC::constructWithNumberConstructor):
- runtime/NumberObject.cpp: (JSC::constructNumber):
- runtime/NumberPrototype.cpp: (JSC::NumberPrototype::NumberPrototype):
- runtime/ObjectConstructor.cpp: (JSC::ObjectConstructor::ObjectConstructor): (JSC::objectConstructorGetOwnPropertyDescriptor):
- runtime/Operations.h: (JSC::normalizePrototypeChain): (JSC::resolveBase):
- runtime/PrototypeFunction.cpp: (JSC::PrototypeFunction::PrototypeFunction):
- runtime/PutPropertySlot.h: (JSC::PutPropertySlot::setExistingProperty): (JSC::PutPropertySlot::setNewProperty): (JSC::PutPropertySlot::base):
- runtime/RegExpConstructor.cpp: (JSC::RegExpConstructor::RegExpConstructor):
- runtime/ScopeChain.cpp: (JSC::ScopeChainNode::print):
- runtime/ScopeChain.h: (JSC::ScopeChainNode::~ScopeChainNode): (JSC::ScopeChainIterator::operator*): (JSC::ScopeChainIterator::operator->): (JSC::ScopeChain::top):
- runtime/ScopeChainMark.h: (JSC::ScopeChain::markAggregate):
- runtime/SmallStrings.cpp: (JSC::isMarked): (JSC::SmallStrings::markChildren):
- runtime/SmallStrings.h: (JSC::SmallStrings::emptyString): (JSC::SmallStrings::singleCharacterString): (JSC::SmallStrings::singleCharacterStrings):
- runtime/StringConstructor.cpp: (JSC::StringConstructor::StringConstructor):
- runtime/StringObject.cpp: (JSC::StringObject::StringObject):
- runtime/StringObject.h:
- runtime/StringPrototype.cpp: (JSC::StringPrototype::StringPrototype):
- runtime/Structure.cpp: (JSC::Structure::Structure): (JSC::Structure::addPropertyTransition): (JSC::Structure::toDictionaryTransition): (JSC::Structure::flattenDictionaryStructure):
- runtime/Structure.h: (JSC::Structure::storedPrototype):
- runtime/WeakGCMap.h: (JSC::WeakGCMap::uncheckedGet): (JSC::WeakGCMap::isValid): (JSC::::get): (JSC::::take): (JSC::::set): (JSC::::uncheckedRemove):
- runtime/WriteBarrier.h: Removed.
2011-01-28 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r77006 and r77020.
http://trac.webkit.org/changeset/77006
http://trac.webkit.org/changeset/77020
https://bugs.webkit.org/show_bug.cgi?id=53360
"Broke Windows tests" (Requested by rniwa on #webkit).
- JSValueWrapper.cpp: (JSValueWrapper::JSObjectMark):
2011-01-28 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r77006 and r77020.
http://trac.webkit.org/changeset/77006
http://trac.webkit.org/changeset/77020
https://bugs.webkit.org/show_bug.cgi?id=53360
"Broke Windows tests" (Requested by rniwa on #webkit).
- WebView/WebScriptDebugDelegate.mm: (-[WebScriptCallFrame scopeChain]):
2011-01-28 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r77006 and r77020.
http://trac.webkit.org/changeset/77006
http://trac.webkit.org/changeset/77020
https://bugs.webkit.org/show_bug.cgi?id=53360
"Broke Windows tests" (Requested by rniwa on #webkit).
- ForwardingHeaders/runtime/WriteBarrier.h: Removed.
- WebCore.exp.in:
- bindings/js/DOMWrapperWorld.h:
- bindings/js/JSAudioConstructor.cpp: (WebCore::JSAudioConstructor::JSAudioConstructor):
- bindings/js/JSDOMBinding.cpp: (WebCore::markDOMNodesForDocument): (WebCore::markDOMObjectWrapper): (WebCore::markDOMNodeWrapper):
- bindings/js/JSDOMGlobalObject.cpp: (WebCore::JSDOMGlobalObject::markChildren): (WebCore::JSDOMGlobalObject::setInjectedScript): (WebCore::JSDOMGlobalObject::injectedScript):
- bindings/js/JSDOMGlobalObject.h: (WebCore::JSDOMGlobalObject::JSDOMGlobalObjectData::JSDOMGlobalObjectData): (WebCore::getDOMConstructor):
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::setLocation): (WebCore::DialogHandler::dialogCreated):
- bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::JSDOMWindowShell): (WebCore::JSDOMWindowShell::setWindow): (WebCore::JSDOMWindowShell::markChildren): (WebCore::JSDOMWindowShell::unwrappedObject):
- bindings/js/JSDOMWindowShell.h: (WebCore::JSDOMWindowShell::window): (WebCore::JSDOMWindowShell::setWindow):
- bindings/js/JSDeviceMotionEventCustom.cpp: (WebCore::createAccelerationObject): (WebCore::createRotationRateObject):
- bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::JSEventListener): (WebCore::JSEventListener::markJSFunction):
- bindings/js/JSEventListener.h: (WebCore::JSEventListener::jsFunction):
- bindings/js/JSHTMLDocumentCustom.cpp: (WebCore::JSHTMLDocument::setAll):
- bindings/js/JSImageConstructor.cpp: (WebCore::JSImageConstructor::JSImageConstructor):
- bindings/js/JSImageDataCustom.cpp: (WebCore::toJS):
- bindings/js/JSJavaScriptCallFrameCustom.cpp: (WebCore::JSJavaScriptCallFrame::scopeChain): (WebCore::JSJavaScriptCallFrame::scopeType):
- bindings/js/JSNodeFilterCondition.cpp: (WebCore::JSNodeFilterCondition::markAggregate): (WebCore::JSNodeFilterCondition::acceptNode):
- bindings/js/JSNodeFilterCondition.h:
- bindings/js/JSNodeFilterCustom.cpp:
- bindings/js/JSOptionConstructor.cpp: (WebCore::JSOptionConstructor::JSOptionConstructor):
- bindings/js/JSSQLResultSetRowListCustom.cpp: (WebCore::JSSQLResultSetRowList::item):
- bindings/js/ScriptCachedFrameData.cpp: (WebCore::ScriptCachedFrameData::restore):
- bindings/js/ScriptObject.cpp: (WebCore::ScriptGlobalObject::set):
- bindings/js/SerializedScriptValue.cpp: (WebCore::CloneDeserializer::putProperty):
- bindings/scripts/CodeGeneratorJS.pm:
- bridge/qt/qt_runtime.cpp: (JSC::Bindings::QtRuntimeMetaMethod::QtRuntimeMetaMethod): (JSC::Bindings::QtRuntimeMetaMethod::markChildren): (JSC::Bindings::QtRuntimeMetaMethod::connectGetter): (JSC::Bindings::QtRuntimeMetaMethod::disconnectGetter):
- bridge/qt/qt_runtime.h:
- bridge/runtime_root.cpp: (JSC::Bindings::RootObject::invalidate):
- bridge/runtime_root.h:
- dom/Document.h:
- 7:45 PM Changeset in webkit [77043] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-28 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
WKPageGetEstimatedProgress returns wrong value after a mainframe provisional load has started
https://bugs.webkit.org/show_bug.cgi?id=53358
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::didStartProgress): Start progress at the magic initial value, not 0.
- 6:25 PM Changeset in webkit [77042] by
-
- 8 edits in trunk
2011-01-28 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
WebKitTestRunner needs layoutTestController.setPOSIXLocale
https://bugs.webkit.org/show_bug.cgi?id=42682
- platform/mac-wk2/Skipped:
2011-01-28 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
WebKitTestRunner needs layoutTestController.setPOSIXLocale
https://bugs.webkit.org/show_bug.cgi?id=42682
- WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
- WebKitTestRunner/InjectedBundle/InjectedBundle.cpp: (WTR::InjectedBundle::resetLocalSettings): (WTR::InjectedBundle::didReceiveMessage):
- WebKitTestRunner/InjectedBundle/InjectedBundle.h:
- WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: (WTR::LayoutTestController::setPOSIXLocale):
- WebKitTestRunner/InjectedBundle/LayoutTestController.h:
- 6:08 PM Changeset in webkit [77041] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
XSSFilter should log to the console when it blocks something
https://bugs.webkit.org/show_bug.cgi?id=53354
This patch refactors a bunch of methods in XSSFilter to return a bool
indicating whether they blocked anything. Using this bool, we decide
whether to log to the console. We're using the same log message as the
XSSAuditor, but it seems likely we can improve this message in the
future (especially by piping in the correct line number, which is now
accessible via the parser).
- html/parser/XSSFilter.cpp: (WebCore::HTMLNames::isNameOfInlineEventHandler): (WebCore::XSSFilter::filterToken): (WebCore::XSSFilter::filterTokenInitial): (WebCore::XSSFilter::filterTokenAfterScriptStartTag): (WebCore::XSSFilter::filterScriptToken): (WebCore::XSSFilter::filterObjectToken): (WebCore::XSSFilter::filterEmbedToken): (WebCore::XSSFilter::filterAppletToken): (WebCore::XSSFilter::filterMetaToken): (WebCore::XSSFilter::filterBaseToken): (WebCore::XSSFilter::eraseInlineEventHandlersIfInjected):
- html/parser/XSSFilter.h:
- 6:08 PM Changeset in webkit [77040] by
-
- 5 edits in branches/safari-533.20-branch
Merge r72046.
- 6:08 PM Changeset in webkit [77039] by
-
- 2 edits in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Reviewed by Mihai Parparita.
test-webkitpy: fix webkitpy.layout_tests.port.mac_unittest.MacTest.test_skipped_file_paths
This patch re-enables this test and changes it to
handle all of the mac platform versions, not just the one
it is running on.
- Scripts/webkitpy/layout_tests/port/mac_unittest.py:
- 5:41 PM Changeset in webkit [77038] by
-
- 2 edits in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix.
Take two. The fix in 77023 didn't work, because we were
still calling path.abspath_to_uri, which calls _cygpath under
the covers, and it appears the cygpath on the bots does
something different than it does on my machine. This patch
removes the calls to path.abspath_to_uri, so it should be safe.
If it doesn't work, I'll roll it out along with r76982 and 77023.
- Scripts/webkitpy/layout_tests/port/test.py:
- 5:25 PM Changeset in webkit [77037] by
-
- 4 edits2 adds in branches/safari-533.20-branch
Merge r76828.
- 5:12 PM Changeset in webkit [77036] by
-
- 3 edits6 adds in branches/safari-533.20-branch
Merge r71182.
- 5:07 PM Changeset in webkit [77035] by
-
- 5 edits2 adds in branches/safari-533.20-branch
Merge r74574.
- 4:58 PM Changeset in webkit [77034] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Wire up settings->xssAuditorEnabled to XSSFilter
https://bugs.webkit.org/show_bug.cgi?id=53345
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::XSSFilter): (WebCore::XSSFilter::filterToken):
- html/parser/XSSFilter.h:
- 4:57 PM Changeset in webkit [77033] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Teach XSSFilter about <meta> and <base> tags
https://bugs.webkit.org/show_bug.cgi?id=53339
I'm not 100% sure we need to block <meta http-equiv>, but it seems
prudent given how powerful that attribute is. We definitely need to
block injection of <base href> because that can redirect script tags
that use relative URLs.
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterToken): (WebCore::XSSFilter::filterMetaToken): (WebCore::XSSFilter::filterBaseToken):
- html/parser/XSSFilter.h:
- 4:55 PM Changeset in webkit [77032] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Teach XSSFilter about <applet>
https://bugs.webkit.org/show_bug.cgi?id=53338
HTML5 is pretty light on information about how the <applet> tag works.
According to this site:
http://download.oracle.com/javase/1.4.2/docs/guide/misc/applet.html
The "code" and "object" attributes are the essential attributes for
determining which piece of Java to run. We might need to expand to the
codebase and archive attributes at some point, but hopefully code and
object will be sufficient.
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterToken): (WebCore::XSSFilter::filterAppletToken):
- html/parser/XSSFilter.h:
- 4:53 PM Changeset in webkit [77031] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Teach the XSSFilter about object and embed tags
https://bugs.webkit.org/show_bug.cgi?id=53336
For <object> and <embed>, we filter out attribute values that either
indicate which piece of media to load or which plugin to load. In a
perfect world, we'd only need to filter out the URLs of the media, but
some plug-ins (like Flash) have lots of fun places you can hide the
URL (e.g., the "movie" <param>).
- html/parser/XSSFilter.cpp: (WebCore::XSSFilter::filterToken): (WebCore::XSSFilter::filterScriptToken): (WebCore::XSSFilter::filterObjectToken): (WebCore::XSSFilter::filterEmbedToken): (WebCore::XSSFilter::eraseAttributeIfInjected):
- html/parser/XSSFilter.h:
- 4:53 PM Changeset in webkit [77030] by
-
- 1 edit in trunk/Tools/ChangeLog
Added link to bug in ChangeLog.
- 4:50 PM Changeset in webkit [77029] by
-
- 3 edits in trunk/Source/WebKit2
Yet another build fix (What was I thinking?)
- WebProcess/Downloads/Download.h:
- WebProcess/Plugins/PluginProxy.h:
- 4:46 PM Changeset in webkit [77028] by
-
- 2 edits in trunk/Tools
<rdar://problem/8930699> build-webkit gives a bogus warning with newer versions of Xcode
Reviewed by Mark Rowe.
- Scripts/webkitdirs.pm:
(checkRequiredSystemConfig): Check the Xcode marketing version
in addition to the DevCoreTools build version before complaining
about an old version of Xcode. Also make the Mac OS X version
check use Perl's built-in version string comparitor.
- 4:39 PM Changeset in webkit [77027] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed; Fixed Chromium test expectation.
- platform/chromium/test_expectations.txt:
- 4:35 PM Changeset in webkit [77026] by
-
- 4 edits in trunk/WebKitLibraries
Build fix.
Update WKSI.
- WebKitSystemInterface.h:
- libWebKitSystemInterfaceLeopard.a:
- libWebKitSystemInterfaceSnowLeopard.a:
- 4:35 PM Changeset in webkit [77025] by
-
- 3 edits in trunk/Source/JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=53352
Heavy external fragmentation in FixedVMPoolAllocator can lead to a CRASH().
Reviewed by Geoff Garen.
The FixedVMPoolAllocator currently uses a best fix policy -
switch to first fit, this is less prone to external fragmentation.
- jit/ExecutableAllocatorFixedVMPool.cpp:
(JSC::AllocationTableSizeClass::AllocationTableSizeClass):
(JSC::AllocationTableSizeClass::blockSize):
(JSC::AllocationTableSizeClass::blockCount):
(JSC::AllocationTableSizeClass::blockAlignment):
(JSC::AllocationTableSizeClass::size):
(JSC::AllocationTableLeaf::AllocationTableLeaf):
(JSC::AllocationTableLeaf::~AllocationTableLeaf):
(JSC::AllocationTableLeaf::allocate):
(JSC::AllocationTableLeaf::free):
(JSC::AllocationTableLeaf::isEmpty):
(JSC::AllocationTableLeaf::isFull):
(JSC::AllocationTableLeaf::size):
(JSC::AllocationTableLeaf::classForSize):
(JSC::AllocationTableLeaf::dump):
(JSC::LazyAllocationTable::LazyAllocationTable):
(JSC::LazyAllocationTable::~LazyAllocationTable):
(JSC::LazyAllocationTable::allocate):
(JSC::LazyAllocationTable::free):
(JSC::LazyAllocationTable::isEmpty):
(JSC::LazyAllocationTable::isFull):
(JSC::LazyAllocationTable::size):
(JSC::LazyAllocationTable::dump):
(JSC::LazyAllocationTable::classForSize):
(JSC::AllocationTableDirectory::AllocationTableDirectory):
(JSC::AllocationTableDirectory::~AllocationTableDirectory):
(JSC::AllocationTableDirectory::allocate):
(JSC::AllocationTableDirectory::free):
(JSC::AllocationTableDirectory::isEmpty):
(JSC::AllocationTableDirectory::isFull):
(JSC::AllocationTableDirectory::size):
(JSC::AllocationTableDirectory::classForSize):
(JSC::AllocationTableDirectory::dump):
(JSC::FixedVMPoolAllocator::FixedVMPoolAllocator):
(JSC::FixedVMPoolAllocator::alloc):
(JSC::FixedVMPoolAllocator::free):
(JSC::FixedVMPoolAllocator::allocated):
(JSC::FixedVMPoolAllocator::isValid):
(JSC::FixedVMPoolAllocator::classForSize):
(JSC::FixedVMPoolAllocator::offsetToPointer):
(JSC::FixedVMPoolAllocator::pointerToOffset):
(JSC::ExecutableAllocator::committedByteCount):
(JSC::ExecutableAllocator::isValid):
(JSC::ExecutableAllocator::underMemoryPressure):
(JSC::ExecutablePool::systemAlloc):
(JSC::ExecutablePool::systemRelease):
- wtf/PageReservation.h:
(WTF::PageReservation::PageReservation):
(WTF::PageReservation::commit):
(WTF::PageReservation::decommit):
(WTF::PageReservation::committed):
- 4:33 PM Changeset in webkit [77024] by
-
- 2 edits in trunk/Source/WebKit2
Fix Windows build.
- Shared/PrintInfo.h:
- 4:32 PM Changeset in webkit [77023] by
-
- 2 edits in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix.
Work around breakage on Win 7 Release bot caused by r76982
and the fact that windows ports use "file:////" instead of
"file:///". Ideally the test code should be isolated from
this, but it isn't yet. Will fix properly in a bit.
- Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py:
- 4:30 PM Changeset in webkit [77022] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r71642.
- 4:30 PM Changeset in webkit [77021] by
-
- 1 edit2 adds in trunk/LayoutTests
[Windows 7 Release Tests] fast/repaint/select-option-background-color.html failing since
introduction in r76826.
https://bugs.webkit.org/show_bug.cgi?id=53327
Add the pixel-test results missing from http://trac.webkit.org/changeset/76976. Unreviewed.
- platform/win/fast/repaint/select-option-background-color-expected.checksum: Added.
- platform/win/fast/repaint/select-option-background-color-expected.png: Added.
- 4:29 PM Changeset in webkit [77020] by
-
- 3 edits in trunk/Source/WebCore
Fixed Qt build.
- 4:23 PM Changeset in webkit [77019] by
-
- 2 edits in trunk/Source/WebCore
CSS styles are shared based on uninitialized property values
https://bugs.webkit.org/show_bug.cgi?id=53285
Reviewed by Simon Fraser.
Null test.
- dom/NamedNodeMap.cpp:
(WebCore::NamedNodeMap::mappedMapsEquivalent):
- 4:22 PM Changeset in webkit [77018] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r68860.
- 4:20 PM Changeset in webkit [77017] by
-
- 4 edits2 adds in branches/safari-533.20-branch
Merge r70681.
- 4:15 PM Changeset in webkit [77016] by
-
- 4 edits2 adds in branches/safari-533.20-branch
Merge r69345.
- 4:12 PM Changeset in webkit [77015] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r69735.
- 4:12 PM Changeset in webkit [77014] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt:
- 4:08 PM Changeset in webkit [77013] by
-
- 2 edits in trunk/Source/WebKit2
Fix tyop.
- Shared/mac/CoreAnimationRenderer.mm:
- 4:06 PM Changeset in webkit [77012] by
-
- 2 edits2 adds in trunk/Source/WebKit2
2011-01-28 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Add CoreAnimationRenderer class
https://bugs.webkit.org/show_bug.cgi?id=53343
- Shared/mac/CoreAnimationRenderer.h: Added.
- Shared/mac/CoreAnimationRenderer.mm: Added.
(WebKit::CoreAnimationRenderer::CoreAnimationRenderer):
Initialize the underlying CARenderer object and hook up a notification observer.
(WebKit::CoreAnimationRenderer::~CoreAnimationRenderer):
Assert that the client is null. It has been set to null by the call to invalidate().
(WebKit::CoreAnimationRenderer::setBounds):
Update the bounds on the CARenderer and the root layer.
(WebKit::CoreAnimationRenderer::render):
Ask the renderer to render and return the next frame time.
(WebKit::CoreAnimationRenderer::invalidate):
Remove the change observer and reset the client.
(WebKit::CoreAnimationRenderer::rendererDidChange):
Call the client member function.
- WebKit2.xcodeproj/project.pbxproj: Add new files.
- 4:02 PM Changeset in webkit [77011] by
-
- 3 edits4 adds in branches/safari-533.20-branch
Merge r69476.
- 3:59 PM Changeset in webkit [77010] by
-
- 5 edits2 adds in branches/safari-533.20-branch
Merge r68819.
- 3:52 PM Changeset in webkit [77009] by
-
- 8 edits4 adds in branches/safari-533.20-branch
Merge r70797.
- 3:44 PM Changeset in webkit [77008] by
-
- 7 edits2 adds in branches/safari-533.20-branch
Merge r73432.
- 3:42 PM Changeset in webkit [77007] by
-
- 13 edits in trunk/Source/WebKit2
2011-01-28 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Add an OBJC_CLASS macro for forward declaring an Objective-C class
https://bugs.webkit.org/show_bug.cgi?id=53337
- Shared/NativeWebKeyboardEvent.h:
- Shared/PrintInfo.h:
- UIProcess/ChunkedUpdateDrawingAreaProxy.h:
- UIProcess/LayerBackedDrawingAreaProxy.h:
- UIProcess/WebInspectorProxy.h:
- UIProcess/mac/WebContextMenuProxyMac.h:
- UIProcess/mac/WebPopupMenuProxyMac.h:
- WebProcess/Downloads/Download.h:
- WebProcess/Plugins/PluginProxy.h:
- WebProcess/WebPage/LayerBackedDrawingArea.h:
- WebProcess/WebPage/WebPage.h:
- config.h:
- 3:39 PM Changeset in webkit [77006] by
-
- 123 edits2 adds in trunk/Source
2011-01-27 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219
Move the MarkStack over to a slot based marking API.
In order to avoiding aliasing concerns there are two new types
that need to be used when holding on to JSValues and JSCell that
need to be marked: WriteBarrier and DeprecatedPtr. WriteBarrier
is expected to be used for any JSValue or Cell that's lifetime and
marking is controlled by another GC object. DeprecatedPtr is used
for any value that we need to rework ownership for.
The change over to this model has produced a large amount of
code changes, but they are mostly mechanical (forwarding JSGlobalData,
etc).
- API/JSCallbackObject.h: (JSC::JSCallbackObjectData::setPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::getPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::setPrivateProperty): (JSC::JSCallbackObjectData::JSPrivatePropertyMap::markChildren): (JSC::JSCallbackObject::setPrivateProperty):
- API/JSCallbackObjectFunctions.h: (JSC::::put): (JSC::::staticFunctionGetter):
- API/JSObjectRef.cpp: (JSObjectMakeConstructor): (JSObjectSetPrivateProperty):
- API/JSWeakObjectMapRefInternal.h:
- JavaScriptCore.exp:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- JavaScriptCore.xcodeproj/project.pbxproj:
- bytecode/CodeBlock.cpp: (JSC::CodeBlock::markAggregate):
- bytecode/CodeBlock.h: (JSC::CodeBlock::globalObject):
- bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::BytecodeGenerator): (JSC::BytecodeGenerator::emitJumpIfNotFunctionCall): (JSC::BytecodeGenerator::emitJumpIfNotFunctionApply): (JSC::BytecodeGenerator::findScopedProperty):
- debugger/DebuggerActivation.cpp: (JSC::DebuggerActivation::DebuggerActivation): (JSC::DebuggerActivation::markChildren):
- debugger/DebuggerActivation.h:
- interpreter/Interpreter.cpp: (JSC::Interpreter::resolve): (JSC::Interpreter::resolveSkip): (JSC::Interpreter::resolveGlobalDynamic): (JSC::Interpreter::resolveBaseAndProperty): (JSC::Interpreter::unwindCallFrame): (JSC::appendSourceToError): (JSC::Interpreter::execute): (JSC::Interpreter::privateExecute):
- interpreter/Register.h: (JSC::Register::jsValueSlot):
- jit/JITStubs.cpp: (JSC::JITThunks::tryCacheGetByID): (JSC::DEFINE_STUB_FUNCTION):
- jsc.cpp: (GlobalObject::GlobalObject):
- runtime/Arguments.cpp: (JSC::Arguments::markChildren): (JSC::Arguments::getOwnPropertySlot): (JSC::Arguments::getOwnPropertyDescriptor): (JSC::Arguments::put):
- runtime/Arguments.h: (JSC::Arguments::setActivation): (JSC::Arguments::Arguments):
- runtime/ArrayConstructor.cpp: (JSC::ArrayConstructor::ArrayConstructor): (JSC::constructArrayWithSizeQuirk):
- runtime/ArrayPrototype.cpp: (JSC::arrayProtoFuncSplice):
- runtime/BatchedTransitionOptimizer.h: (JSC::BatchedTransitionOptimizer::BatchedTransitionOptimizer): (JSC::BatchedTransitionOptimizer::~BatchedTransitionOptimizer):
- runtime/BooleanConstructor.cpp: (JSC::BooleanConstructor::BooleanConstructor): (JSC::constructBoolean): (JSC::constructBooleanFromImmediateBoolean):
- runtime/BooleanPrototype.cpp: (JSC::BooleanPrototype::BooleanPrototype):
- runtime/ConservativeSet.h: (JSC::ConservativeSet::mark):
- runtime/DateConstructor.cpp: (JSC::DateConstructor::DateConstructor):
- runtime/DateInstance.cpp: (JSC::DateInstance::DateInstance):
- runtime/DatePrototype.cpp: (JSC::dateProtoFuncSetTime): (JSC::setNewValueFromTimeArgs): (JSC::setNewValueFromDateArgs): (JSC::dateProtoFuncSetYear):
- runtime/ErrorConstructor.cpp: (JSC::ErrorConstructor::ErrorConstructor):
- runtime/ErrorInstance.cpp: (JSC::ErrorInstance::ErrorInstance):
- runtime/ErrorPrototype.cpp: (JSC::ErrorPrototype::ErrorPrototype):
- runtime/FunctionConstructor.cpp: (JSC::FunctionConstructor::FunctionConstructor):
- runtime/FunctionPrototype.cpp: (JSC::FunctionPrototype::FunctionPrototype):
- runtime/GetterSetter.cpp: (JSC::GetterSetter::markChildren):
- runtime/GetterSetter.h: (JSC::GetterSetter::GetterSetter): (JSC::GetterSetter::getter): (JSC::GetterSetter::setGetter): (JSC::GetterSetter::setter): (JSC::GetterSetter::setSetter):
- runtime/GlobalEvalFunction.cpp: (JSC::GlobalEvalFunction::GlobalEvalFunction): (JSC::GlobalEvalFunction::markChildren):
- runtime/GlobalEvalFunction.h: (JSC::GlobalEvalFunction::cachedGlobalObject):
- runtime/Heap.cpp: (JSC::Heap::markProtectedObjects): (JSC::Heap::markTempSortVectors): (JSC::Heap::markRoots):
- runtime/InternalFunction.cpp: (JSC::InternalFunction::InternalFunction):
- runtime/JSAPIValueWrapper.h: (JSC::JSAPIValueWrapper::value): (JSC::JSAPIValueWrapper::JSAPIValueWrapper):
- runtime/JSActivation.cpp: (JSC::JSActivation::put):
- runtime/JSArray.cpp: (JSC::JSArray::JSArray): (JSC::JSArray::getOwnPropertySlot): (JSC::JSArray::getOwnPropertyDescriptor): (JSC::JSArray::put): (JSC::JSArray::putSlowCase): (JSC::JSArray::deleteProperty): (JSC::JSArray::increaseVectorLength): (JSC::JSArray::setLength): (JSC::JSArray::pop): (JSC::JSArray::push): (JSC::JSArray::unshiftCount): (JSC::JSArray::sort): (JSC::JSArray::fillArgList): (JSC::JSArray::copyToRegisters): (JSC::JSArray::compactForSorting):
- runtime/JSArray.h: (JSC::JSArray::getIndex): (JSC::JSArray::setIndex): (JSC::JSArray::uncheckedSetIndex): (JSC::JSArray::markChildrenDirect):
- runtime/JSByteArray.cpp: (JSC::JSByteArray::JSByteArray):
- runtime/JSCell.h: (JSC::JSCell::MarkStack::append): (JSC::JSCell::MarkStack::appendCell):
- runtime/JSFunction.cpp: (JSC::JSFunction::JSFunction): (JSC::JSFunction::getOwnPropertySlot):
- runtime/JSGlobalObject.cpp: (JSC::markIfNeeded): (JSC::JSGlobalObject::reset): (JSC::JSGlobalObject::resetPrototype): (JSC::JSGlobalObject::markChildren):
- runtime/JSGlobalObject.h: (JSC::JSGlobalObject::JSGlobalObjectData::JSGlobalObjectData): (JSC::JSGlobalObject::regExpConstructor): (JSC::JSGlobalObject::errorConstructor): (JSC::JSGlobalObject::evalErrorConstructor): (JSC::JSGlobalObject::rangeErrorConstructor): (JSC::JSGlobalObject::referenceErrorConstructor): (JSC::JSGlobalObject::syntaxErrorConstructor): (JSC::JSGlobalObject::typeErrorConstructor): (JSC::JSGlobalObject::URIErrorConstructor): (JSC::JSGlobalObject::evalFunction): (JSC::JSGlobalObject::objectPrototype): (JSC::JSGlobalObject::functionPrototype): (JSC::JSGlobalObject::arrayPrototype): (JSC::JSGlobalObject::booleanPrototype): (JSC::JSGlobalObject::stringPrototype): (JSC::JSGlobalObject::numberPrototype): (JSC::JSGlobalObject::datePrototype): (JSC::JSGlobalObject::regExpPrototype): (JSC::JSGlobalObject::methodCallDummy): (JSC::constructArray):
- runtime/JSONObject.cpp: (JSC::Stringifier::Holder::object): (JSC::Stringifier::Holder::objectSlot): (JSC::Stringifier::markAggregate): (JSC::Stringifier::stringify): (JSC::Stringifier::Holder::appendNextProperty): (JSC::Walker::callReviver): (JSC::Walker::walk):
- runtime/JSObject.cpp: (JSC::JSObject::defineGetter): (JSC::JSObject::defineSetter): (JSC::JSObject::removeDirect): (JSC::JSObject::putDirectFunction): (JSC::JSObject::putDirectFunctionWithoutTransition): (JSC::putDescriptor): (JSC::JSObject::defineOwnProperty):
- runtime/JSObject.h: (JSC::JSObject::putDirectOffset): (JSC::JSObject::putUndefinedAtDirectOffset): (JSC::JSObject::flattenDictionaryObject): (JSC::JSObject::putDirectInternal): (JSC::JSObject::putDirect): (JSC::JSObject::putDirectFunction): (JSC::JSObject::putDirectWithoutTransition): (JSC::JSObject::putDirectFunctionWithoutTransition): (JSC::JSValue::putDirect): (JSC::JSObject::allocatePropertyStorageInline): (JSC::JSObject::markChildrenDirect):
- runtime/JSStaticScopeObject.cpp: (JSC::JSStaticScopeObject::markChildren):
- runtime/JSString.cpp: (JSC::StringObject::create):
- runtime/JSValue.h:
- runtime/JSWrapperObject.cpp: (JSC::JSWrapperObject::markChildren):
- runtime/JSWrapperObject.h: (JSC::JSWrapperObject::internalValue): (JSC::JSWrapperObject::setInternalValue):
- runtime/LiteralParser.cpp: (JSC::LiteralParser::parse):
- runtime/Lookup.cpp: (JSC::setUpStaticFunctionSlot):
- runtime/Lookup.h: (JSC::lookupPut):
- runtime/MarkStack.h:
- runtime/MathObject.cpp: (JSC::MathObject::MathObject):
- runtime/NativeErrorConstructor.cpp: (JSC::NativeErrorConstructor::NativeErrorConstructor):
- runtime/NativeErrorPrototype.cpp: (JSC::NativeErrorPrototype::NativeErrorPrototype):
- runtime/NumberConstructor.cpp: (JSC::NumberConstructor::NumberConstructor): (JSC::constructWithNumberConstructor):
- runtime/NumberObject.cpp: (JSC::constructNumber):
- runtime/NumberPrototype.cpp: (JSC::NumberPrototype::NumberPrototype):
- runtime/ObjectConstructor.cpp: (JSC::ObjectConstructor::ObjectConstructor): (JSC::objectConstructorGetOwnPropertyDescriptor):
- runtime/Operations.h: (JSC::normalizePrototypeChain): (JSC::resolveBase):
- runtime/PrototypeFunction.cpp: (JSC::PrototypeFunction::PrototypeFunction):
- runtime/PutPropertySlot.h: (JSC::PutPropertySlot::setExistingProperty): (JSC::PutPropertySlot::setNewProperty): (JSC::PutPropertySlot::base):
- runtime/RegExpConstructor.cpp: (JSC::RegExpConstructor::RegExpConstructor):
- runtime/ScopeChain.cpp: (JSC::ScopeChainNode::print):
- runtime/ScopeChain.h: (JSC::ScopeChainNode::~ScopeChainNode): (JSC::ScopeChainIterator::operator*): (JSC::ScopeChainIterator::operator->): (JSC::ScopeChain::top):
- runtime/ScopeChainMark.h: (JSC::ScopeChain::markAggregate):
- runtime/SmallStrings.cpp: (JSC::isMarked): (JSC::SmallStrings::markChildren):
- runtime/SmallStrings.h: (JSC::SmallStrings::emptyString): (JSC::SmallStrings::singleCharacterString): (JSC::SmallStrings::singleCharacterStrings):
- runtime/StringConstructor.cpp: (JSC::StringConstructor::StringConstructor):
- runtime/StringObject.cpp: (JSC::StringObject::StringObject):
- runtime/StringObject.h:
- runtime/StringPrototype.cpp: (JSC::StringPrototype::StringPrototype):
- runtime/Structure.cpp: (JSC::Structure::flattenDictionaryStructure):
- runtime/Structure.h: (JSC::Structure::storedPrototypeSlot):
- runtime/WeakGCMap.h: (JSC::WeakGCMap::uncheckedGet): (JSC::WeakGCMap::uncheckedGetSlot): (JSC::::get): (JSC::::take): (JSC::::set): (JSC::::uncheckedRemove):
- runtime/WriteBarrier.h: Added. (JSC::DeprecatedPtr::DeprecatedPtr): (JSC::DeprecatedPtr::get): (JSC::DeprecatedPtr::operator*): (JSC::DeprecatedPtr::operator->): (JSC::DeprecatedPtr::slot): (JSC::DeprecatedPtr::operator UnspecifiedBoolType*): (JSC::DeprecatedPtr::operator!): (JSC::WriteBarrierBase::set): (JSC::WriteBarrierBase::get): (JSC::WriteBarrierBase::operator*): (JSC::WriteBarrierBase::operator->): (JSC::WriteBarrierBase::slot): (JSC::WriteBarrierBase::operator UnspecifiedBoolType*): (JSC::WriteBarrierBase::operator!): (JSC::WriteBarrier::WriteBarrier): (JSC::operator==):
2011-01-27 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219
There's no reason to recurse here, the value we
were marking was protected.
- JSValueWrapper.cpp: (JSValueWrapper::JSObjectMark):
2011-01-27 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219
Update WebCore to the new marking apis, correct bindings
codegen.
- ForwardingHeaders/runtime/WriteBarrier.h: Added.
- WebCore.exp.in:
- bindings/js/DOMWrapperWorld.h: (WebCore::DOMWrapperWorld::globalData):
- bindings/js/JSAudioConstructor.cpp: (WebCore::JSAudioConstructor::JSAudioConstructor):
- bindings/js/JSDOMBinding.cpp: (WebCore::markDOMNodesForDocument): (WebCore::markDOMObjectWrapper): (WebCore::markDOMNodeWrapper):
- bindings/js/JSDOMGlobalObject.cpp: (WebCore::JSDOMGlobalObject::markChildren): (WebCore::JSDOMGlobalObject::setInjectedScript): (WebCore::JSDOMGlobalObject::injectedScript):
- bindings/js/JSDOMGlobalObject.h: (WebCore::JSDOMGlobalObject::JSDOMGlobalObjectData::JSDOMGlobalObjectData): (WebCore::getDOMConstructor):
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::setLocation): (WebCore::DialogHandler::dialogCreated):
- bindings/js/JSDOMWindowShell.cpp: (WebCore::JSDOMWindowShell::JSDOMWindowShell): (WebCore::JSDOMWindowShell::setWindow): (WebCore::JSDOMWindowShell::markChildren): (WebCore::JSDOMWindowShell::unwrappedObject):
- bindings/js/JSDOMWindowShell.h: (WebCore::JSDOMWindowShell::window): (WebCore::JSDOMWindowShell::setWindow):
- bindings/js/JSEventListener.cpp: (WebCore::JSEventListener::JSEventListener): (WebCore::JSEventListener::markJSFunction):
- bindings/js/JSEventListener.h: (WebCore::JSEventListener::jsFunction):
- bindings/js/JSHTMLDocumentCustom.cpp: (WebCore::JSHTMLDocument::setAll):
- bindings/js/JSImageConstructor.cpp: (WebCore::JSImageConstructor::JSImageConstructor):
- bindings/js/JSImageDataCustom.cpp: (WebCore::toJS):
- bindings/js/JSJavaScriptCallFrameCustom.cpp: (WebCore::JSJavaScriptCallFrame::scopeChain): (WebCore::JSJavaScriptCallFrame::scopeType):
- bindings/js/JSNodeFilterCondition.cpp: (WebCore::JSNodeFilterCondition::markAggregate): (WebCore::JSNodeFilterCondition::acceptNode):
- bindings/js/JSNodeFilterCondition.h:
- bindings/js/JSNodeFilterCustom.cpp:
- bindings/js/JSOptionConstructor.cpp: (WebCore::JSOptionConstructor::JSOptionConstructor):
- bindings/js/JSSQLResultSetRowListCustom.cpp: (WebCore::JSSQLResultSetRowList::item):
- bindings/js/ScriptCachedFrameData.cpp: (WebCore::ScriptCachedFrameData::restore):
- bindings/js/ScriptObject.cpp: (WebCore::ScriptGlobalObject::set):
- bindings/js/SerializedScriptValue.cpp: (WebCore::CloneDeserializer::putProperty):
- bindings/scripts/CodeGeneratorJS.pm:
- dom/Document.h:
2011-01-27 Oliver Hunt <oliver@apple.com>
Reviewed by Geoffrey Garen.
Convert markstack to a slot visitor API
https://bugs.webkit.org/show_bug.cgi?id=53219
Update to new marking api
- WebView/WebScriptDebugDelegate.mm: (-[WebScriptCallFrame scopeChain]):
- 3:38 PM Changeset in webkit [77005] by
-
- 6 edits2 adds in branches/safari-533.20-branch
Merge r74636.
- 3:33 PM Changeset in webkit [77004] by
-
- 6 edits in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
new-run-webkit-tests: change worker model values to
"old-inline", "old-threads" in preparation for test_runner2 /
multiprocessing changes.
- Scripts/webkitpy/layout_tests/layout_package/test_runner.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/mac.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- 3:21 PM Changeset in webkit [77003] by
-
- 2 edits in trunk/Source/WebCore
Keyboard scrolling doesn’t work in WebKit2
<rdar://problem/8909672>
Reviewed by Anders Carlsson.
- platform/mac/ScrollAnimatorMac.mm:
(-[ScrollAnimationHelperDelegate convertSizeToBacking:]):
(-[ScrollAnimationHelperDelegate convertSizeFromBacking:]):
Add additional necessary delegate methods.
- 3:18 PM Changeset in webkit [77002] by
-
- 5 edits35 adds in branches/safari-533.20-branch
Merge r72802.
- 3:18 PM Changeset in webkit [77001] by
-
- 2 edits in branches/safari-533.20-branch/WebCore
Merge r68321.
- 3:12 PM Changeset in webkit [77000] by
-
- 3 edits in trunk/Source/WebKit2
Don't put config.h in the message headers.
Reviewed by Sam Weinig.
- Scripts/webkit2/messages.py:
- Scripts/webkit2/messages_unittest.py:
- 3:12 PM Changeset in webkit [76999] by
-
- 4 edits in trunk/Source/WebCore
Re-land this patch with the missing null check that caused crashes in layout tests.
Reviewed by Dan Bernstein.
Changing cursor style has no effect until the mouse moves
https://bugs.webkit.org/show_bug.cgi?id=14344
rdar://problem/7563712
No tests added because we don't have infrastructure for testing actual cursor
changes (as opposed to cursor style computation) at this time. We might add it later.
- page/EventHandler.cpp:
(WebCore::EventHandler::dispatchFakeMouseMoveEventSoon): Added.
- page/EventHandler.h: Ditto.
- rendering/RenderObject.cpp:
(WebCore::areNonIdenticalCursorListsEqual): Added.
(WebCore::areCursorsEqual): Added.
(WebCore::RenderObject::styleDidChange): Call dispatchFakeMouseMoveEventSoon if
cursor styles changed.
- 3:12 PM Changeset in webkit [76998] by
-
- 2 edits in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
committers.py - add an IRC nickname for dpranke
https://bugs.webkit.org/show_bug.cgi?id=53335
- Scripts/webkitpy/common/config/committers.py:
- 3:05 PM Changeset in webkit [76997] by
-
- 4 edits2 adds in branches/safari-533.20-branch
Merge r70740.
- 3:03 PM Changeset in webkit [76996] by
-
- 2 edits in trunk/Source/WebKit2
Fix build.
- Shared/mac/ShareableSurface.cpp:
- 2:55 PM Changeset in webkit [76995] by
-
- 2 edits in trunk/Source/WebKit2
Try to unbreak the Windows build.
- UIProcess/cf/WebPageProxyCF.cpp:
- 2:51 PM Changeset in webkit [76994] by
-
- 7 edits in trunk/LayoutTests
2011-01-28 Tony Chang <tony@chromium.org>
Unreviewed, a chromium win/linux rebaseline. The mac result was
rebaselined in r76735.
- platform/chromium-linux/fast/overflow/overflow-rtl-vertical-expected.checksum:
- platform/chromium-linux/fast/overflow/overflow-rtl-vertical-expected.png:
- platform/chromium-win/fast/overflow/overflow-rtl-vertical-expected.checksum:
- platform/chromium-win/fast/overflow/overflow-rtl-vertical-expected.png:
- platform/chromium-win/fast/overflow/overflow-rtl-vertical-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:48 PM Changeset in webkit [76993] by
-
- 9 edits in trunk/Source/WebKit2
https://bugs.webkit.org/show_bug.cgi?id=53330
Need InjectedBundle API to get the response MIMEType for a URL
Reviewed by John Sullivan.
- WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp:
(WKBundleFrameCopyMIMETypeForResourceWithURL):
- WebProcess/InjectedBundle/API/c/WKBundleFrame.h:
Get the MIMEType from the in-memory cache, or cachedResponseMIMETypeForURL() if not available:
- WebProcess/WebPage/WebFrame.cpp:
(WebKit::WebFrame::mimeTypeForResourceWithURL):
- WebProcess/WebPage/WebFrame.h:
Get the MIMEType from the platform's disk cache if available:
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/mac/WebPageMac.mm:
(WebKit::WebPage::cachedResponseMIMETypeForURL):
- WebProcess/WebPage/qt/WebPageQt.cpp:
(WebKit::WebPage::cachedResponseMIMETypeForURL):
- WebProcess/WebPage/win/WebPageWin.cpp:
(WebKit::WebPage::cachedResponseMIMETypeForURL):
- 2:41 PM Changeset in webkit [76992] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r74779.
- 2:31 PM Changeset in webkit [76991] by
-
- 62 edits in trunk/Source/WebKit2
Clean up the mess introduced when config.h was added to the project:
Reviewed by Sam Weinig.
- Remove the contents of WebKit2Prefix.h that is now in config.h, to avoid including everything twice in each file, probably slowing down compile time.
- Add config.h to all the files that were forgotten in order to keep the build from breaking.
- Added trap to ensure that config.h is included at the top of every implementation file. If this had been added it would have caught the previous issue.
- 2:26 PM Changeset in webkit [76990] by
-
- 6 edits2 adds in trunk
2011-01-28 Justin Schuh <jschuh@chromium.org>
Reviewed by Eric Seidel.
We should hold RefPtrs to SVG font faces
https://bugs.webkit.org/show_bug.cgi?id=53270
- svg/custom/use-multiple-on-nested-disallowed-font-expected.txt: Added.
- svg/custom/use-multiple-on-nested-disallowed-font.html: Added.
2011-01-28 Justin Schuh <jschuh@chromium.org>
Reviewed by Eric Seidel.
We should hold RefPtrs to SVG font faces
https://bugs.webkit.org/show_bug.cgi?id=53270
Test: svg/custom/use-multiple-on-nested-disallowed-font.html
- css/CSSFontFaceSource.cpp: (WebCore::CSSFontFaceSource::getFontData):
- css/CSSFontFaceSource.h:
- svg/SVGFontFaceElement.cpp: (WebCore::SVGFontFaceElement::associatedFontElement):
- svg/SVGFontFaceElement.h:
- 2:26 PM Changeset in webkit [76989] by
-
- 5 edits in trunk/Source/WebKit2
<rdar://problem/8857651> Implement unregisterWorld for WebKit2
Rename unregisterWorld to clearWrappers. Clearing the wrappers reduces the
memory use of isolated worlds.
Reviewed by Geoff Garen.
- WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.cpp:
(WKBundleScriptWorldClearWrappers):
- WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.h:
- WebProcess/InjectedBundle/InjectedBundleScriptWorld.cpp:
(WebKit::InjectedBundleScriptWorld::clearWrappers):
- WebProcess/InjectedBundle/InjectedBundleScriptWorld.h:
- 2:20 PM Changeset in webkit [76988] by
-
- 7 edits in trunk
2011-01-28 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
uniformN*v should generate INVALID_VALUE of the array size is not a multiple of N
https://bugs.webkit.org/show_bug.cgi?id=53306
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::validateUniformMatrixParameters):
2011-01-28 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
uniformN*v should generate INVALID_VALUE of the array size is not a multiple of N
https://bugs.webkit.org/show_bug.cgi?id=53306
- fast/canvas/webgl/gl-uniform-arrays-expected.txt:
- fast/canvas/webgl/gl-uniform-arrays.html:
- fast/canvas/webgl/gl-uniformmatrix4fv-expected.txt:
- fast/canvas/webgl/gl-uniformmatrix4fv.html:
- 2:17 PM Changeset in webkit [76987] by
-
- 3 edits2 adds in trunk
2011-01-28 Tom Sepez <tsepez@chromium.org>
Reviewed by Eric Seidel.
NULL pointer crash in TextIterator::handleTextBox()
https://bugs.webkit.org/show_bug.cgi?id=53267
- fast/css/rtl-nth-child-first-letter-crash-expected.txt: Added.
- fast/css/rtl-nth-child-first-letter-crash.html: Added.
2011-01-28 Tom Sepez <tsepez@chromium.org>
Reviewed by Eric Seidel.
NULL pointer crash in TextIterator::handleTextBox()
https://bugs.webkit.org/show_bug.cgi?id=53267
Test: fast/css/rtl-nth-child-first-letter-crash.html
- editing/TextIterator.cpp: (WebCore::TextIterator::handleTextBox):
- 2:08 PM Changeset in webkit [76986] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
Skip webkitAudioPannerNode from the test. It's not yet implemented across
all ports/platforms.
- fast/dom/script-tests/prototype-inheritance.js: Skipped webkitAudioPannerNode.
- 1:58 PM Changeset in webkit [76985] by
-
- 8 edits in branches/chromium/648
Merge 76683 - 2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Not reviewed: inspector tests fix.
- http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.evaluateInPage):
- inspector/console-format.html:
TBR=pfeldman@chromium.org
Review URL: http://codereview.chromium.org/6282016
- 1:55 PM Changeset in webkit [76984] by
-
- 2 edits in trunk/Source/WebCore
2011-01-28 Adrienne Walker <enne@google.com>
Reviewed by Kenneth Russell.
[chromium] Remove a spurious diagnostic CRASH check.
https://bugs.webkit.org/show_bug.cgi?id=52379
- platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::invalidateRect):
- 1:34 PM Changeset in webkit [76983] by
-
- 55 edits1 add in trunk/Source
Source/WebCore: <rdar://problem/4761512> <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
Changed <select> pop-up menus on Mac OS X Snow Leopard and later to have their items aligned in the
direction corresponding to the writing direction of the <select> element, with the checkmarks
on the "start" side, and use the <option>'s writing direction rather than "natural". Made the
pop-up button match the menu by adding a Chrome boolean function, selectItemAlignmentFollowsMenuWritingDirection(),
which returns true for this pop-up behavior.
- loader/EmptyClients.h:
(WebCore::EmptyChromeClient::selectItemAlignmentFollowsMenuWritingDirection): Added.
- manual-tests/pop-up-alignment-and-direction.html: Added.
- page/Chrome.cpp:
(WebCore::Chrome::selectItemAlignmentFollowsMenuWritingDirection): Added. Calls through to the
client.
- page/Chrome.h:
- page/ChromeClient.h:
- platform/PopupMenuStyle.h:
(WebCore::PopupMenuStyle::PopupMenuStyle): Added hasTextDirectionOverride parameter and member
variable initialization.
(WebCore::PopupMenuStyle::hasTextDirectionOverride): Added this accessor.
- platform/mac/PopupMenuMac.mm:
(WebCore::PopupMenuMac::populate): Set the pop-up's layout direction and items' text alignment
to match the menu's writing direction. Set items' writing direction and direction override
according to their styles.
- rendering/RenderMenuList.cpp:
(WebCore::RenderMenuList::RenderMenuList): Removed unncesaary initialization of a smart pointer.
(WebCore::RenderMenuList::adjustInnerStyle): If the alignment of items in the menu follows the
menu's writing direction, use that alignment for the button as well. Also in this mode, use the
item's writing direction and override setting.
(WebCore::RenderMenuList::setTextFromOption): Store the option element's style.
(WebCore::RenderMenuList::itemStyle): Pass the text direction override value.
(WebCore::RenderMenuList::menuStyle): Ditto. Also use the button's direction, not the inner text's.
- rendering/RenderMenuList.h:
- rendering/RenderTextControlSingleLine.cpp:
(WebCore::RenderTextControlSingleLine::menuStyle): Pass the text direction override value.
Source/WebKit/chromium: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- src/AutoFillPopupMenuClient.cpp:
(WebKit::AutoFillPopupMenuClient::initialize): Pass hasTextDirectionOverride to the PopupMenuStyle
constructor.
- src/ChromeClientImpl.cpp:
(WebKit::ChromeClientImpl::selectItemAlignmentFollowsMenuWritingDirection): Added.
- src/ChromeClientImpl.h:
- tests/PopupMenuTest.cpp:
(WebKit::TestPopupMenuClient::itemStyle): Pass hasTextDirectionOverride to the PopupMenuStyle
constructor.
Source/WebKit/efl: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/ChromeClientEfl.cpp:
(WebCore::ChromeClientEfl::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/ChromeClientEfl.h:
Source/WebKit/gtk: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/ChromeClientGtk.cpp:
(WebKit::ChromeClient::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/ChromeClientGtk.h:
Source/WebKit/haiku: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/ChromeClientHaiku.cpp:
(WebCore::ChromeClientHaiku::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/ChromeClientHaiku.h:
Source/WebKit/mac: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/WebChromeClient.h:
- WebCoreSupport/WebChromeClient.mm:
(WebChromeClient::selectItemWritingDirectionIsNatural): Changed to return false.
(WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection): Added. Returns true.
Source/WebKit/qt: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/ChromeClientQt.cpp:
(WebCore::ChromeClientQt::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/ChromeClientQt.h:
Source/WebKit/win: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/WebChromeClient.cpp:
(WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/WebChromeClient.h:
Source/WebKit/wince: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebCoreSupport/ChromeClientWinCE.cpp:
(WebKit::ChromeClientWinCE::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebCoreSupport/ChromeClientWinCE.h:
Source/WebKit/wx: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- WebKitSupport/ChromeClientWx.cpp:
(WebCore::ChromeClientWx::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebKitSupport/ChromeClientWx.h:
Source/WebKit2: <select> can't display right-to-left (rtl) languages
https://bugs.webkit.org/show_bug.cgi?id=19785
Reviewed by Sam Weinig.
- Shared/WebPopupItem.cpp:
(WebKit::WebPopupItem::WebPopupItem): Added initializers for m_textDirection and m_hasTextDirectionOverride.
(WebKit::WebPopupItem::encode): Encode the item's writing direction and direction override values.
(WebKit::WebPopupItem::decode): Decode the item's writing direction and direction override values.
- Shared/WebPopupItem.h:
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::showPopupMenu): Added a parameter for the menu's text direction.
- UIProcess/WebPageProxy.h:
- UIProcess/WebPageProxy.messages.in: Ditto.
- UIProcess/WebPopupMenuProxy.h:
- UIProcess/mac/WebPopupMenuProxyMac.h:
- UIProcess/mac/WebPopupMenuProxyMac.mm:
(WebKit::WebPopupMenuProxyMac::populate): Added a parameter for the menu's text direction.
Set items' text alignment to match the menu's writing direction. Set items' writing direction
and direction override according to their styles.
(WebKit::WebPopupMenuProxyMac::showPopupMenu): Set the pop-up's layout direction.
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::selectItemWritingDirectionIsNatural): Changed to return false.
(WebKit::WebChromeClient::selectItemAlignmentFollowsMenuWritingDirection): Added.
- WebProcess/WebCoreSupport/WebChromeClient.h:
- WebProcess/WebCoreSupport/WebPopupMenu.cpp:
(WebKit::WebPopupMenu::populateItems): Initialize items' writing direction and direction override
values.
(WebKit::WebPopupMenu::show): Pass the menu's writing direction.
- 1:34 PM Changeset in webkit [76982] by
-
- 5 edits2 adds in trunk/Tools
2011-01-28 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
new-run-webkit-tests: add a "mock DRT" port implementation
and a separate class that emulates what we expect the
DumpRenderTree behavior to be.
This will eventually replace port/dryrun.py and allow us to get
better test coverage of the new-run-webkit-tests code as well as
a reference for what new-run-webkit-tests expects from DRT.
This is the first attempt at this, and it is pretty bare-boned. It
really only has been tested on the 'mac' port (and a little on
the 'chromium-mac' port.
- Scripts/webkitpy/common/system/filesystem_mock.py:
- Scripts/webkitpy/layout_tests/port/dryrun.py:
- Scripts/webkitpy/layout_tests/port/factory.py:
- Scripts/webkitpy/layout_tests/port/mock_drt.py: Added.
- Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Added.
- Scripts/webkitpy/layout_tests/port/test.py:
- 1:31 PM Changeset in webkit [76981] by
-
- 4 edits in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Teach XSSFilter how to filter <script> elements
https://bugs.webkit.org/show_bug.cgi?id=53279
This patch adds the ability for the XSSFilter to block injected
<script> elements. Handling script elements is slightly subtle because
these elements act very differently depending on whether they have a
src attribute.
In the "src case", which check whether the src attribute was present in
the request. In the "non-src case", we check whether the start tag and
the body of the script element was included in the request. Checking
for the whole start tag means we miss out on some attribute splitting
attacks inside of script tags, but that doesn't seem like that big a
deal.
This patch also introduces some amount of state into the XSSFilter
because inline script elements span multiple tokens. There's a lot of
tuning and optimization left in these cases, some of which I've noted
with FIXMEs.
To test this patch, I played around with some of the existing
XSSAuditor tests. Hopefully I'll be able to run the test suite more
systematically in the future.
- html/parser/HTMLToken.h: (WebCore::HTMLToken::eraseCharacters): (WebCore::HTMLToken::eraseValueOfAttribute):
- html/parser/XSSFilter.cpp: (WebCore::HTMLNames::hasName): (WebCore::HTMLNames::findAttributeWithName): (WebCore::HTMLNames::isNameOfScriptCarryingAttribute): (WebCore::XSSFilter::XSSFilter): (WebCore::XSSFilter::filterToken): (WebCore::XSSFilter::filterTokenAfterScriptStartTag): (WebCore::XSSFilter::filterScriptToken): (WebCore::XSSFilter::snippetForRange): (WebCore::XSSFilter::snippetForAttribute):
- html/parser/XSSFilter.h:
- 1:29 PM Changeset in webkit [76980] by
-
- 10 edits2 adds in trunk/Source/WebCore
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Daniel Bates.
Sketch out new XSS filter design (disabled by default)
https://bugs.webkit.org/show_bug.cgi?id=53205
This patch adds a basic sketch of the new XSS filter design. Rather
than watching scripts as they execute, in this design, we watch tokens
emitted by the tokenizer. We then map the tokens directly back into
input characters, which lets us skip all the complicated logic related
to HTML entities and double-decoding of JavaScript URLs.
This patch contains only the bare essentially machinery. I'll add more
in future patches and eventually remove the previous code once this
code is up and running correctly.
- Android.mk:
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- html/parser/HTMLDocumentParser.cpp: (WebCore::HTMLDocumentParser::HTMLDocumentParser): (WebCore::HTMLDocumentParser::pumpTokenizer): (WebCore::HTMLDocumentParser::sourceForToken):
- html/parser/HTMLDocumentParser.h:
- html/parser/XSSFilter.cpp: Added.
- html/parser/XSSFilter.h: Added.
- 1:29 PM Changeset in webkit [76979] by
-
- 2 edits in trunk
2011-01-28 Martin Robinson <mrobinson@igalia.com>
[GTK] Build failure with --enable-indexed-database
https://bugs.webkit.org/show_bug.cgi?id=50954
Build fix for IndexedDB support.
- configure.ac: Change the autogen.sh option --enable-indexeddb to --enable-indexed-database to match the build-webkit option.
- 1:27 PM Changeset in webkit [76978] by
-
- 2 edits2 adds1 delete in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
[Chromium] Added expectations for a passing test.
- platform/chromium-mac/fast/dom/isindex-002-expected.checksum: Added.
- platform/chromium-mac/fast/dom/isindex-002-expected.png: Added.
- platform/chromium-mac/fast/dom/isindex-002-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
- 1:22 PM Changeset in webkit [76977] by
-
- 6 edits2 adds in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
Updated Chromium baselines for a bug that was fixed.
https://bugs.webkit.org/show_bug.cgi?id=45527
- platform/chromium-linux/fast/dom/replaceChild-expected.checksum:
- platform/chromium-linux/fast/dom/replaceChild-expected.png:
- platform/chromium-mac/fast/dom/replaceChild-expected.checksum: Added.
- platform/chromium-mac/fast/dom/replaceChild-expected.png: Added.
- platform/chromium-win/fast/dom/replaceChild-expected.checksum:
- platform/chromium-win/fast/dom/replaceChild-expected.png:
- platform/chromium/test_expectations.txt: Removed expectation of failure.
- 1:04 PM Changeset in webkit [76976] by
-
- 1 edit1 add in trunk/LayoutTests
[Windows 7 Release Tests] fast/repaint/select-option-background-color.html failing since introduction in r76826
https://bugs.webkit.org/show_bug.cgi?id=53327
Unreviewed, adding Windows-specific results to get the Windows 7 Release Test bot green.
- platform/win/fast/repaint/select-option-background-color-expected.txt: Added.
- 12:51 PM Changeset in webkit [76975] by
-
- 2 edits in trunk/Source/JavaScriptCore
Chromium build fix after r76967
- wtf/ThreadingPrimitives.h: Use OS(WINDOWS) instead of PLATFORM(WIN), to match other
similar macros in this file.
- 12:39 PM Changeset in webkit [76974] by
-
- 2 edits2 adds in trunk/Source/WebKit2
2011-01-28 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Add ShareableSurface class
https://bugs.webkit.org/show_bug.cgi?id=53313
- Shared/mac/ShareableSurface.cpp: Added. (WebKit::ShareableSurface::Handle::Handle): Initialize the mach port.
(WebKit::ShareableSurface::Handle::~Handle):
Deallocate our send right if needed.
(WebKit::ShareableSurface::Handle::encode):
Encode the send right, and then null it out.
(WebKit::ShareableSurface::Handle::decode):
Decode the send right.
(WebKit::createIOSurface):
Create an IOSurface with the given size.
(WebKit::ShareableSurface::create):
Create an IOSurface, either from a size or from a handle.
(WebKit::ShareableSurface::~ShareableSurface):
Delete the texture and framebuffer.
(WebKit::ShareableSurface::createHandle):
Create a mach port from the surface.
(WebKit::ShareableSurface::attach):
Create an FBO if needed and bind it.
(WebKit::ShareableSurface::detach):
Unbind the FBO.
(WebKit::ShareableSurface::textureID):
Generate a new texture and bind it to the IOSurface.
- Shared/mac/ShareableSurface.h: Added.
- WebKit2.xcodeproj/project.pbxproj: Add new files.
- 12:35 PM Changeset in webkit [76973] by
-
- 1 edit1 delete in trunk/Tools
Unreviewed. Removing .swp file checked in by mistake.
- Scripts/.webkitdirs.pm.swp: Removed.
- 12:33 PM Changeset in webkit [76972] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-28 Adam Klein <adamk@chromium.org>
Reviewed by Kent Tamura.
[Chromium] Remove deprecated openFileSystem method signature
https://bugs.webkit.org/show_bug.cgi?id=53262
Chromium still builds after this patch.
- public/WebFrameClient.h:
- 12:27 PM Changeset in webkit [76971] by
-
- 2 edits1 add in trunk/Tools
2011-01-28 Pratik Solanki <psolanki@apple.com>
Reviewed by David Kilzer.
Space not necessary for undefined feature
https://bugs.webkit.org/show_bug.cgi?id=53317
- Scripts/build-webkit:
- 12:26 PM Changeset in webkit [76970] by
-
- 1 edit1 add in trunk/LayoutTests
2011-01-28 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium rebaselines.
Check in the same result as fast/dom/window-domurl-crash-expected.txt because Windows port
intentionally added a failing result in http://trac.webkit.org/changeset/76953.
The Windows port's bug is tracked by https://bugs.webkit.org/show_bug.cgi?id=53310.
- platform/chromium-win/fast/dom/window-domurl-crash-expected.txt: Added.
- 12:21 PM Changeset in webkit [76969] by
-
- 5 edits in trunk/Source
2011-01-28 Michael Saboff <msaboff@apple.com>
Potentially Unsafe HashSet of RuntimeObject* in RootObject definition
https://bugs.webkit.org/show_bug.cgi?id=53271
Reapplying this this change. No change from prior patch in
JavaScriptCore.
Added new isValid() methods to check if a contained object in
a WeakGCMap is valid when using an unchecked iterator.
- runtime/WeakGCMap.h: (JSC::WeakGCMap::isValid):
2011-01-28 Michael Saboff <msaboff@apple.com>
Reviewed by Geoffrey Garen.
Potentially Unsafe HashSet of RuntimeObject* in RootObject definition
https://bugs.webkit.org/show_bug.cgi?id=53271
Reapplying this patch with the change that the second ASSERT in
RootObject::removeRuntimeObject was changed to use
.uncheckedGet() instead of the failing .get(). The object in question
could be in the process of being GC'ed. The get() call will not return
such an object while the uncheckedGet() call will return the (unsafe)
object. This is the behavior we want.
Precautionary change.
Changed RootObject to use WeakGCMap instead of HashSet.
Found will looking for another issue, but can't produce a test case
that is problematic. THerefore there aren't any new tests.
- bridge/runtime_root.cpp: (JSC::Bindings::RootObject::invalidate): (JSC::Bindings::RootObject::addRuntimeObject): (JSC::Bindings::RootObject::removeRuntimeObject):
- bridge/runtime_root.h:
- 12:16 PM Changeset in webkit [76968] by
-
- 4 edits in trunk
Notify CACFLayerTreeHost when the context is flushed
LegacyCACFLayerTreeHost was keeping this a secret, which meant that WebCore's animation
timers were never starting.
Fixes <http://webkit.org/b/53302> [Windows 7 Release Tests] changesets 76853, 76856, and
76858 broke ~36 animations, compositing, and transitions tests
Reviewed by Sam Weinig.
Source/WebCore:
- platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp:
(WebCore::LegacyCACFLayerTreeHost::contextDidChange): Call up to the base class after we
start our render timer.
LayoutTests:
Unskip compositing-related tests that are now fixed
- platform/win/Skipped:
- 12:16 PM Changeset in webkit [76967] by
-
- 8 edits1 copy in trunk/Source
Change BinarySemaphore to wrap an auto-reset Win32 event on Windows
Fixes <http://webkit.org/b/53208> <rdar://problem/8922490>.
Reviewed by Dave Hyatt.
Source/WebKit2:
- Platform/CoreIPC/BinarySemaphore.cpp: Wrap this implementation in #if !PLATFORM(WIN).
- Platform/CoreIPC/BinarySemaphore.h: Make the Windows implementation have a single HANDLE
member that holds the event.
- Platform/CoreIPC/win/BinarySemaphoreWin.cpp: Copied from Source/WebKit2/Platform/CoreIPC/BinarySemaphore.cpp.
(CoreIPC::BinarySemaphore::BinarySemaphore): Create our event.
(CoreIPC::BinarySemaphore::~BinarySemaphore): Destory our event.
(CoreIPC::BinarySemaphore::signal): Signal the event.
(CoreIPC::BinarySemaphore::wait): Convert the absolute time to a wait interval, then wait
for the event to be signaled or for the interval to elapse.
- win/WebKit2.vcproj: Added BinarySemaphoreWin.cpp. Also let VS have its way with the file.
Source/JavaScriptCore:
Extract code to convert a WTF absolute time to a Win32 wait interval into a separate
function
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def: Export the new function.
- wtf/ThreadingPrimitives.h: Declare the new function.
- wtf/ThreadingWin.cpp:
(WTF::ThreadCondition::timedWait): Moved code to convert the absolute time to a wait
interval from here...
(WTF::absoluteTimeToWaitTimeoutInterval): ...to here.
- 12:15 PM Changeset in webkit [76966] by
-
- 8 edits in trunk/Source/WebCore
Remove dead code that tried to map from CSS values to parser values
https://bugs.webkit.org/show_bug.cgi?id=53318
Reviewed by Dan Bernstein.
- css/CSSFunctionValue.cpp:
- css/CSSFunctionValue.h:
- css/CSSPrimitiveValue.cpp:
- css/CSSPrimitiveValue.h:
- css/CSSValue.h:
- css/CSSValueList.cpp:
- css/CSSValueList.h:
- 12:14 PM Changeset in webkit [76965] by
-
- 1 edit3 adds in trunk/LayoutTests
[Windows 7 Release Tests] fast/text/justify-ideograph-complex/simple/vertical.html failing since introduction in r76743.
https://bugs.webkit.org/show_bug.cgi?id=53321
Unreviewed, checking in failing expected results to get the Windows 7 Release Tests bots green.
- platform/win/fast/text/justify-ideograph-complex-expected.txt: Added.
- platform/win/fast/text/justify-ideograph-simple-expected.txt: Added.
- platform/win/fast/text/justify-ideograph-vertical-expected.txt: Added.
- 12:11 PM Changeset in webkit [76964] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
Remove now-passing test from expectations.
- platform/chromium/test_expectations.txt: Expectation of failure removed.
- 12:08 PM Changeset in webkit [76963] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
Update expectations for prototype-inheritance to match platform/mac.
- platform/chromium/fast/dom/prototype-inheritance-expected.txt: Updated.
- 11:48 AM Changeset in webkit [76962] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Chris Marrin <cmarrin@apple.com>
Reviewed by Anders Carlsson.
WebKit2: Page flashes just before accelerated compositing animation
https://bugs.webkit.org/show_bug.cgi?id=53274
When switching out of compositing mode, the new ChunkedUpdateDrawingAreaProxy
is getting created with the current page size. When the setSize() call is
subsequently made, the sizeDidChange() call is not made (which does the initial
render of the page) because the old size and new size are the same. The solution
is to skip the setting of the size in the ctor and let it go through a size
change sequence.
- UIProcess/DrawingAreaProxy.cpp: (WebKit::DrawingAreaProxy::DrawingAreaProxy):
- 11:46 AM Changeset in webkit [76961] by
-
- 3 edits4 deletes in trunk
Some drag and drop tests fail since r76824
https://bugs.webkit.org/show_bug.cgi?id=53304
Reviewed by Adam Roben.
Source/WebCore:
There were ' ' instead of '&&' in the checks for valid clipboard content.
- platform/win/ClipboardWin.cpp:
(WebCore::ClipboardWin::getData):
(WebCore::ClipboardWin::types):
(WebCore::ClipboardWin::files):
LayoutTests:
Removing platform-specific tests after fixing the cause of the failure.
- platform/win/editing/pasteboard/get-data-text-plain-paste-expected.txt: Removed.
- platform/win/editing/pasteboard/onpaste-text-html-expected.txt: Removed.
- platform/win/fast/events/drag-and-drop-dataTransfer-types-nocrash-expected.txt: Removed.
- platform/win/fast/events/ondrop-text-html-expected.txt: Removed.
- 11:29 AM Changeset in webkit [76960] by
-
- 2 edits in trunk/Source/WebCore
2011-01-28 Martin Robinson <mrobinson@igalia.com>
[GTK] AudioProcessingEvent.h and JSJavaScriptAudioNode.h: No such file or directory
https://bugs.webkit.org/show_bug.cgi?id=52889
Build fix for WebAudio. Include WebAudio source files on the source
list when WebAudio is enabled.
- GNUmakefile.am: Include missing source files.
- 11:18 AM Changeset in webkit [76959] by
-
- 1 edit1 delete in trunk/LayoutTests
Remove the Windows-specific failing results for media/audio-data-url.html, since it appears
to be passing on the bots now. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=51518
- platform/win/media/audio-data-url-expected.txt: Removed.
- 11:16 AM Changeset in webkit [76958] by
-
- 5 edits in trunk
2011-01-28 Chang Shu <chang.shu@nokia.com>
Reviewed by Andreas Kling.
Unskipp auth.html after fix.
https://bugs.webkit.org/show_bug.cgi?id=36688
- platform/qt/Skipped:
2011-01-28 Chang Shu <chang.shu@nokia.com>
Reviewed by Andreas Kling.
Reset NetworkAccessManager to clean up credentials from previous tests.
This change causes no performance overhead either.
https://bugs.webkit.org/show_bug.cgi?id=36688
- DumpRenderTree/qt/DumpRenderTreeQt.cpp: (WebCore::DumpRenderTree::resetToConsistentStateBeforeTesting): (WebCore::DumpRenderTree::open):
- DumpRenderTree/qt/DumpRenderTreeQt.h:
- 11:11 AM BuildingQtOnSymbian edited by
- fix typos, yuck (diff)
- 11:06 AM Changeset in webkit [76957] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Dimitri Glazkov <Dimitri Glazkov>
Added newly-failing tests to expectations, will be fixing them shortly.
https://bugs.webkit.org/show_bug.cgi?id=53314
- platform/chromium/test_expectations.txt: Added.
- 11:05 AM Changeset in webkit [76956] by
-
- 12 edits in trunk/Source
Add basic rubber banding support
<rdar://problem/8219429>
https://bugs.webkit.org/show_bug.cgi?id=53277
Reviewed by Maciej Stachowiak.
Source/JavaScriptCore:
- wtf/Platform.h: Add ENABLE for rubber banding.
Source/WebCore:
- page/EventHandler.cpp:
(WebCore::EventHandler::handleGestureEvent):
Pass gesture events to the FrameView.
- platform/ScrollAnimator.cpp:
(WebCore::ScrollAnimator::handleGestureEvent):
- platform/ScrollAnimator.h:
Add stubbed out implementation.
- platform/ScrollView.cpp:
(WebCore::ScrollView::ScrollView):
(WebCore::ScrollView::overhangAmount):
(WebCore::ScrollView::wheelEvent):
- platform/ScrollView.h:
- platform/ScrollableArea.cpp:
(WebCore::ScrollableArea::ScrollableArea):
(WebCore::ScrollableArea::handleGestureEvent):
- platform/ScrollableArea.h:
(WebCore::ScrollableArea::constrainsScrollingToContentEdge):
(WebCore::ScrollableArea::setConstrainsScrollingToContentEdge):
Move constrains scrolling bit to ScrollableArea from ScrollView.
(WebCore::ScrollableArea::contentsSize):
(WebCore::ScrollableArea::overhangAmount):
Add additional virtual functions for information needed by the animator.
- platform/mac/ScrollAnimatorMac.h:
- platform/mac/ScrollAnimatorMac.mm:
(WebCore::ScrollAnimatorMac::ScrollAnimatorMac):
(WebCore::ScrollAnimatorMac::immediateScrollByDeltaX):
(WebCore::ScrollAnimatorMac::immediateScrollByDeltaY):
(WebCore::elasticDeltaForTimeDelta):
(WebCore::elasticDeltaForReboundDelta):
(WebCore::reboundDeltaForElasticDelta):
(WebCore::scrollWheelMultiplier):
(WebCore::ScrollAnimatorMac::handleWheelEvent):
(WebCore::ScrollAnimatorMac::handleGestureEvent):
(WebCore::ScrollAnimatorMac::pinnedInDirection):
(WebCore::ScrollAnimatorMac::allowsVerticalStretching):
(WebCore::ScrollAnimatorMac::allowsHorizontalStretching):
(WebCore::ScrollAnimatorMac::smoothScrollWithEvent):
(WebCore::ScrollAnimatorMac::beginScrollGesture):
(WebCore::ScrollAnimatorMac::endScrollGesture):
(WebCore::ScrollAnimatorMac::snapRubberBand):
(WebCore::roundTowardZero):
(WebCore::roundToDevicePixelTowardZero):
(WebCore::ScrollAnimatorMac::snapRubberBandTimerFired):
Implement basic rubber banding.
- 11:05 AM Changeset in webkit [76955] by
-
- 2 edits in trunk/LayoutTests
Adding tests broken on Windows 7 Release in 76853,76856,76858 to the Skipped list to get the
Windows 7 Release Bot green. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=53302
- platform/win/Skipped:
- 11:00 AM BuildingQtOnSymbian edited by
- use --minimal only if you have to (test what you ship) (diff)
- 10:46 AM Changeset in webkit [76954] by
-
- 3 edits4 adds in trunk
Changing unicode-bidi doesn’t force layout
https://bugs.webkit.org/show_bug.cgi?id=53311
Reviewed by Anders Carlsson.
Source/WebCore:
Test: fast/dynamic/unicode-bidi.html
- rendering/style/RenderStyle.cpp:
(WebCore::RenderStyle::diff): Return a layout difference if unicode-bidi values differ.
LayoutTests:
- fast/dynamic/unicode-bidi-expected.checksum: Added.
- fast/dynamic/unicode-bidi-expected.png: Added.
- fast/dynamic/unicode-bidi-expected.txt: Added.
- fast/dynamic/unicode-bidi.html: Added.
- 10:44 AM Changeset in webkit [76953] by
-
- 1 edit1 add in trunk/LayoutTests
Add Windows expected (failing) results to get the bots green. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=53310
- platform/win/fast/dom/window-domurl-crash-expected.txt: Added.
- 10:16 AM Changeset in webkit [76952] by
-
- 1 edit4 adds in trunk/LayoutTests
Check in Windows-specific expected results to get the bots green. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=53307
- platform/win/fast/multicol: Added.
- platform/win/fast/multicol/vertical-rl: Added.
- platform/win/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/win/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- 9:52 AM Changeset in webkit [76951] by
-
- 9 edits in trunk/Source/WebCore
2011-01-27 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Kent Tamura.
Change HTMLInputElement-derived parts of media element shadow DOM to use shadowPseudoId.
https://bugs.webkit.org/show_bug.cgi?id=53122
This is the first step in converting HTMLMediaElement to the new shadow DOM.
Should not regress any existing tests. No observable change in behavior.
- css/CSSSelector.cpp: (WebCore::CSSSelector::pseudoId): Removed now-unnecessary hard-coded pseudo-element selectors. (WebCore::nameToPseudoTypeMap): Ditto. (WebCore::CSSSelector::extractPseudoType): Ditto.
- css/CSSSelector.h: Ditto.
- css/mediaControls.css: Added proper initial values, now that elements use the proper selector pipeline.
- rendering/MediaControlElements.cpp: (WebCore::MediaControlInputElement::MediaControlInputElement): Removed the switch statement,
which is now replaced with virtual shadowPseudoId on each corresponding class.
(WebCore::MediaControlInputElement::styleForElement): Changed to use element pipeline.
(WebCore::MediaControlMuteButtonElement::MediaControlMuteButtonElement): Changed to set
display type in constructor.
(WebCore::MediaControlMuteButtonElement::create): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlMuteButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlVolumeSliderMuteButtonElement::MediaControlVolumeSliderMuteButtonElement): Added
to disambiguate from the MediaControlMuteButtonElement.
(WebCore::MediaControlVolumeSliderMuteButtonElement::create): Added.
(WebCore::MediaControlVolumeSliderMuteButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlPlayButtonElement::MediaControlPlayButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlPlayButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlSeekButtonElement::MediaControlSeekButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlSeekForwardButtonElement::MediaControlSeekForwardButtonElement): Added.
(WebCore::MediaControlSeekForwardButtonElement::create): Added.
(WebCore::MediaControlSeekForwardButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlSeekBackButtonElement::MediaControlSeekBackButtonElement): Added.
(WebCore::MediaControlSeekBackButtonElement::create): Added.
(WebCore::MediaControlSeekBackButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlRewindButtonElement::MediaControlRewindButtonElement): Added.
(WebCore::MediaControlRewindButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlReturnToRealtimeButtonElement::MediaControlReturnToRealtimeButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlReturnToRealtimeButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlToggleClosedCaptionsButtonElement::MediaControlToggleClosedCaptionsButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlToggleClosedCaptionsButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlTimelineElement::MediaControlTimelineElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlTimelineElement::shadowPseudoId): Added.
(WebCore::MediaControlVolumeSliderElement::MediaControlVolumeSliderElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlVolumeSliderElement::shadowPseudoId): Added.
(WebCore::MediaControlFullscreenButtonElement::MediaControlFullscreenButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlFullscreenButtonElement::shadowPseudoId): Added.
- rendering/MediaControlElements.h: (WebCore::MediaControlSeekForwardButtonElement::isForwardButton): Added. (WebCore::MediaControlSeekBackButtonElement::isForwardButton): Added.
- rendering/RenderMedia.cpp: (WebCore::RenderMedia::createMuteButton): Changed to use new constructor. (WebCore::RenderMedia::createSeekBackButton): Ditto. (WebCore::RenderMedia::createSeekForwardButton): Ditto. (WebCore::RenderMedia::createVolumeSliderMuteButton): Ditto.
- rendering/style/RenderStyleConstants.h: Removed constants that are no longer used.
- 9:11 AM Changeset in webkit [76950] by
-
- 13 edits2 copies in trunk/Source/WebCore
2011-01-27 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Eric Carlson.
Split MediaControls out of RenderMedia.
https://bugs.webkit.org/show_bug.cgi?id=53252
Near-mechanical moving of stuff, no change in behavior, thus no new tests.
- Android.mk: Added MediaControls to build system.
- CMakeLists.txt: Ditto.
- GNUmakefile.am: Ditto.
- WebCore.gypi: Ditto.
- WebCore.pro: Ditto.
- WebCore.vcproj/WebCore.vcproj: Ditto.
- WebCore.xcodeproj/project.pbxproj: Ditto.
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::defaultEventHandler): Changed to forward events to MediaControls.
- html/shadow/MediaControls.cpp: Copied all controls-related methods from
Source/WebCore/rendering/RenderMedia.cpp, pulled them into their own class called MediaControls.
- html/shadow/MediaControls.h: Ditto from Source/WebCore/rendering/RenderMedia.h.
- rendering/MediaControlElements.cpp: (WebCore::MediaControlTimelineElement::defaultEventHandler): Changed to use MediaControls.
- rendering/RenderMedia.cpp: (WebCore::RenderMedia::RenderMedia): Moved relevant constructor initializers out to MediaControls. (WebCore::RenderMedia::destroy): Changed to use MediaControls. (WebCore::RenderMedia::styleDidChange): Ditto. (WebCore::RenderMedia::layout): Ditto. (WebCore::RenderMedia::updateFromElement): Ditto.
- rendering/RenderMedia.h: Updated defs accordingly and removed player() accessor, which
is only used by sub-class RenderVideo.
(WebCore::RenderMedia::controls): Added.
- rendering/RenderVideo.cpp: (WebCore::RenderVideo::~RenderVideo): Changed to access MediaPlayer* directly from mediaElement(). (WebCore::RenderVideo::calculateIntrinsicSize): Ditto. (WebCore::RenderVideo::paintReplaced): Ditto. (WebCore::RenderVideo::updatePlayer): Ditto. (WebCore::RenderVideo::supportsAcceleratedRendering): Ditto. (WebCore::RenderVideo::acceleratedRenderingStateChanged): Ditto.
- 9:05 AM Changeset in webkit [76949] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76942.
http://trac.webkit.org/changeset/76942
https://bugs.webkit.org/show_bug.cgi?id=53301
Unskipped tests keep failing on GTK release bots (Requested by
svillar on #webkit).
- platform/gtk/Skipped:
- 9:01 AM Changeset in webkit [76948] by
-
- 1 edit4 adds in trunk/LayoutTests
Add Windows expected (failing) results to get the bots green. Unreviewed.
https://bugs.webkit.org/show_bug.cgi?id=53304
- platform/win/editing/pasteboard/get-data-text-plain-paste-expected.txt: Added.
- platform/win/editing/pasteboard/onpaste-text-html-expected.txt: Added.
- platform/win/fast/events/drag-and-drop-dataTransfer-types-nocrash-expected.txt: Added.
- platform/win/fast/events/ondrop-text-html-expected.txt: Added.
- 8:56 AM Changeset in webkit [76947] by
-
- 2 edits in trunk/Source/WebCore
2011-01-28 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: allow remote debugging with front-end
served from the cloud.
https://bugs.webkit.org/show_bug.cgi?id=53303
- inspector/front-end/inspector.js:
- 8:33 AM Changeset in webkit [76946] by
-
- 2 edits in trunk/Source/WebCore
2011-01-28 Aparna Nandyal <aparna.nand@wipro.com>
Reviewed by Andreas Kling.
Setting value of m_PressedPos to make scrolling smooth
Page scroll popup menu "Scroll here" option not working when cliking above scroll slider/handler.
https://bugs.webkit.org/show_bug.cgi?id=51349
The value of m_PressedPos was getting set before moveThumb() call
in all other scenarios except when "Scroll Here" option is used.
Hence scrolling with this option was not as expected even in cases
where scrolling was happening. The thumb would move in unexpected
direction. m_PressedPos is now set to pressed position so delta is
calculated.
Unable to write a test case as the test needs to click on "Scroll
Here" option of context sensitive menu and QTest is unable to do it.
Besides no new functionality introduced.
- platform/qt/ScrollbarQt.cpp: (WebCore::Scrollbar::contextMenu):
- 8:28 AM BuildingQtOnSymbian edited by
- (diff)
- 8:27 AM BuildingQtOnSymbian edited by
- (diff)
- 8:24 AM BuildingQtOnSymbian edited by
- --minimal now works on Symbian , added 64-bit linker notes for … (diff)
- 8:06 AM Changeset in webkit [76945] by
-
- 1 edit1 add in trunk/Source/WebCore
2011-01-28 Andrey Kosyakov <caseq@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Extensions API] add JSON schema for extensions API
https://bugs.webkit.org/show_bug.cgi?id=53236
- inspector/front-end/ExtensionAPISchema.json: Added.
- 7:56 AM WebKit Team edited by
- Add myself to committer list (diff)
- 7:51 AM Changeset in webkit [76944] by
-
- 9 edits in trunk
2011-01-27 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
Remove _LENGTH enumerants
https://bugs.webkit.org/show_bug.cgi?id=53259
- html/canvas/WebGLRenderingContext.cpp: Remove queries for *LENGTH. (WebCore::WebGLRenderingContext::getProgramParameter): (WebCore::WebGLRenderingContext::getShaderParameter):
- html/canvas/WebGLRenderingContext.idl: Remove *LENGTH.
2011-01-27 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
Remove _LENGTH enumerants
https://bugs.webkit.org/show_bug.cgi?id=53259
- fast/canvas/webgl/constants.html:
- fast/canvas/webgl/gl-getshadersource-expected.txt:
- fast/canvas/webgl/gl-getshadersource.html:
- fast/canvas/webgl/gl-object-get-calls-expected.txt:
- fast/canvas/webgl/gl-object-get-calls.html:
- 7:48 AM Changeset in webkit [76943] by
-
- 3 edits in trunk/Source/WebCore
2011-01-28 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: syntax highlight inline JS and CSS in HTML resources
https://bugs.webkit.org/show_bug.cgi?id=30831
- inspector/front-end/SourceHTMLTokenizer.js: (WebInspector.SourceHTMLTokenizer): (WebInspector.SourceHTMLTokenizer.prototype.set line): (WebInspector.SourceHTMLTokenizer.prototype.nextToken):
- inspector/front-end/SourceHTMLTokenizer.re2js:
- 7:12 AM Changeset in webkit [76942] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Unskipped some tests. They're not failing anymore.
- platform/gtk/Skipped:
- 7:07 AM Changeset in webkit [76941] by
-
- 2 edits in trunk/Source/WebCore
2011-01-28 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: [STYLES] Up/Down-suggestion breaks an existing keyword
https://bugs.webkit.org/show_bug.cgi?id=53295
Select the current word suffix before switching to the next suggestion.
- inspector/front-end/StylesSidebarPane.js: ():
- 6:34 AM Changeset in webkit [76940] by
-
- 2 edits in trunk/Source/WebKit/gtk
2011-01-28 Alejandro G. Castro <alex@igalia.com>
Reviewed by Xan Lopez.
[GTK] Fix compilation warning
https://bugs.webkit.org/show_bug.cgi?id=53292
- webkit/webkitwebframe.cpp: (draw_page_callback): Cast the pageCount from size_t to int, it should be safe considering page_nr is the number of pages, 0-based.
- 6:27 AM Changeset in webkit [76939] by
-
- 3 edits in branches/chromium/648
Merge 76795 - 2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: Closure and Global variable details automatically collapsing on each step through JavaScript code.
https://bugs.webkit.org/show_bug.cgi?id=53234
- inspector/debugger-expand-scope.html:
- inspector/debugger-proto-property.html:
2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: Closure and Global variable details automatically collapsing on each step through JavaScript code.
https://bugs.webkit.org/show_bug.cgi?id=53234
- inspector/front-end/ScopeChainSidebarPane.js: (WebInspector.ScopeChainSidebarPane): (WebInspector.ScopeChainSidebarPane.prototype.update):
TBR=podivilov@chromium.org
Review URL: http://codereview.chromium.org/6397012
- 6:24 AM Changeset in webkit [76938] by
-
- 3 edits in branches/chromium/648
Merge 76788 - 2011-01-27 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Elements panel] Tooltip for relative links incorrectly identifies current URL
https://bugs.webkit.org/show_bug.cgi?id=53171
WebCore:
- inspector/front-end/inspector.js: (WebInspector.completeURL): Taught to understand partial href's that start with "?" (contain GET parameters only)
LayoutTests:
- inspector/styles-url-linkify-expected.txt:
- inspector/styles-url-linkify.html:
TBR=apavlov@chromium.org
Review URL: http://codereview.chromium.org/6327025
- 6:19 AM Changeset in webkit [76937] by
-
- 1 edit in branches/chromium/648/Source/WebCore/bindings/v8/V8Proxy.cpp
Merge 76786 - 2011-01-27 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
[V8] Crash in WebCore::addMessageToConsole
https://bugs.webkit.org/show_bug.cgi?id=53227
- bindings/v8/V8Proxy.cpp: check that the Frame where the error occured still has a page before getting a console object from it. (WebCore::V8Proxy::reportUnsafeAccessTo):
TBR=yurys@chromium.org
Review URL: http://codereview.chromium.org/6324018
- 6:19 AM Changeset in webkit [76936] by
-
- 4 edits in trunk/Source
2011-01-28 Alejandro G. Castro <alex@igalia.com>
Reviewed by Xan Lopez.
[GTK] Fix dist compilation for the release
https://bugs.webkit.org/show_bug.cgi?id=53290
- GNUmakefile.am: Added inspector files to the extra dist.
2011-01-28 Alejandro G. Castro <alex@igalia.com>
Reviewed by Xan Lopez.
[GTK] Fix dist compilation for the release
https://bugs.webkit.org/show_bug.cgi?id=53290
- GNUmakefile.am: Remove a file that is not in the repository anymore.
- 6:16 AM Changeset in webkit [76935] by
-
- 1 edit in branches/chromium/648/Source/WebCore/inspector/front-end/ObjectPropertiesSection.js
Merge 76692 - 2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: visualize \n in strings as unicode cr
symbol in stack variables sidebar.
https://bugs.webkit.org/show_bug.cgi?id=53162
- inspector/front-end/ObjectPropertiesSection.js: (WebInspector.ObjectPropertyTreeElement.prototype.update):
TBR=pfeldman@chromium.org
Review URL: http://codereview.chromium.org/6390007
- 6:07 AM Changeset in webkit [76934] by
-
- 12 edits in branches/chromium/648/Source/WebCore/inspector
Merge 76680 - 2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: Incorrect on-hover evaluation of a variable named 'profile'.
https://bugs.webkit.org/show_bug.cgi?id=53018
- inspector/InjectedScript.cpp: (WebCore::InjectedScript::evaluate): (WebCore::InjectedScript::evaluateOnCallFrame): (WebCore::InjectedScript::getCompletions): (WebCore::InjectedScript::getCompletionsOnCallFrame):
- inspector/InjectedScript.h:
- inspector/InjectedScriptSource.js: (.):
- inspector/Inspector.idl:
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::evaluateOnCallFrame): (WebCore::InspectorDebuggerAgent::getCompletionsOnCallFrame):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorRuntimeAgent.cpp: (WebCore::InspectorRuntimeAgent::evaluate): (WebCore::InspectorRuntimeAgent::getCompletions):
- inspector/InspectorRuntimeAgent.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.completions): (WebInspector.ConsoleView.prototype.evalInInspectedWindow): (WebInspector.ConsoleView.prototype._enterKeyPressed):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame.updatingCallbackWrapper): (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame):
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._showPopup):
- inspector/front-end/WatchExpressionsSidebarPane.js: (WebInspector.WatchExpressionsSection.prototype.update):
TBR=pfeldman@chromium.org
Review URL: http://codereview.chromium.org/6320021
- 6:02 AM Changeset in webkit [76933] by
-
- 1 edit in branches/chromium/648/Source/WebCore/inspector/front-end/HeapSnapshotView.js
Merge 76514 - 2011-01-21 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Fix heap snapshot table sorting.
Fix table sorting to avoid qsort instability artefacts.
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotView.prototype._sortData): (WebInspector.HeapSnapshotDataGridList.propertyComparator.comparator): (WebInspector.HeapSnapshotDataGridList.propertyComparator):
TBR=mnaganov@chromium.org
Review URL: http://codereview.chromium.org/6405002
- 5:54 AM Changeset in webkit [76932] by
-
- 1 edit in branches/chromium/648/Source/WebCore/inspector/front-end/NetworkPanel.js
Merge 76483 - 2011-01-23 Andrey Kosyakov <caseq@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: summary bar is not resized properly with the rest of net
https://bugs.webkit.org/show_bug.cgi?id=52881
- inspector/front-end/NetworkPanel.js: (WebInspector.NetworkPanel.prototype.updateSidebarWidth): (WebInspector.NetworkPanel.prototype._positionSummaryBar): (WebInspector.NetworkPanel.prototype._toggleGridMode):
TBR=caseq@chromium.org
Review URL: http://codereview.chromium.org/6366026
- 5:16 AM Changeset in webkit [76931] by
-
- 3 edits in trunk/Source/WebKit2
2011-01-28 Andreas Kling <kling@webkit.org>
Rubber-stamped by Simon Hausmann.
[Qt][WK2] Combine QWKPage::engine{Connected,Disconnected} into one signal.
Having two signals for this is redundant, combine them into
QWKPage::engineConnectionChanged(bool connected).
- UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::didRelaunchProcess): (QWKPagePrivate::processDidCrash):
- UIProcess/API/qt/qwkpage.h:
- 5:06 AM Changeset in webkit [76930] by
-
- 3 edits in trunk/Tools
[Qt] Add Zoom Text Only action to MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=53297
Reviewed by Andreas Kling.
Add Zoom Text Only action to MiniBrowser's view menu, change zoom levels to avoid unnecessary divides.
- MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
(BrowserWindow::zoomIn):
(BrowserWindow::zoomOut):
(BrowserWindow::resetZoom):
(BrowserWindow::toggleZoomTextOnly):
(BrowserWindow::applyZoom):
- MiniBrowser/qt/BrowserWindow.h:
- 4:46 AM Changeset in webkit [76929] by
-
- 6 edits in trunk/Source
2011-01-28 Ilya Sherman <isherman@chromium.org>
Reviewed by Andreas Kling.
Const-correct HTMLSelectElement and WebSelectElement
https://bugs.webkit.org/show_bug.cgi?id=53293
- html/HTMLSelectElement.cpp: (WebCore::HTMLSelectElement::value): const.
- html/HTMLSelectElement.h:
2011-01-28 Ilya Sherman <isherman@chromium.org>
Reviewed by Andreas Kling.
Const-correct HTMLSelectElement and WebSelectElement
https://bugs.webkit.org/show_bug.cgi?id=53293
- public/WebSelectElement.h:
- src/WebSelectElement.cpp: (WebKit::WebSelectElement::value): const. (WebKit::WebSelectElement::listItems): const.
- 4:45 AM Changeset in webkit [76928] by
-
- 4 edits in trunk/LayoutTests
2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: fix debugger-scripts.html (broken by r76587).
https://bugs.webkit.org/show_bug.cgi?id=53112
- inspector/debugger-scripts-expected.txt:
- inspector/debugger-scripts.html:
- platform/chromium/test_expectations.txt:
- 3:25 AM Changeset in webkit [76927] by
-
- 2 edits in trunk/LayoutTests
2011-01-28 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
Adding media/video-controls-rendering.html to the Skipped list of tests.
- platform/gtk/Skipped:
- 2:14 AM Changeset in webkit [76926] by
-
- 14 edits6 adds in trunk/Tools
2011-01-28 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Add webkit-patch roll-chromium-deps
https://bugs.webkit.org/show_bug.cgi?id=53288
This command updates the Source/WebKit/chromium/DEPS file with the
last-known good revision of Chromium (or a revision specified on the
command line). I'd eventually like to turn this into a SheriffBot
command, but this is the first step.
This patch somewhat sprawled because I needed to move a bunch of code
out of ChangeLog that should never have been there in the first place.
Also, I had to fix a bug in MockUser in order to test the new command.
- Scripts/webkitpy/common/checkout/api.py:
- Scripts/webkitpy/common/checkout/changelog.py:
- Scripts/webkitpy/common/checkout/changelog_unittest.py:
- Scripts/webkitpy/common/checkout/deps.py: Added.
- Scripts/webkitpy/common/config/urls.py:
- Scripts/webkitpy/tool/commands/init.py:
- Scripts/webkitpy/tool/commands/download_unittest.py:
- Scripts/webkitpy/tool/commands/roll.py: Added.
- Scripts/webkitpy/tool/commands/roll_unittest.py: Added.
- Scripts/webkitpy/tool/commands/upload_unittest.py:
- Scripts/webkitpy/tool/mocktool.py:
- Scripts/webkitpy/tool/steps/init.py:
- Scripts/webkitpy/tool/steps/preparechangelogfordepsroll.py: Added.
- Scripts/webkitpy/tool/steps/preparechangelogforrevert.py:
- Scripts/webkitpy/tool/steps/preparechangelogforrevert_unittest.py: Added.
- Scripts/webkitpy/tool/steps/suggestreviewers_unittest.py:
- Scripts/webkitpy/tool/steps/updatechromiumdeps.py: Added.
- Scripts/webkitpy/tool/steps/validatechangelogs_unittest.py:
- 1:10 AM Changeset in webkit [76925] by
-
- 5 edits in trunk/Source
Unreviewed, rolling out r76893.
http://trac.webkit.org/changeset/76893
https://bugs.webkit.org/show_bug.cgi?id=53287
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-01-28
It made some tests crash on GTK and Qt debug bots (Requested
by Ossy on #webkit).
Source/JavaScriptCore:
- runtime/WeakGCMap.h:
Source/WebCore:
- bridge/runtime_root.cpp:
(JSC::Bindings::RootObject::invalidate):
(JSC::Bindings::RootObject::addRuntimeObject):
(JSC::Bindings::RootObject::removeRuntimeObject):
- bridge/runtime_root.h:
- 12:33 AM Changeset in webkit [76924] by
-
- 1 edit in trunk/ChangeLog
2010-01-28 Commit Queue <commit-queue@webkit.org>
Unreviewed. Test commit for commit-queue@webkit.org.
- 12:05 AM Changeset in webkit [76923] by
-
- 1 edit in trunk/ChangeLog
2010-01-28 Commit Queue <commit-queue@webkit.org>
Unreviewed. Test commit for commit-queue@webkit.org.
Jan 27, 2011:
- 11:49 PM Changeset in webkit [76922] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Laszlo Gombos <Laszlo Gombos>
Reviewed by Maciej Stachowiak.
Build fix for Mac Intel Debug after r76916
https://bugs.webkit.org/show_bug.cgi?id=53284
Fix macro redefinition by guarding the redefined macros.
- config.h:
- 11:25 PM Changeset in webkit [76921] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Laszlo Gombos <Laszlo Gombos>
Unreviewed build fix for Mac Intel Debug after r76916.
Fix macro redefinition by guarding the redefined macros.
Check if the macro is already defined before defininig it.
c++config.h has the same macros with the same values.
- config.h:
- 11:14 PM Changeset in webkit [76920] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt: More media test crashes due to crbug.com/71087.
- 10:42 PM Changeset in webkit [76919] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Laszlo Gombos <Laszlo Gombos>
Reviewed by Adam Barth.
Update the expected results for test-webkitpy after r76916.
Include "config.h" in the expected results as well.
- Scripts/webkit2/messages_unittest.py:
- 10:34 PM Changeset in webkit [76918] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Maciej Stachowiak <mjs@apple.com>
Reviewed by Adam Barth.
Skip some tests that fail due to missing DRT API
https://bugs.webkit.org/show_bug.cgi?id=53283
- platform/mac-wk2/Skipped:
- 10:09 PM Changeset in webkit [76917] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Laszlo Gombos <Laszlo Gombos>
Unreviewed buildfix for SnowLeopard Intel Debug.
Fix macro redefinition by not including config.h.
Revert previous change in WebPageProxyCF.cpp.
- UIProcess/cf/WebPageProxyCF.cpp:
- 9:37 PM Changeset in webkit [76916] by
-
- 360 edits1 copy in trunk
2011-01-27 Greg Coletta <greg.coletta@nokia.com>
Reviewed by Laszlo Gombos.
Get rid of prefix header dependency for WebKit2 build system
https://bugs.webkit.org/show_bug.cgi?id=50174
Change the style checker so that it enforces config.h include for
WebKit2.
- Scripts/webkitpy/style/checker.py:
2011-01-27 Greg Coletta <greg.coletta@nokia.com>
Reviewed by Laszlo Gombos.
Get rid of prefix header dependency for WebKit2 build system
https://bugs.webkit.org/show_bug.cgi?id=50174
Guard EmptyProtocalDefinitions.h to make sure it's not included twice.
- platform/mac/EmptyProtocolDefinitions.h:
2011-01-27 Greg Coletta <greg.coletta@nokia.com>
Reviewed by Laszlo Gombos.
Get rid of prefix header dependency for WebKit2 build system.
https://bugs.webkit.org/show_bug.cgi?id=50174
Add config.h include explicitelly.
- Platform/CoreIPC/ArgumentDecoder.cpp:
- Platform/CoreIPC/ArgumentEncoder.cpp:
- Platform/CoreIPC/Attachment.cpp:
- Platform/CoreIPC/BinarySemaphore.cpp:
- Platform/CoreIPC/Connection.cpp:
- Platform/CoreIPC/DataReference.cpp:
- Platform/CoreIPC/gtk/ConnectionGtk.cpp:
- Platform/CoreIPC/mac/ConnectionMac.cpp:
- Platform/CoreIPC/qt/ConnectionQt.cpp:
- Platform/CoreIPC/win/ConnectionWin.cpp:
- Platform/Logging.cpp:
- Platform/Module.cpp:
- Platform/Region.cpp:
- Platform/RunLoop.cpp:
- Platform/WorkQueue.cpp:
- Platform/cg/CGUtilities.cpp:
- Platform/gtk/RunLoopGtk.cpp:
- Platform/gtk/SharedMemoryGtk.cpp:
- Platform/gtk/WorkQueueGtk.cpp:
- Platform/mac/MachUtilities.cpp:
- Platform/mac/SharedMemoryMac.cpp:
- Platform/mac/WorkQueueMac.cpp:
- Platform/qt/MappedMemoryPool.cpp:
- Platform/qt/ModuleQt.cpp:
- Platform/qt/RunLoopQt.cpp:
- Platform/qt/WorkQueueQt.cpp:
- Platform/win/ModuleWin.cpp:
- Platform/win/RunLoopWin.cpp:
- Platform/win/SharedMemoryWin.cpp:
- Platform/win/WorkQueueWin.cpp:
- PluginProcess/PluginControllerProxy.cpp:
- PluginProcess/PluginProcess.cpp:
- PluginProcess/WebProcessConnection.cpp:
- Scripts/webkit2/messages.py:
- Shared/API/c/WKArray.cpp:
- Shared/API/c/WKCertificateInfo.cpp:
- Shared/API/c/WKContextMenuItem.cpp:
- Shared/API/c/WKData.cpp:
- Shared/API/c/WKDictionary.cpp:
- Shared/API/c/WKError.cpp:
- Shared/API/c/WKImage.cpp:
- Shared/API/c/WKMutableArray.cpp:
- Shared/API/c/WKMutableDictionary.cpp:
- Shared/API/c/WKNumber.cpp:
- Shared/API/c/WKSecurityOrigin.cpp:
- Shared/API/c/WKSerializedScriptValue.cpp:
- Shared/API/c/WKString.cpp:
- Shared/API/c/WKType.cpp:
- Shared/API/c/WKURL.cpp:
- Shared/API/c/WKURLRequest.cpp:
- Shared/API/c/WKURLResponse.cpp:
- Shared/API/c/WKUserContentURLPattern.cpp:
- Shared/API/c/cf/WKStringCF.cpp:
- Shared/API/c/cf/WKURLCF.cpp:
- Shared/API/c/cf/WKURLRequestCF.cpp:
- Shared/API/c/cf/WKURLResponseCF.cpp:
- Shared/API/c/cg/WKImageCG.cpp:
- Shared/API/c/win/WKCertificateInfoWin.cpp:
- Shared/ChildProcess.cpp:
- Shared/ImmutableArray.cpp:
- Shared/ImmutableDictionary.cpp:
- Shared/MutableArray.cpp:
- Shared/MutableDictionary.cpp:
- Shared/OriginAndDatabases.cpp:
- Shared/PlatformPopupMenuData.cpp:
- Shared/Plugins/NPIdentifierData.cpp:
- Shared/Plugins/NPObjectMessageReceiver.cpp:
- Shared/Plugins/NPObjectProxy.cpp:
- Shared/Plugins/NPRemoteObjectMap.cpp:
- Shared/Plugins/NPVariantData.cpp:
- Shared/Plugins/Netscape/NetscapePluginModule.cpp:
- Shared/Plugins/Netscape/win/NetscapePluginModuleWin.cpp:
- Shared/Plugins/Netscape/x11/NetscapePluginModuleX11.cpp:
- Shared/Plugins/PluginProcessCreationParameters.cpp:
- Shared/PrintInfo.cpp:
- Shared/SessionState.cpp:
- Shared/ShareableBitmap.cpp:
- Shared/UpdateInfo.cpp:
- Shared/VisitedLinkTable.cpp:
- Shared/WebBackForwardListItem.cpp:
- Shared/WebContextMenuItem.cpp:
- Shared/WebContextMenuItemData.cpp:
- Shared/WebError.cpp:
- Shared/WebEvent.cpp:
- Shared/WebEventConversion.cpp:
- Shared/WebGeolocationPosition.cpp:
- Shared/WebImage.cpp:
- Shared/WebKeyboardEvent.cpp:
- Shared/WebMemorySampler.cpp:
- Shared/WebMouseEvent.cpp:
- Shared/WebOpenPanelParameters.cpp:
- Shared/WebPageCreationParameters.cpp:
- Shared/WebPageGroupData.cpp:
- Shared/WebPlatformTouchPoint.cpp:
- Shared/WebPopupItem.cpp:
- Shared/WebPreferencesStore.cpp:
- Shared/WebProcessCreationParameters.cpp:
- Shared/WebTouchEvent.cpp:
- Shared/WebURLRequest.cpp:
- Shared/WebURLResponse.cpp:
- Shared/WebWheelEvent.cpp:
- Shared/cairo/ShareableBitmapCairo.cpp:
- Shared/cf/ArgumentCodersCF.cpp:
- Shared/cg/ShareableBitmapCG.cpp:
- Shared/gtk/ShareableBitmapGtk.cpp:
- Shared/gtk/WebCoreArgumentCodersGtk.cpp:
- Shared/mac/CommandLineMac.cpp:
- Shared/mac/UpdateChunk.cpp:
- Shared/qt/CleanupHandler.cpp:
- Shared/qt/NativeWebKeyboardEventQt.cpp:
- Shared/qt/ShareableBitmapQt.cpp:
- Shared/qt/UpdateChunk.cpp:
- Shared/qt/WebCoreArgumentCodersQt.cpp:
- Shared/qt/WebEventFactoryQt.cpp:
- Shared/qt/WebURLRequestQt.cpp:
- Shared/qt/WebURLResponseQt.cpp:
- Shared/win/CommandLineWin.cpp:
- Shared/win/NativeWebKeyboardEventWin.cpp:
- Shared/win/PlatformCertificateInfo.cpp:
- Shared/win/UpdateChunk.cpp:
- Shared/win/WebCoreArgumentCodersWin.cpp:
- Shared/win/WebEventFactory.cpp:
- Shared/win/WebURLRequestWin.cpp:
- Shared/win/WebURLResponseWin.cpp:
- UIProcess/API/C/WKAuthenticationChallenge.cpp:
- UIProcess/API/C/WKAuthenticationDecisionListener.cpp:
- UIProcess/API/C/WKBackForwardList.cpp:
- UIProcess/API/C/WKBackForwardListItem.cpp:
- UIProcess/API/C/WKContext.cpp:
- UIProcess/API/C/WKCredential.cpp:
- UIProcess/API/C/WKDatabaseManager.cpp:
- UIProcess/API/C/WKDownload.cpp:
- UIProcess/API/C/WKFormSubmissionListener.cpp:
- UIProcess/API/C/WKFrame.cpp:
- UIProcess/API/C/WKFramePolicyListener.cpp:
- UIProcess/API/C/WKGeolocationManager.cpp:
- UIProcess/API/C/WKGeolocationPermissionRequest.cpp:
- UIProcess/API/C/WKGeolocationPosition.cpp:
- UIProcess/API/C/WKInspector.cpp:
- UIProcess/API/C/WKNavigationData.cpp:
- UIProcess/API/C/WKOpenPanelParameters.cpp:
- UIProcess/API/C/WKOpenPanelResultListener.cpp:
- UIProcess/API/C/WKPage.cpp:
- UIProcess/API/C/WKPageGroup.cpp:
- UIProcess/API/C/WKPreferences.cpp:
- UIProcess/API/C/WKProtectionSpace.cpp:
- UIProcess/API/C/win/WKContextWin.cpp:
- UIProcess/API/C/win/WKView.cpp:
- UIProcess/API/C/win/WKViewPrivate.cpp:
- UIProcess/API/cpp/qt/WKStringQt.cpp:
- UIProcess/API/cpp/qt/WKURLQt.cpp:
- UIProcess/API/qt/ClientImpl.cpp:
- UIProcess/API/qt/qgraphicswkview.cpp:
- UIProcess/API/qt/qwkcontext.cpp:
- UIProcess/API/qt/qwkpage.cpp:
- UIProcess/API/qt/qwkpreferences.cpp:
- UIProcess/Authentication/AuthenticationChallengeProxy.cpp:
- UIProcess/Authentication/AuthenticationDecisionListener.cpp:
- UIProcess/Authentication/WebCredential.cpp:
- UIProcess/Authentication/WebProtectionSpace.cpp:
- UIProcess/BackingStore.cpp:
- UIProcess/ChunkedUpdateDrawingAreaProxy.cpp:
- UIProcess/Downloads/DownloadProxy.cpp:
- UIProcess/DrawingAreaProxy.cpp:
- UIProcess/DrawingAreaProxyImpl.cpp:
- UIProcess/FindIndicator.cpp:
- UIProcess/GeolocationPermissionRequestManagerProxy.cpp:
- UIProcess/GeolocationPermissionRequestProxy.cpp:
- UIProcess/Launcher/ProcessLauncher.cpp:
- UIProcess/Launcher/ThreadLauncher.cpp:
- UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp:
- UIProcess/Launcher/gtk/ThreadLauncherGtk.cpp:
- UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
- UIProcess/Launcher/qt/ThreadLauncherQt.cpp:
- UIProcess/Launcher/win/ProcessLauncherWin.cpp:
- UIProcess/Launcher/win/ThreadLauncherWin.cpp:
- UIProcess/LayerBackedDrawingAreaProxy.cpp:
- UIProcess/Plugins/PluginInfoStore.cpp:
- UIProcess/Plugins/PluginProcessManager.cpp:
- UIProcess/Plugins/PluginProcessProxy.cpp:
- UIProcess/Plugins/gtk/PluginInfoStoreGtk.cpp:
- UIProcess/Plugins/qt/PluginInfoStoreQt.cpp:
- UIProcess/Plugins/win/PluginInfoStoreWin.cpp:
- UIProcess/ResponsivenessTimer.cpp:
- UIProcess/TiledDrawingAreaProxy.cpp:
- UIProcess/VisitedLinkProvider.cpp:
- UIProcess/WebBackForwardList.cpp:
- UIProcess/WebContext.cpp:
- UIProcess/WebContextInjectedBundleClient.cpp:
- UIProcess/WebContextMenuProxy.cpp:
- UIProcess/WebDatabaseManagerProxy.cpp:
- UIProcess/WebDatabaseManagerProxyClient.cpp:
- UIProcess/WebDownloadClient.cpp:
- UIProcess/WebEditCommandProxy.cpp:
- UIProcess/WebFindClient.cpp:
- UIProcess/WebFormClient.cpp:
- UIProcess/WebFormSubmissionListenerProxy.cpp:
- UIProcess/WebFrameListenerProxy.cpp:
- UIProcess/WebFramePolicyListenerProxy.cpp:
- UIProcess/WebFrameProxy.cpp:
- UIProcess/WebGeolocationManagerProxy.cpp:
- UIProcess/WebGeolocationProvider.cpp:
- UIProcess/WebHistoryClient.cpp:
- UIProcess/WebInspectorProxy.cpp:
- UIProcess/WebLoaderClient.cpp:
- UIProcess/WebNavigationData.cpp:
- UIProcess/WebOpenPanelResultListenerProxy.cpp:
- UIProcess/WebPageContextMenuClient.cpp:
- UIProcess/WebPageGroup.cpp:
- UIProcess/WebPageProxy.cpp:
- UIProcess/WebPolicyClient.cpp:
- UIProcess/WebPreferences.cpp:
- UIProcess/WebProcessManager.cpp:
- UIProcess/WebProcessProxy.cpp:
- UIProcess/WebResourceLoadClient.cpp:
- UIProcess/WebUIClient.cpp:
- UIProcess/cf/WebBackForwardListCF.cpp:
- UIProcess/cf/WebPageProxyCF.cpp:
- UIProcess/cf/WebPreferencesCF.cpp:
- UIProcess/gtk/TextCheckerGtk.cpp:
- UIProcess/gtk/WebInspectorGtk.cpp:
- UIProcess/gtk/WebPageProxyGtk.cpp:
- UIProcess/gtk/WebPreferencesGtk.cpp:
- UIProcess/qt/ChunkedUpdateDrawingAreaProxyQt.cpp:
- UIProcess/qt/TextCheckerQt.cpp:
- UIProcess/qt/TiledDrawingAreaProxyQt.cpp:
- UIProcess/qt/TiledDrawingAreaTileQt.cpp:
- UIProcess/qt/WebContextMenuProxyQt.cpp:
- UIProcess/qt/WebContextQt.cpp:
- UIProcess/qt/WebInspectorProxyQt.cpp:
- UIProcess/qt/WebPageProxyQt.cpp:
- UIProcess/qt/WebPopupMenuProxyQt.cpp:
- UIProcess/qt/WebPreferencesQt.cpp:
- UIProcess/win/ChunkedUpdateDrawingAreaProxyWin.cpp:
- UIProcess/win/LayerBackedDrawingAreaProxyWin.cpp:
- UIProcess/win/TextCheckerWin.cpp:
- UIProcess/win/WebContextMenuProxyWin.cpp:
- UIProcess/win/WebContextWin.cpp:
- UIProcess/win/WebInspectorProxyWin.cpp:
- UIProcess/win/WebPageProxyWin.cpp:
- UIProcess/win/WebPopupMenuProxyWin.cpp:
- UIProcess/win/WebView.cpp:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/Authentication/AuthenticationManager.cpp:
- WebProcess/Downloads/Download.cpp:
- WebProcess/Downloads/DownloadManager.cpp:
- WebProcess/Downloads/cf/DownloadCFNet.cpp:
- WebProcess/Downloads/curl/DownloadCurl.cpp:
- WebProcess/Downloads/qt/DownloadQt.cpp:
- WebProcess/Geolocation/GeolocationPermissionRequestManager.cpp:
- WebProcess/Geolocation/WebGeolocationManager.cpp:
- WebProcess/InjectedBundle/API/c/WKBundle.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleBackForwardList.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleBackForwardListItem.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleHitTestResult.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleNodeHandle.cpp:
- WebProcess/InjectedBundle/API/c/WKBundlePage.cpp:
- WebProcess/InjectedBundle/API/c/WKBundlePageGroup.cpp:
- WebProcess/InjectedBundle/API/c/WKBundlePageOverlay.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleRangeHandle.cpp:
- WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.cpp:
- WebProcess/InjectedBundle/DOM/InjectedBundleNodeHandle.cpp:
- WebProcess/InjectedBundle/DOM/InjectedBundleRangeHandle.cpp:
- WebProcess/InjectedBundle/InjectedBundle.cpp:
- WebProcess/InjectedBundle/InjectedBundleBackForwardList.cpp:
- WebProcess/InjectedBundle/InjectedBundleBackForwardListItem.cpp:
- WebProcess/InjectedBundle/InjectedBundleClient.cpp:
- WebProcess/InjectedBundle/InjectedBundleHitTestResult.cpp:
- WebProcess/InjectedBundle/InjectedBundlePageContextMenuClient.cpp:
- WebProcess/InjectedBundle/InjectedBundlePageEditorClient.cpp:
- WebProcess/InjectedBundle/InjectedBundlePageFormClient.cpp:
- WebProcess/InjectedBundle/InjectedBundlePageLoaderClient.cpp:
- WebProcess/InjectedBundle/InjectedBundlePageUIClient.cpp:
- WebProcess/InjectedBundle/InjectedBundleScriptWorld.cpp:
- WebProcess/InjectedBundle/gtk/InjectedBundleGtk.cpp:
- WebProcess/InjectedBundle/mac/InjectedBundleMac.cpp:
- WebProcess/InjectedBundle/qt/InjectedBundleQt.cpp:
- WebProcess/InjectedBundle/win/InjectedBundleWin.cpp:
- WebProcess/Plugins/Netscape/JSNPMethod.cpp:
- WebProcess/Plugins/Netscape/JSNPObject.cpp:
- WebProcess/Plugins/Netscape/NPJSObject.cpp:
- WebProcess/Plugins/Netscape/NPRuntimeObjectMap.cpp:
- WebProcess/Plugins/Netscape/NPRuntimeUtilities.cpp:
- WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp:
- WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
- WebProcess/Plugins/Netscape/NetscapePluginStream.cpp:
- WebProcess/Plugins/Netscape/gtk/NetscapePluginGtk.cpp:
- WebProcess/Plugins/Netscape/qt/NetscapePluginQt.cpp:
- WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
- WebProcess/Plugins/Plugin.cpp:
- WebProcess/Plugins/PluginProcessConnection.cpp:
- WebProcess/Plugins/PluginProcessConnectionManager.cpp:
- WebProcess/Plugins/PluginProxy.cpp:
- WebProcess/Plugins/PluginView.cpp:
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
- WebProcess/WebCoreSupport/WebContextMenuClient.cpp:
- WebProcess/WebCoreSupport/WebDatabaseManager.cpp:
- WebProcess/WebCoreSupport/WebDragClient.cpp:
- WebProcess/WebCoreSupport/WebEditorClient.cpp:
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
- WebProcess/WebCoreSupport/WebGeolocationClient.cpp:
- WebProcess/WebCoreSupport/WebInspectorClient.cpp:
- WebProcess/WebCoreSupport/WebInspectorFrontendClient.cpp:
- WebProcess/WebCoreSupport/WebPlatformStrategies.cpp:
- WebProcess/WebCoreSupport/WebPopupMenu.cpp:
- WebProcess/WebCoreSupport/WebSearchPopupMenu.cpp:
- WebProcess/WebCoreSupport/gtk/WebContextMenuClientGtk.cpp:
- WebProcess/WebCoreSupport/gtk/WebPopupMenuGtk.cpp:
- WebProcess/WebCoreSupport/qt/WebContextMenuClientQt.cpp:
- WebProcess/WebCoreSupport/qt/WebErrorsQt.cpp:
- WebProcess/WebCoreSupport/qt/WebFrameNetworkingContext.cpp:
- WebProcess/WebCoreSupport/qt/WebPopupMenuQt.cpp:
- WebProcess/WebCoreSupport/win/WebContextMenuClientWin.cpp:
- WebProcess/WebCoreSupport/win/WebErrorsWin.cpp:
- WebProcess/WebCoreSupport/win/WebPopupMenuWin.cpp:
- WebProcess/WebKitMain.cpp:
- WebProcess/WebPage/ChunkedUpdateDrawingArea.cpp:
- WebProcess/WebPage/DecoderAdapter.cpp:
- WebProcess/WebPage/DrawingArea.cpp:
- WebProcess/WebPage/DrawingAreaImpl.cpp:
- WebProcess/WebPage/EncoderAdapter.cpp:
- WebProcess/WebPage/FindController.cpp:
- WebProcess/WebPage/LayerBackedDrawingArea.cpp:
- WebProcess/WebPage/PageOverlay.cpp:
- WebProcess/WebPage/TiledDrawingArea.cpp:
- WebProcess/WebPage/WebBackForwardListProxy.cpp:
- WebProcess/WebPage/WebContextMenu.cpp:
- WebProcess/WebPage/WebEditCommand.cpp:
- WebProcess/WebPage/WebFrame.cpp:
- WebProcess/WebPage/WebInspector.cpp:
- WebProcess/WebPage/WebOpenPanelResultListener.cpp:
- WebProcess/WebPage/WebPage.cpp:
- WebProcess/WebPage/WebPageGroupProxy.cpp:
- WebProcess/WebPage/gtk/WebInspectorGtk.cpp:
- WebProcess/WebPage/mac/ChunkedUpdateDrawingAreaMac.cpp:
- WebProcess/WebPage/qt/ChunkedUpdateDrawingAreaQt.cpp:
- WebProcess/WebPage/qt/TiledDrawingAreaQt.cpp:
- WebProcess/WebPage/qt/WebInspectorQt.cpp:
- WebProcess/WebPage/qt/WebPageQt.cpp:
- WebProcess/WebPage/win/ChunkedUpdateDrawingAreaWin.cpp:
- WebProcess/WebPage/win/LayerBackedDrawingAreaWin.cpp:
- WebProcess/WebPage/win/WebInspectorWin.cpp:
- WebProcess/WebPage/win/WebPageWin.cpp:
- WebProcess/WebProcess.cpp:
- WebProcess/gtk/WebProcessGtk.cpp:
- WebProcess/gtk/WebProcessMainGtk.cpp:
- WebProcess/qt/WebProcessMainQt.cpp:
- WebProcess/qt/WebProcessQt.cpp:
- WebProcess/win/WebProcessMainWin.cpp:
- WebProcess/win/WebProcessWin.cpp:
- config.h: Copied from Source/WebKit2/WebKit2Prefix.h.
- win/WebKit2Common.vsprops:
- 9:30 PM Changeset in webkit [76915] by
-
- 3 edits3 adds in trunk
2011-01-27 Abhishek Arya <inferno@chromium.org>
Reviewed by Dan Bernstein.
Recalc table sections if needed before calculating the first line
box baseline.
https://bugs.webkit.org/show_bug.cgi?id=53265
When we try to calculate the baseline position of a table cell,
we recurse through all the child sibling boxes (when children are
non inline) and add their first linebox baseline values. If one of
the children is a table with pending section recalc, we will access
wrong table section values. We recalc table sections if it is needed.
Test: fast/table/recalc-section-first-body-crash-main.html
- rendering/RenderTable.cpp: (WebCore::RenderTable::firstLineBoxBaseline):
2011-01-27 Abhishek Arya <inferno@chromium.org>
Reviewed by Dan Bernstein.
Tests that we do not crash when calculating the first line box
baseline for the table.
https://bugs.webkit.org/show_bug.cgi?id=53265
- fast/table/recalc-section-first-body-crash-main-expected.txt: Added.
- fast/table/recalc-section-first-body-crash-main.html: Added.
- fast/table/resources/recalc-section-first-body-crash.html: Added.
- 8:26 PM Changeset in webkit [76914] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Adrienne Walker <enne@google.com>
Reviewed by Kenneth Russell.
[chromium] Add CRASH calls to further debug tiled compositor memcpy crash.
https://bugs.webkit.org/show_bug.cgi?id=52379
Test: LayoutTests/compositing (to verify these weren't triggered)
- platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::invalidateRect): (WebCore::LayerTilerChromium::update):
- 8:14 PM Changeset in webkit [76913] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [STYLES] Cancelled suggestion of a property name results in a visual artifact
https://bugs.webkit.org/show_bug.cgi?id=53242
- inspector/front-end/StylesSidebarPane.js: (WebInspector.StylePropertyTreeElement.prototype):
- 7:42 PM Changeset in webkit [76912] by
-
- 6 edits in trunk/Source
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76891.
http://trac.webkit.org/changeset/76891
https://bugs.webkit.org/show_bug.cgi?id=53280
Makes every layout test crash (Requested by othermaciej on
#webkit).
- page/EventHandler.cpp:
- page/EventHandler.h:
- rendering/RenderObject.cpp: (WebCore::RenderObject::styleDidChange):
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76891.
http://trac.webkit.org/changeset/76891
https://bugs.webkit.org/show_bug.cgi?id=53280
Makes every layout test crash (Requested by othermaciej on
#webkit).
- Misc/WebIconDatabase.mm: (-[ThreadEnabler threadEnablingSelector:]): (importToWebCoreFormat):
- 7:30 PM Changeset in webkit [76911] by
-
- 4 edits8 deletes in trunk
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed, rolling out r76839.
http://trac.webkit.org/changeset/76839
https://bugs.webkit.org/show_bug.cgi?id=49744
broke pixel tests
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed, rolling out r76839.
http://trac.webkit.org/changeset/76839
https://bugs.webkit.org/show_bug.cgi?id=49744
broke pixel tests
- editing/selection/caret-painting-after-paste-undo-rtl.html: Removed.
- editing/selection/caret-painting-after-paste-undo.html: Removed.
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Removed.
- 7:18 PM Changeset in webkit [76910] by
-
- 2 edits1 add in branches/safari-533.20-branch/LayoutTests
Merge r64815.
- 7:18 PM Changeset in webkit [76909] by
-
- 6 edits1 copy1 move3 adds2 deletes in branches/safari-533.20-branch
Merge r64379.
- 7:09 PM Changeset in webkit [76908] by
-
- 9 edits in trunk
2011-01-27 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
execCommand("Paste") doesn't work in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=52785
Unskip paste tests, except the ones that still fail.
- platform/mac-wk2/Skipped:
2011-01-27 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
execCommand("Paste") doesn't work in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=52785
Thread through the new JavaScriptCanAccessClipboard setting.
- Shared/WebPreferencesStore.h:
- UIProcess/API/C/WKPreferences.cpp: (WKPreferencesSetJavaScriptCanAccessClipboard): (WKPreferencesGetJavaScriptCanAccessClipboard):
- UIProcess/API/C/WKPreferences.h:
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::updatePreferences):
2011-01-27 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
execCommand("Paste") doesn't work in WebKitTestRunner
https://bugs.webkit.org/show_bug.cgi?id=52785
Enable both of the settings needed to allow paste.
- WebKitTestRunner/TestController.cpp: (WTR::TestController::resetStateToConsistentValues):
- 7:08 PM Changeset in webkit [76907] by
-
- 4 edits4 adds in branches/safari-533.20-branch
Merge r75168.
- 7:01 PM Changeset in webkit [76906] by
-
- 5 edits16 adds in branches/safari-533.20-branch
Merge r74954.
- 6:56 PM Changeset in webkit [76905] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r74787.
- 6:46 PM Changeset in webkit [76904] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r75519.
- 6:41 PM Changeset in webkit [76903] by
-
- 3 edits2 adds in trunk
2011-01-27 Emil A Eklund <eae@chromium.org>
Reviewed by Darin Adler.
contentEditable formatBlock crashes on divs with contenteditable="false"
https://bugs.webkit.org/show_bug.cgi?id=53263
Add test for executing a formatBlock command on a selection containing an
element with contenteditable=false.
- editing/execCommand/format-block-contenteditable-false-expected.txt: Added.
- editing/execCommand/format-block-contenteditable-false.html: Added.
2011-01-27 Emil A Eklund <eae@chromium.org>
Reviewed by Darin Adler.
contentEditable formatBlock crashes on divs with contenteditable="false"
https://bugs.webkit.org/show_bug.cgi?id=53263
Check if editableRootForPosition returns null for position.
Test: editing/execCommand/format-block-contenteditable-false.html
- editing/FormatBlockCommand.cpp: (WebCore::FormatBlockCommand::formatRange):
- 6:39 PM Changeset in webkit [76902] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r69936.
- 6:35 PM Changeset in webkit [76901] by
-
- 3 edits3 adds in branches/safari-533.20-branch
Merge r72625.
- 6:32 PM Changeset in webkit [76900] by
-
- 3 edits8 adds in branches/safari-533.20-branch
Merge r71256.
- 6:29 PM Changeset in webkit [76899] by
-
- 6 edits4 adds in branches/safari-533.20-branch
Merge r74084.
- 6:26 PM Changeset in webkit [76898] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Darin Adler.
Remove RenderMedia members that aren't used.
https://bugs.webkit.org/show_bug.cgi?id=53245
Refactoring, no change in behavior, so no new tests.
- rendering/RenderMedia.h: Removed unused member variables.
- 6:24 PM Changeset in webkit [76897] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r70517.
- 6:22 PM Changeset in webkit [76896] by
-
- 3 edits in branches/safari-533.20-branch/LayoutTests
Merge r72830.
- 6:21 PM Changeset in webkit [76895] by
-
- 3 edits2 moves6 adds in branches/safari-533.20-branch
Merge r72817.
- 6:20 PM Changeset in webkit [76894] by
-
- 3 edits in trunk/Source/JavaScriptCore
2011-01-27 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Add WTFString method to compare equality with Vector<UChar>
https://bugs.webkit.org/show_bug.cgi?id=53266
I'm planning to use this method in the new XSS filter implementation,
but it seems generally useful.
- wtf/text/StringImpl.h: (WTF::equalIgnoringNullity):
- wtf/text/WTFString.h: (WTF::equalIgnoringNullity):
- 6:18 PM Changeset in webkit [76893] by
-
- 5 edits in trunk/Source
2011-01-27 Michael Saboff <msaboff@apple.com>
Potentially Unsafe HashSet of RuntimeObject* in RootObject definition
https://bugs.webkit.org/show_bug.cgi?id=53271
Added new isValid() methods to check if a contained object in
a WeakGCMap is valid when using an unchecked iterator.
- runtime/WeakGCMap.h: (JSC::WeakGCMap::isValid):
2011-01-27 Michael Saboff <msaboff@apple.com>
Reviewed by Darin Adler.
Potentially Unsafe HashSet of RuntimeObject* in RootObject definition
https://bugs.webkit.org/show_bug.cgi?id=53271
Precautionary change.
Changed RootObject to use WeakGCMap instead of HashSet.
Found will looking for another issue, but can't produce a test case
that is problematic. THerefore there aren't any new tests.
- bridge/runtime_root.cpp: (JSC::Bindings::RootObject::invalidate): (JSC::Bindings::RootObject::addRuntimeObject): (JSC::Bindings::RootObject::removeRuntimeObject):
- bridge/runtime_root.h:
- 6:15 PM Changeset in webkit [76892] by
-
- 33 edits in trunk
2011-01-27 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Rename Typed Array slice() to subset()
https://bugs.webkit.org/show_bug.cgi?id=53273
- bindings/js/JSArrayBufferViewHelper.h: (WebCore::constructArrayBufferView):
- bindings/v8/custom/V8ArrayBufferViewCustom.h: (WebCore::constructWebGLArray):
- html/canvas/Float32Array.cpp: (WebCore::Float32Array::subset):
- html/canvas/Float32Array.h:
- html/canvas/Float32Array.idl:
- html/canvas/Int16Array.cpp: (WebCore::Int16Array::subset):
- html/canvas/Int16Array.h:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.cpp: (WebCore::Int32Array::subset):
- html/canvas/Int32Array.h:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.cpp: (WebCore::Int8Array::subset):
- html/canvas/Int8Array.h:
- html/canvas/Int8Array.idl:
- html/canvas/TypedArrayBase.h: (WebCore::TypedArrayBase::subsetImpl):
- html/canvas/Uint16Array.cpp: (WebCore::Uint16Array::subset):
- html/canvas/Uint16Array.h:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.cpp: (WebCore::Uint32Array::subset):
- html/canvas/Uint32Array.h:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.cpp: (WebCore::Uint8Array::subset):
- html/canvas/Uint8Array.h:
- html/canvas/Uint8Array.idl:
2011-01-27 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Rename Typed Array slice() to subset()
https://bugs.webkit.org/show_bug.cgi?id=53273
- fast/canvas/webgl/array-setters.html:
- fast/canvas/webgl/array-unit-tests-expected.txt:
- fast/canvas/webgl/array-unit-tests.html:
- fast/canvas/webgl/draw-elements-out-of-bounds-expected.txt:
- fast/canvas/webgl/draw-elements-out-of-bounds.html:
- fast/canvas/webgl/webgl-array-invalid-ranges-expected.txt:
- fast/canvas/webgl/webgl-array-invalid-ranges.html:
- 6:12 PM Changeset in webkit [76891] by
-
- 5 edits in trunk/Source
2011-01-27 Darin Adler <Darin Adler>
Reviewed by Dan Bernstein.
Changing cursor style has no effect until the mouse moves
https://bugs.webkit.org/show_bug.cgi?id=14344
rdar://problem/7563712
No tests added because we don't have infrastructure for testing actual cursor
changes (as opposed to cursor style computation) at this time. We might add it later.
- page/EventHandler.cpp: (WebCore::EventHandler::dispatchFakeMouseMoveEventSoon): Added.
- page/EventHandler.h: Ditto.
- rendering/RenderObject.cpp: (WebCore::areNonIdenticalCursorListsEqual): Added. (WebCore::areCursorsEqual): Added. (WebCore::RenderObject::styleDidChange): Call dispatchFakeMouseMoveEventSoon if cursor styles changed.
- 6:10 PM Changeset in webkit [76890] by
-
- 6 edits in branches/safari-533.20-branch/WebKit/mac
Merge r76191.
- 6:03 PM Changeset in webkit [76889] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Finnur Thorarinsson <finnur.webkit@gmail.com>
Reviewed by Ojan Vafai.
This addresses a regression introduced by r75784, as described in:
https://bugs.webkit.org/show_bug.cgi?id=53176
The problem is that originalEndContainer and originalEndOffset was
meant to capture the end of the document, but was being assigned after
a call to searchRange->setStart() (when scoping is restarted), which can
result in the Range being collapsed to start (thereby assigning the
wrong value to the Container/Offset pair).
This code is never triggered by layout tests, but I'm adding a regressiono
test on the Chromium side for this.
- src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::scopeStringMatches):
- 6:03 PM Changeset in webkit [76888] by
-
- 5 edits2 adds in branches/safari-533.20-branch
Merge r72969.
- 5:57 PM Changeset in webkit [76887] by
-
- 4 edits4 adds in branches/safari-533.20-branch
Merge r60992.
- 5:55 PM Changeset in webkit [76886] by
-
- 7 edits in branches/safari-533.20-branch
Merge r68923.
- 5:52 PM Changeset in webkit [76885] by
-
- 3 edits3 adds in branches/safari-533.20-branch
Merge r74287.
- 5:52 PM Changeset in webkit [76884] by
-
- 3 edits in branches/safari-533.20-branch/WebCore
Merge r74286.
- 5:51 PM Changeset in webkit [76883] by
-
- 3 edits2 adds in trunk
2011-01-27 Leo Yang <leo.yang@torchmobile.com.cn>
Reviewed by Dirk Schulze.
SVG Use Cycle is not detected
https://bugs.webkit.org/show_bug.cgi?id=52544
Test for indirect <use> recursion. This test passes if
no crash occurs.
- svg/custom/recursive-use2-expected.txt: Added.
- svg/custom/recursive-use2.svg: Added.
2011-01-27 Leo Yang <leo.yang@torchmobile.com.cn>
Reviewed by Dirk Schulze.
SVG Use Cycle is not detected
https://bugs.webkit.org/show_bug.cgi?id=52544
We should check if SVGUseElement::buildInstanceTree finds problem
for every child node. If it finds problem for any children we must
return immediately because otherwise the foundProblem variable may
be rewritten to false.
Test: svg/custom/recursive-use2.svg
- svg/SVGUseElement.cpp: (WebCore::SVGUseElement::buildInstanceTree):
- 5:48 PM Changeset in webkit [76882] by
-
- 3 edits3 adds in branches/safari-533.20-branch
Merge r72644.
- 5:48 PM Changeset in webkit [76881] by
-
- 5 edits3 adds in branches/safari-533.20-branch
Merge r71925.
- 5:41 PM Changeset in webkit [76880] by
-
- 2 edits in branches/safari-533.20-branch/WebCore
Merge r72013.
- 5:38 PM Changeset in webkit [76879] by
-
- 3 edits2 adds in branches/safari-533.20-branch
Merge r70473.
- 5:36 PM Changeset in webkit [76878] by
-
- 3 edits in branches/safari-533.20-branch/WebCore
Merge r70550.
- 5:33 PM Changeset in webkit [76877] by
-
- 2 edits in branches/safari-533.20-branch/WebCore
Merge r72304.
- 5:29 PM Changeset in webkit [76876] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
Define GC3D types to match GL types and use them in WebGraphicsContext3D
https://bugs.webkit.org/show_bug.cgi?id=51947
- public/WebGraphicsContext3D.h:
- 5:27 PM Changeset in webkit [76875] by
-
- 9 edits1 delete in branches/safari-533.20-branch/WebCore
<rdar://problem/8796252> Use WTF's StringBuffer.h.
Patch by Yongjun Zhang <yongjun_zhang@apple.com> on 2010-10-19.
Reviewed by Aaron Golden.
- css/CSSParser.cpp:
- dom/Document.cpp:
- platform/Length.cpp:
- platform/text/StringBuffer.h: Removed.
- platform/text/StringBuilder.cpp:
- platform/text/TextCodecLatin1.cpp:
- platform/text/TextCodecUTF16.cpp:
- platform/text/TextCodecUserDefined.cpp:
- rendering/RenderText.cpp:
- 5:26 PM Changeset in webkit [76874] by
-
- 3 edits2 adds in trunk
2011-01-27 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
texSubImage2D's format/type needs to match the internalformat/type from the previous texImage2D call
https://bugs.webkit.org/show_bug.cgi?id=53054
- fast/canvas/webgl/tex-sub-image-2d-bad-args-expected.txt: Added.
- fast/canvas/webgl/tex-sub-image-2d-bad-args.html: Added.
2011-01-27 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
texSubImage2D's format/type needs to match the internalformat/type from the previous texImage2D call
https://bugs.webkit.org/show_bug.cgi?id=53054
Test: fast/canvas/webgl/tex-sub-image-2d-bad-args.html
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::texSubImage2DBase): Check format/type match.
- 5:23 PM Changeset in webkit [76873] by
-
- 3 edits in trunk/Source/WebCore
2011-01-27 Yi Shen <yi.4.shen@nokia.com>, Tor Arne Vestbø <tor.arne.vestbo@nokia.com>
Reviewed by Andreas Kling.
[Qt] Add fullscreen media control button for html video
https://bugs.webkit.org/show_bug.cgi?id=51543
Implement media control fullscreen button for QtWebKit html5 video.
- css/mediaControlsQt.css: (video::-webkit-media-controls-fullscreen-button):
- platform/qt/RenderThemeQt.cpp: (WebCore::RenderThemeQt::paintMediaFullscreenButton):
- 5:22 PM Changeset in webkit [76872] by
-
- 35 edits in trunk/Source
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Remove FrameLoader::url() and update callers to use
Document::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
Refactor, no new tests.
- WebCore.exp.in:
- dom/Document.cpp: (WebCore::Document::processHttpEquiv): (WebCore::Document::removePendingSheet):
- history/CachedFrame.cpp: (WebCore::CachedFrameBase::CachedFrameBase):
- history/PageCache.cpp: (WebCore::logCanCacheFrameDecision): (WebCore::PageCache::canCachePageContainingThisFrame):
- html/HTMLFrameElementBase.cpp: (WebCore::HTMLFrameElementBase::isURLAllowed):
- html/HTMLPlugInImageElement.cpp: (WebCore::HTMLPlugInImageElement::allowedToLoadFrameURL):
- inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::inspectedURL):
- inspector/InspectorResourceAgent.cpp: (WebCore::buildObjectForFrame):
- loader/DocumentWriter.cpp: (WebCore::DocumentWriter::replaceDocument): (WebCore::DocumentWriter::deprecatedFrameEncoding):
- loader/FrameLoader.cpp:
- loader/FrameLoader.h:
- loader/HistoryController.cpp: (WebCore::HistoryController::updateForStandardLoad): (WebCore::HistoryController::updateForRedirectWithLockedBackForwardList): (WebCore::HistoryController::updateForSameDocumentNavigation):
- loader/NavigationScheduler.cpp: (WebCore::ScheduledHistoryNavigation::fire): (WebCore::NavigationScheduler::scheduleLocationChange): (WebCore::NavigationScheduler::scheduleRefresh):
- page/FrameView.cpp: (WebCore::FrameView::updateControlTints):
- page/Location.cpp: (WebCore::Location::url): (WebCore::Location::setProtocol): (WebCore::Location::setHost): (WebCore::Location::setHostname): (WebCore::Location::setPort): (WebCore::Location::setPathname): (WebCore::Location::setSearch): (WebCore::Location::setHash): (WebCore::Location::reload):
- page/Page.cpp: (WebCore::Page::goToItem):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- ewk/ewk_frame.cpp: (ewk_frame_uri_changed):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- webkit/webkitwebview.cpp: (webkit_web_view_get_icon_uri):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- WebCoreSupport/FrameLoaderClientHaiku.cpp: (WebCore::FrameLoaderClientHaiku::dispatchDidFinishDocumentLoad):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- WebView/WebView.mm: (-[WebView _dispatchDidReceiveIconFromWebFrame:]):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- Api/qwebframe.cpp: (QWebFrame::url):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- WebFrame.cpp: (WebFrame::url):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- WebKitSupport/FrameLoaderClientWx.cpp: (WebCore::FrameLoaderClientWx::dispatchDidFinishDocumentLoad):
2011-01-27 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Use Document::url() instead of FrameLoader::url().
https://bugs.webkit.org/show_bug.cgi?id=41165
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::dispatchDidChangeLocationWithinPage): (WebKit::WebFrameLoaderClient::dispatchDidPushStateWithinPage): (WebKit::WebFrameLoaderClient::dispatchDidReplaceStateWithinPage): (WebKit::WebFrameLoaderClient::dispatchDidPopStateWithinPage):
- WebProcess/WebPage/WebFrame.cpp: (WebKit::WebFrame::url):
- 5:19 PM Changeset in webkit [76871] by
-
- 3 edits in trunk/Source/WebKit/win
Fix scrollbars in Safari's Downloads window and Bookmarks view by implementing two needed functions from ScrollableArea.
Patch by Sam Weinig <sam@webkit.org> on 2011-01-27
Reviewed by Adam Roben.
- WebScrollBar.cpp:
(WebScrollBar::horizontalScrollbar): Return the WebCore::Scrollbar if
we are a horizontal scrollbar.
(WebScrollBar::verticalScrollbar): Return the WebCore::Scrollbar if we
are a vertical scrollbar.
- WebScrollBar.h:
- 5:18 PM Changeset in webkit [76870] by
-
- 3 edits in branches/safari-533.20-branch/WebCore
Merge r68715.
- 5:10 PM Changeset in webkit [76869] by
-
- 2 edits in branches/safari-533.20-branch/WebCore
Merge r61181.
- 5:07 PM Changeset in webkit [76868] by
-
- 2 edits5 adds in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed rebaselines for Chromium Mac and Windows.
[chromium] fast/repaint/select-option-background-color.html fails on Windows and Mac
https://bugs.webkit.org/show_bug.cgi?id=53260
- platform/chromium-mac/fast/repaint/select-option-background-color-expected.checksum: Added.
- platform/chromium-mac/fast/repaint/select-option-background-color-expected.png: Added.
- platform/chromium-win/fast/repaint/select-option-background-color-expected.checksum: Added.
- platform/chromium-win/fast/repaint/select-option-background-color-expected.png: Added.
- platform/chromium-win/fast/repaint/select-option-background-color-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 5:02 PM Changeset in webkit [76867] by
-
- 5 edits1 add in branches/safari-533.20-branch
Merge r75851.
- 4:58 PM Changeset in webkit [76866] by
-
- 3 edits in trunk/Source/WebCore
2011-01-27 Stephen White <senorblanco@chromium.org>
Reviewed by Darin Adler.
Fix performance regression in ImageQualityController::objectDestroyed().
https://bugs.webkit.org/show_bug.cgi?id=52645
In r72282, I inadvertently introduced this regression by using a
linear search through the hash map on object destruction. This was
because the hash key consisted of both object pointer and layer id,
but on object destruction we only know the object pointer, requiring
a search to find all the layers.
By replacing the hash map with two nested hash maps, where the outer key
is the object and the inner key is the layer, we can find all the
relevant data for an object in one hash lookup.
- rendering/RenderBoxModelObject.cpp: Replace the (object,layer)->size HashMap with object->layer and layer->size HashMaps. (WebCore::ImageQualityController::isEmpty): Implement isEmpty() for the outer HashMap. (WebCore::ImageQualityController::removeLayer): When a layer is removed, remove it from the inner hash map. (WebCore::ImageQualityController::set): Implement set(): if the inner map exists, set the layer->size tuple directly. If not, create a new inner map, set the tuple, and insert it in the outer map. (WebCore::ImageQualityController::objectDestroyed): Look up the object in the outer map only. (WebCore::ImageQualityController::highQualityRepaintTimerFired): Cosmetic changes for the renamed now-outer hash map. (WebCore::ImageQualityController::shouldPaintAtLowQuality): Do both outer and inner hash map lookups. Call set() to add/update entries to the hash maps. keyDestroyed() is now removeLayer(). (WebCore::imageQualityController): Make the ImageQualityController a file-static global, so it can be created and destroyed on the fly. (WebCore::RenderBoxModelObject::~RenderBoxModelObject): If there is no ImageQualityController, don't call objectDestroyed(). If it's empty, delete it.
- rendering/RenderImage.cpp: (WebCore::RenderImage::paintIntoRect): Also pass the Image* as the (void*) layer, since 0 is not a valid HashMap key.
- 4:55 PM Changeset in webkit [76865] by
-
- 8 edits in branches/safari-533.20-branch
Merge r71426.
- 4:50 PM Changeset in webkit [76864] by
-
- 3 edits in trunk/Source/WebCore
2011-01-27 Adrienne Walker <enne@google.com>
Reviewed by James Robinson.
[chromium] Tiled compositor crashes if compositing turned off mid-paint
https://bugs.webkit.org/show_bug.cgi?id=53198
- platform/graphics/chromium/LayerRendererChromium.cpp: (WebCore::LayerRendererChromium::drawLayers):
- platform/graphics/chromium/LayerTilerChromium.cpp: (WebCore::LayerTilerChromium::update): (WebCore::LayerTilerChromium::draw):
- 4:49 PM Changeset in webkit [76863] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Zhenyao Mo <zmo@google.com>
Unreviewed, roll webkit chromium rev from 72673 to 72894.
Also, added gmock section in DEPS to pull down gmock.
- DEPS:
- 4:36 PM Changeset in webkit [76862] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Alexey Marinichev <amarinichev@chromium.org>
Reviewed by Kenneth Russell.
Add a callback to WebGraphicsContext3D that is called when a context is lost
https://bugs.webkit.org/show_bug.cgi?id=53153
- public/WebGraphicsContext3D.h: (WebKit::WebGraphicsContext3D::setContextLostCallback):
- 4:25 PM Changeset in webkit [76861] by
-
- 6 edits3 adds in branches/safari-533.20-branch
Merge r73623.
- 4:21 PM Changeset in webkit [76860] by
-
- 5 edits in trunk/Tools
2011-01-27 Jacob Dinu <dinu.jacob@nokia.com>
Reviewed by Andreas Kling.
[Qt] QtTestBrowser: User input lost when toggling use of QGraphicsView
https://bugs.webkit.org/show_bug.cgi?id=48440
Preserve user input when toggling use of QGraphicsView
- QtTestBrowser/launcherwindow.cpp: (LauncherWindow::initializeView): (LauncherWindow::loadFinished):
- QtTestBrowser/launcherwindow.h:
- QtTestBrowser/mainwindow.cpp: (MainWindow::addressUrl):
- QtTestBrowser/mainwindow.h:
- 4:14 PM Changeset in webkit [76859] by
-
- 5 edits in trunk/Source/WebCore
2011-01-27 Carol Szabo <carol.szabo@nokia.com>
Reviewed by David Hyatt.
A corrupted counter tree is created when renderers are added to the
tree bypassing RenderObject::addChild
https://bugs.webkit.org/show_bug.cgi?id=51270
No new tests. This patch reimplements the fix for bugs 43812 and
51637 and hence all tests are already there as part of the original
fixes for those bugs.
- rendering/RenderCounter.cpp: (WebCore::findPlaceForCounter): Removed old workaround as this patch hopefully fixes the real problem.
- rendering/RenderObject.cpp: (WebCore::RenderObject::addChild): Removed call to counter updater as it was moved to a lower level. (WebCore::RenderObject::destroy): Moved attached counter nodes destruction to after the node is removed from the tree.
- rendering/RenderObjectChildList.cpp: (WebCore::RenderObjectChildList::removeChildNode): (WebCore::RenderObjectChildList::appendChildNode): (WebCore::RenderObjectChildList::insertChildNode): Added notifications to the Counter system such that the CounterForest reflects the changes to the RendererTree.
- rendering/RenderWidget.cpp: (WebCore::RenderWidget::destroy): Applied the same changes as for RenderObject::destroy() since RenderObject::destroy() is not called from here.
- 3:40 PM Changeset in webkit [76858] by
-
- 6 edits1 copy1 add in trunk/Source/WebCore
Add WKCACFViewLayerTreeHost
This is a class that derives from CACFLayerTreeHost and uses a WKCACFView to render.
Fixes <http://webkit.org/b/53251> <rdar://problem/8925496> CACFLayerTreeHost should use
WKCACFView for rendering
- WebCore.vcproj/WebCore.vcproj: Added WKCACFViewLayerTreeHost.{cpp,h}.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp:
(WebCore::CACFLayerTreeHost::acceleratedCompositingAvailable): Make the test window have a
non-zero size. WKCACFView will always say it can't render if you pass it a 0-sized window,
so we need a non-empty window to perform a valid test.
(WebCore::CACFLayerTreeHost::create): First try to create a WKCACFViewLayerTreeHost, then
fall back to a LegacyCACFLayerTreeHost.
(WebCore::CACFLayerTreeHost::flushPendingLayerChangesNow): Moved code to react to the
context flush from here...
(WebCore::CACFLayerTreeHost::contextDidChange): ...to here. Derived classes are required to
call this function whenever changes are flushed to the context.
- platform/graphics/ca/win/CACFLayerTreeHost.h: Added contextDidChange.
- platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp:
(WebCore::LegacyCACFLayerTreeHost::createRenderer):
(WebCore::LegacyCACFLayerTreeHost::resize):
Changed to use flushContext instead of flushing the context manually so that we will always
notify the base class when the context gets flushed.
(WebCore::LegacyCACFLayerTreeHost::flushContext): Added a call to contextDidChange so the
base class will know what happened. Moved code to schedule a render from here...
(WebCore::LegacyCACFLayerTreeHost::contextDidChange): ...to here.
- platform/graphics/ca/win/LegacyCACFLayerTreeHost.h: Added contextDidChange.
- platform/graphics/ca/win/WKCACFViewLayerTreeHost.cpp: Added.
(WebCore::WKCACFViewLayerTreeHost::create): If WebKitQuartzCoreAdditions, which provides
WKCACFView, isn't present, bail. Otherwise allocate and return a new host.
(WebCore::WKCACFViewLayerTreeHost::WKCACFViewLayerTreeHost): Initialize members.
(WebCore::WKCACFViewLayerTreeHost::updateViewIfNeeded): Update the view if we previously
marked that we needed to do so, and flush the context if our layer's bounds have changed.
(WebCore::WKCACFViewLayerTreeHost::contextDidChangeCallback): Call through to
contextDidChange.
(WebCore::WKCACFViewLayerTreeHost::contextDidChange): Tell the WKCACFView to start rendering
(if we didn't already), then call up to the base class.
(WebCore::WKCACFViewLayerTreeHost::initializeContext): Set the context's user data, the
view's layer, and hook up our "context did change" callback.
(WebCore::WKCACFViewLayerTreeHost::resize): Mark that the view needs to be updated the next
time we paint.
(WebCore::WKCACFViewLayerTreeHost::createRenderer): Update our view and return whether it is
able to render or not.
(WebCore::WKCACFViewLayerTreeHost::destroyRenderer): Clear out all the info we passed down
to the view.
(WebCore::WKCACFViewLayerTreeHost::lastCommitTime): Call through to the view.
(WebCore::WKCACFViewLayerTreeHost::flushContext): Ditto.
(WebCore::WKCACFViewLayerTreeHost::paint): Update the view so it will draw at the right
size, then call up to the base class.
(WebCore::WKCACFViewLayerTreeHost::render): Invalidate the view using the passed-in dirty
rects, then ask it to draw.
- platform/graphics/ca/win/WKCACFViewLayerTreeHost.h: Copied from Source/WebCore/platform/graphics/ca/win/LegacyCACFLayerTreeHost.h.
- 3:40 PM Changeset in webkit [76857] by
-
- 2 edits in branches/chromium/648/LayoutTests
Merge 76816 - 2011-01-27 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
back-during-onload-hung-page.php causes Chromium WebKit bot to fail
https://bugs.webkit.org/show_bug.cgi?id=53220
Reduces the timeout on a script that shouldn't finish during a test.
This avoids problems in one of the Chromium WebKit builders.
- http/tests/history/resources/back-during-onload-hung-page.php: Reduce timeout.
TBR=rniwa@webkit.org
Review URL: http://codereview.chromium.org/6280020
- 3:39 PM Changeset in webkit [76856] by
-
- 3 edits2 adds in trunk/Source/WebCore
Move LegacyCACFLayerTreeHost into its own files
More preparation for <http://webkit.org/b/53251> <rdar://problem/8925496> CACFLayerTreeHost
Reviewed by Simon Fraser.
- WebCore.vcproj/WebCore.vcproj: Added LegacyCACFLayerTreeHost.{cpp,h}.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp: Moved code from here to new files.
- platform/graphics/ca/win/LegacyCACFLayerTreeHost.cpp: Added.
- platform/graphics/ca/win/LegacyCACFLayerTreeHost.h: Added.
- 3:33 PM Changeset in webkit [76855] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Mihai Parparita <mihaip@chromium.org>
Unreviewed, fixed upstream Chromium build
r76844 should have rolled back Chromium DEPS to 72673, not 72637.
- DEPS:
- 3:29 PM Changeset in webkit [76854] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Patrick Gansterer <Patrick Gansterer>
Unreviewed WinCE build fix for r76824.
- platform/wince/DragDataWinCE.cpp: (WebCore::DragData::dragDataMap):
- 3:26 PM Changeset in webkit [76853] by
-
- 3 edits in trunk/Source/WebCore
Split CACFLayerTreeHost into base and derived classes
The derived class, LegacyCACFLayerTreeHost, contains all the D3D-related code. A later patch
will add a new derived class that replaces the D3D code with a different rendering API.
For now, LegacyCACFLayerTreeHost lives in CACFLayerTreeHost.cpp. This keeps the diff a
little smaller. A later patch will move it to its own source files.
Preparation for <http://webkit.org/b/53251> <rdar://problem/8925496> CACFLayerTreeHost
should use WKCACFView for rendering
Reviewed by Simon Fraser.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp:
(WebCore::CACFLayerTreeHost::acceleratedCompositingAvailable): Clear the window before
destroying the host, as that is now the API contract that clients must fulfill.
(WebCore::LegacyCACFLayerTreeHost::create): Added. Simple creator.
(WebCore::CACFLayerTreeHost::create): Now instantiates a LegacyCACFLayerTreeHost. Calls the
new initialize function to perform initialization that has to happen after the vtable has
been set up.
(WebCore::LegacyCACFLayerTreeHost::LegacyCACFLayerTreeHost):
(WebCore::CACFLayerTreeHost::CACFLayerTreeHost):
(WebCore::LegacyCACFLayerTreeHost::initializeContext):
(WebCore::CACFLayerTreeHost::initialize):
Moved some initialization code from the CACFLayerTreeHost constructor into these new
functions.
(WebCore::LegacyCACFLayerTreeHost::~LegacyCACFLayerTreeHost): Added. Moved code here from
~CACFLayerTreeHost.
(WebCore::CACFLayerTreeHost::~CACFLayerTreeHost): Rather than clearing the window at this
point (which would be too late, since we won't be able to call into the derived class's
virtual functions), just assert that it has already been cleared (or was never set in the
first place).
(WebCore::LegacyCACFLayerTreeHost::createRenderer): Renamed from
CACFLayerTreeHost::createRenderer, and changed to use getters instead of accessing
CACFLayerTreeHost's data members directly.
(WebCore::LegacyCACFLayerTreeHost::destroyRenderer):
(WebCore::CACFLayerTreeHost::destroyRenderer):
Moved some code to the new LegacyCACFLayerTreeHost function.
(WebCore::LegacyCACFLayerTreeHost::resize):
(WebCore::LegacyCACFLayerTreeHost::renderTimerFired):
Moved these functions to LegacyCACFLayerTreeHost.
(WebCore::LegacyCACFLayerTreeHost::paint):
(WebCore::CACFLayerTreeHost::paint):
Moved some code to the new LegacyCACFLayerTreeHost function.
(WebCore::LegacyCACFLayerTreeHost::render):
(WebCore::LegacyCACFLayerTreeHost::renderSoon):
Moved these functions to LegacyCACFLayerTreeHost.
(WebCore::CACFLayerTreeHost::flushPendingLayerChangesNow): Moved code to flush the context
from here...
(WebCore::LegacyCACFLayerTreeHost::flushContext): ...to this new function.
(WebCore::LegacyCACFLayerTreeHost::lastCommitTime): Moved code to get the last commit time
to this new function...
(WebCore::CACFLayerTreeHost::notifyAnimationsStarted): ...from here.
(WebCore::LegacyCACFLayerTreeHost::initD3DGeometry):
(WebCore::LegacyCACFLayerTreeHost::resetDevice):
Moved these functions to LegacyCACFLayerTreeHost.
- platform/graphics/ca/win/CACFLayerTreeHost.h: Made some functions virtual, removed some
members that have moved to LegacyCACFLayerTreeHost, added some getters used by
LegacyCACFLayerTreeHost.
- 3:25 PM Changeset in webkit [76852] by
-
- 9 edits1 add in trunk/Source
Move CACFLayerTreeHostClient to its own header file
Rubber-stamped by Steve Falkenburg.
Source/WebCore:
- WebCore.vcproj/WebCore.vcproj: Added CACFLayerTreeHostClient.h. Also let VS have its way
with the file.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp: Added new #include.
- platform/graphics/ca/win/CACFLayerTreeHost.h: Removed CACFLayerTreeHostClient.
- platform/graphics/ca/win/CACFLayerTreeHostClient.h: Added.
- platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp: Moved some #includes here
from the header file.
- platform/graphics/win/MediaPlayerPrivateFullscreenWindow.h: Replaced broader #includes
with more specific ones, plus a forward-declaration.
Source/WebKit/win:
Trim down #includes in WebView.h
- WebView.cpp: Moved some #includes here from the header file.
- WebView.h: Replaced some broader #includes with more specific ones, plus a
forward-declaration.
- 3:23 PM Changeset in webkit [76851] by
-
- 2 edits in branches/safari-533.20-branch/JavaScriptCore
Merge r72209.
- 3:23 PM Changeset in webkit [76850] by
-
- 3 edits in branches/safari-533.20-branch/JavaScriptCore
Merge r69414.
- 3:23 PM Changeset in webkit [76849] by
-
- 7 edits in branches/safari-533.20-branch
Merge r72114.
- 3:23 PM Changeset in webkit [76848] by
-
- 4 edits in branches/safari-533.20-branch
Merge r71867.
- 3:23 PM Changeset in webkit [76847] by
-
- 2 edits in branches/safari-533.20-branch/JavaScriptCore
Merge r65920.
- 3:20 PM Changeset in webkit [76846] by
-
- 4 edits in trunk/LayoutTests
2011-01-27 Dirk Schulze <krit@webkit.org>
Unreviewed rebaseline.
SVG animation of Paths with segments of different coordinate modes on begin and end
https://bugs.webkit.org/show_bug.cgi?id=52984
Rebaseline for SL. HTML were created by make-script-test-wrappers now.
Skip added tests on WebKit2 because of missing eventSender.
- platform/mac-wk2/Skipped:
- svg/animations/animate-path-nested-transforms-expected.txt:
- svg/animations/animate-text-nested-transforms-expected.txt:
- 3:03 PM Changeset in webkit [76845] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 James Simonsen <simonjam@chromium.org>
Reviewed by Tony Chang.
[Chromium] Simplify small caps logic in complex text on linux
https://bugs.webkit.org/show_bug.cgi?id=53207
Test: fast/text/atsui-multiple-renderers.html
fast/text/atsui-small-caps-punctuation-size.html
- platform/graphics/chromium/ComplexTextControllerLinux.cpp: (WebCore::ComplexTextController::nextScriptRun): Remove redundant logic. Case changes in a text run imply FontData changes. (WebCore::ComplexTextController::setupFontForScriptRun): Update comment to reflect above.
- 2:59 PM Changeset in webkit [76844] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Zhenyao Mo <zmo@google.com>
Unreviewed, roll back webkit chromium rev to 72637.
- DEPS:
- 2:50 PM Changeset in webkit [76843] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Adam Barth <abarth@webkit.org>
In which I attempt to fix the EFL build.
- CMakeLists.txt:
- 2:43 PM Changeset in webkit [76842] by
-
- 3 edits in trunk/LayoutTests
2011-01-27 Mihai Parparita <mihaip@chromium.org>
Unreviewed Chromium rebaseline for fast/text/text-letter-spacing.html
with changes matching the mac ones done by r76739.
- platform/chromium-win/fast/text/text-letter-spacing-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:39 PM Changeset in webkit [76841] by
-
- 13 edits in branches/safari-533.20-branch
Merge r74887.
- 2:38 PM Changeset in webkit [76840] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-27 Zhenyao Mo <zmo@google.com>
Unreviewed.
Roll Webkit Chromium rev from 72637 to 72868.
- DEPS:
- 2:38 PM Changeset in webkit [76839] by
-
- 4 edits8 adds in trunk
2011-01-25 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Updating the expected result for 5408255 and adding tests for caret positioning at the
beginning and end of RenderBoxes.
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
- editing/selection/caret-painting-after-paste-undo-rtl.html: Added.
- editing/selection/caret-painting-after-paste-undo.html: Added.
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Added.
2011-01-25 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Adding border and padding to the calculation of the local caret rect for RenderBoxes.
Corrected for mistake in r76625
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
Tests: editing/selection/caret-painting-after-paste-undo-rtl.html
editing/selection/caret-painting-after-paste-undo.html
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
- 2:30 PM Changeset in webkit [76838] by
-
- 2 edits3 adds in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium rebaseline and text expectation update.
- platform/chromium-linux/fast/repaint/select-option-background-color-expected.checksum: Added.
- platform/chromium-linux/fast/repaint/select-option-background-color-expected.png: Added.
- platform/chromium-linux/fast/repaint/select-option-background-color-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 2:13 PM Changeset in webkit [76837] by
-
- 4 edits in trunk/LayoutTests
2011-01-27 Mihai Parparita <mihaip@chromium.org>
Unreviewed rebaseline of fast/inline/continuation-outlines-with-layers.html
afte r76726.
- platform/mac/fast/inline/continuation-outlines-with-layers-expected.txt:
- platform/chromium-win/fast/inline/continuation-outlines-with-layers-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:02 PM Changeset in webkit [76836] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76825.
http://trac.webkit.org/changeset/76825
https://bugs.webkit.org/show_bug.cgi?id=53256
"caused crashes on GTK and chromium" (Requested by rniwa on
#webkit).
- rendering/RenderBoxModelObject.cpp: (WebCore::ImageQualityController::keyDestroyed): (WebCore::ImageQualityController::objectDestroyed): (WebCore::ImageQualityController::highQualityRepaintTimerFired): (WebCore::ImageQualityController::shouldPaintAtLowQuality): (WebCore::imageQualityController): (WebCore::RenderBoxModelObject::~RenderBoxModelObject):
- 1:52 PM Changeset in webkit [76835] by
-
- 14 edits2 adds in trunk/Source/WebCore
2011-01-27 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Generalize the mechanism view-source uses to remember the source for an HTMLToken
https://bugs.webkit.org/show_bug.cgi?id=53200
Currently view-source tracks the source associated with each HTMLToken.
We want to re-use this mechanism for the new XSS auditor. This patch
moves this code into its own class so it can be shared between the
view-source parser and the general HTML parser. This patch also add
support for tracking the source of tokens that span document.write
boundaries.
No functional change. This code change is somewhat tested by our
view-source layout tests.
- Android.mk:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- Fun with updating build files.
- html/parser/HTMLDocumentParser.cpp:
(WebCore::HTMLDocumentParser::pumpTokenizer):
- Teach HTMLDocumentParser to track the source for HTMLTokens. Currently, this information isn't used, but it will be shortly. I ran the HTML parser benchmark and this change didn't have a measurable effect.
- html/parser/HTMLDocumentParser.h:
- Composite in the HTMLSourceTracker.
- html/parser/HTMLSourceTracker.cpp: Added.
(WebCore::HTMLSourceTracker::HTMLSourceTracker):
(WebCore::HTMLSourceTracker::start):
(WebCore::HTMLSourceTracker::end):
- This function should eventualy be folded into HTMLTokenizer.
(WebCore::HTMLSourceTracker::sourceForToken):
- html/parser/HTMLSourceTracker.h: Added.
- html/parser/HTMLToken.h:
- Now HTMLTokens always have a start index of zero. To do the job of the old start index, this patch introduces the notion of a baseOffset. Unlike the start index (which was used as the base offset for all the other indicies), the baseOffset can change over the lifetime of the token. We need the flexibility to change the offset for tokens that span document.write boundaries. Values are now normalized to zero-offset when stored.
(WebCore::HTMLToken::clear):
(WebCore::HTMLToken::setBaseOffset):
(WebCore::HTMLToken::end):
(WebCore::HTMLToken::beginAttributeName):
(WebCore::HTMLToken::endAttributeName):
(WebCore::HTMLToken::beginAttributeValue):
(WebCore::HTMLToken::endAttributeValue):
- html/parser/HTMLViewSourceParser.cpp:
- Updates the HTMLViewSourceParser to use the new HTMLSourceTracker.
(WebCore::HTMLViewSourceParser::pumpTokenizer):
(WebCore::HTMLViewSourceParser::append):
(WebCore::HTMLViewSourceParser::sourceForToken):
- This function now just calls through to HTMLSourceTracker.
- html/parser/HTMLViewSourceParser.h:
- platform/text/SegmentedString.cpp: (WebCore::SegmentedString::currentColumn): (WebCore::SegmentedString::setCurrentPosition):
- platform/text/SegmentedString.h:
(WebCore::SegmentedString::numberOfCharactersConsumed):
- We need to handle the general case now. The "slow" version doesn't turn out to be any slower in practice anyway.
- 1:45 PM Changeset in webkit [76834] by
-
- 2 edits in trunk/Source/WebKit/qt
2011-01-27 Robert Hogan <robert@webkit.org>
Rubber-stamped by Andreas Kling.
[Qt] Style Fix: correct indentation in FrameLoadeClientQt:createPlugin
- WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::createPlugin):
- 1:35 PM Changeset in webkit [76833] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Encode/Decode hasPreciseScrollingDeltas bit in WebWheelEvent
https://bugs.webkit.org/show_bug.cgi?id=53254
- Shared/WebWheelEvent.cpp: (WebKit::WebWheelEvent::WebWheelEvent): Initialize m_phase and m_hasPreciseScrollingDeltas.
(WebKit::WebWheelEvent::encode):
(WebKit::WebWheelEvent::decode):
Add missing coding for m_hasPreciseScrollingDeltas.
- 1:32 PM Changeset in webkit [76832] by
-
- 2 edits in trunk/Source/WebCore
Fix all the builds.
- platform/ScrollView.cpp:
(WebCore::ScrollView::paintOverhangAreas): Add parameters.
- 1:23 PM Changeset in webkit [76831] by
-
- 5 edits in trunk/Source/WebCore
Add ability to do an unconstrained scroll on a ScrollView
https://bugs.webkit.org/show_bug.cgi?id=53249
Reviewed by Dave Hyatt.
- platform/ScrollView.cpp:
(WebCore::ScrollView::ScrollView):
Initialize m_constrainsScrollingToContentEdge to true.
(WebCore::ScrollView::setScrollOffset):
Only constrain the offset if the m_constrainsScrollingToContentEdge is set.
(WebCore::ScrollView::updateScrollbars):
Simplify expression converting an IntSize to an IntPoint.
(WebCore::ScrollView::paint):
Paint the overhang if there is any.
(WebCore::ScrollView::calculateOverhangAreasForPainting):
Calculate the overhang in viewport coordinates for painting.
- platform/ScrollView.h:
(WebCore::ScrollView::constrainsScrollingToContentEdge):
(WebCore::ScrollView::setConstrainsScrollingToContentEdge):
Add bit to control whether the scroll position should be constrained
to the content edge when set.
- platform/ScrollbarThemeComposite.cpp:
(WebCore::usedTotalSize):
(WebCore::ScrollbarThemeComposite::thumbPosition):
(WebCore::ScrollbarThemeComposite::thumbLength):
- platform/mac/ScrollbarThemeMac.mm:
(WebCore::ScrollbarThemeMac::paint):
Improve calculations of thumb size and position to take overhang into account.
- 1:11 PM QtWebKitSecurity created by
- 1:03 PM Changeset in webkit [76830] by
-
- 7 edits18 adds in trunk
2011-01-27 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation of Paths with segments of different coordinate modes on begin and end
https://bugs.webkit.org/show_bug.cgi?id=52984
Added tests to check the correct behavior on path animations, where the coordinate modes
of the start path differs from the one on the end path.
- svg/animations/animate-path-animation-Cc-Ss-expected.txt: Added.
- svg/animations/animate-path-animation-Cc-Ss.html: Added.
- svg/animations/animate-path-animation-Ll-Vv-Hh-expected.txt: Added.
- svg/animations/animate-path-animation-Ll-Vv-Hh.html: Added.
- svg/animations/animate-path-animation-Qq-Tt-expected.txt: Added.
- svg/animations/animate-path-animation-Qq-Tt.html: Added.
- svg/animations/animate-path-animation-cC-sS-inverse-expected.txt: Added.
- svg/animations/animate-path-animation-cC-sS-inverse.html: Added.
- svg/animations/animate-path-animation-lL-vV-hH-inverse-expected.txt: Added.
- svg/animations/animate-path-animation-lL-vV-hH-inverse.html: Added.
- svg/animations/animate-path-animation-qQ-tT-inverse-expected.txt: Added.
- svg/animations/animate-path-animation-qQ-tT-inverse.html: Added.
- svg/animations/animate-path-nested-transforms.html: Cleanup.
- svg/animations/animate-text-nested-transforms.html: Cleanup.
- svg/animations/resources/SVGAnimationTestCase.js: (shouldBeCloseEnough): For debug output of values with tolerance level. (startTest): (sampleAnimation):
- svg/animations/script-tests/animate-path-animation-Cc-Ss.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
- svg/animations/script-tests/animate-path-animation-Ll-Vv-Hh.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
- svg/animations/script-tests/animate-path-animation-Qq-Tt.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
- svg/animations/script-tests/animate-path-animation-cC-sS-inverse.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
- svg/animations/script-tests/animate-path-animation-lL-vV-hH-inverse.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
- svg/animations/script-tests/animate-path-animation-qQ-tT-inverse.js: Added. (sample1): (sample2): (sample3): (sample4): (executeTest):
2011-01-27 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation of Paths with segments of different coordinate modes on begin and end
https://bugs.webkit.org/show_bug.cgi?id=52984
At the moment we just support SVG path animations, if the number of segments on the given start path
is the same as the number of segments on the given end path. But a segment on a given position must be identical
on both paths as well. Not only the segment type, also the coordinate mode of the segments must be identical.
If MoveToRel is on the second position on the start path a MoveToRel must be on the second position
of the end path too. According to the SVG spec, at least the coordinate mode can differ. Means, if we have MoveToRel
in the start path, we can use MoveToAbs on the same position in the end path.
This patch fixes the blending code to follow the spec here. It was necessary to track the current position of
both paths, transform coordinates to the same coordinate mode and transform the resulting animation coordinate back
to the coordinate mode of either the start or the end path. Which mode is taken depends on the progress of the
animation.
Tests: svg/animations/animate-path-animation-Cc-Ss.html
svg/animations/animate-path-animation-Ll-Vv-Hh.html
svg/animations/animate-path-animation-Qq-Tt.html
svg/animations/animate-path-animation-cC-sS-inverse.html
svg/animations/animate-path-animation-lL-vV-hH-inverse.html
svg/animations/animate-path-animation-qQ-tT-inverse.html
- svg/SVGPathBlender.cpp: (WebCore::blendFloatPoint): (WebCore::blendAnimatedFloat): (WebCore::SVGPathBlender::blendAnimatedDimensionalFloat): (WebCore::SVGPathBlender::blendAnimatedFloatPoint): (WebCore::SVGPathBlender::blendMoveToSegment): (WebCore::SVGPathBlender::blendLineToSegment): (WebCore::SVGPathBlender::blendLineToHorizontalSegment): (WebCore::SVGPathBlender::blendLineToVerticalSegment): (WebCore::SVGPathBlender::blendCurveToCubicSegment): (WebCore::SVGPathBlender::blendCurveToCubicSmoothSegment): (WebCore::SVGPathBlender::blendCurveToQuadraticSegment): (WebCore::SVGPathBlender::blendCurveToQuadraticSmoothSegment): (WebCore::SVGPathBlender::blendArcToSegment): (WebCore::coordinateModeOfCommand): (WebCore::isSegmentEqual): (WebCore::SVGPathBlender::blendAnimatedPath): (WebCore::SVGPathBlender::cleanup):
- svg/SVGPathBlender.h:
- 12:53 PM Changeset in webkit [76829] by
-
- 4 edits in trunk/Tools
2011-01-27 Dirk Pranke <dpranke@chromium.org>
Reviewed by Mihai Parparita.
new-run-webkit-tests: turn off pixel tests correctly by default
for webkit-based ports. r70013 (bug 47510) used
port.set_option_default() to attempt to set default values, but
that didn't work correctly. I have removed set_option_default
for now since it was only being used in two places and in three
useless unit tests. There is a separate bug open to fix the
option parsing (48095), so this workaround is fine for now.
- Scripts/webkitpy/layout_tests/port/webkit.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/base_unittest.py:
- 12:47 PM Changeset in webkit [76828] by
-
- 4 edits2 adds in trunk
2011-01-27 Cris Neckar <cdn@chromium.org>
Reviewed by Dimitri Glazkov.
Clear the parent on a css keyframe's m_style when removing it from the stylesheet.
https://bugs.webkit.org/show_bug.cgi?id=52320
Test: fast/css/css-keyframe-style-crash.html
- css/CSSRuleList.cpp: (WebCore::CSSRuleList::deleteRule):
- css/WebKitCSSKeyframesRule.cpp: (WebCore::WebKitCSSKeyframesRule::~WebKitCSSKeyframesRule):
2011-01-27 Cris Neckar <cdn@chromium.org>
Reviewed by Dimitri Glazkov.
Test for crash when accessing a keyframe's style rule.
https://bugs.webkit.org/show_bug.cgi?id=52320
- fast/css/css-keyframe-style-crash-expected.txt: Added.
- fast/css/css-keyframe-style-crash.html: Added.
- 12:28 PM Changeset in webkit [76827] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium text expectation update.
- platform/chromium/test_expectations.txt: Apparently, video-size.html crashes on Linux due to crbug.com/71087.
- 12:02 PM Changeset in webkit [76826] by
-
- 3 edits4 adds in trunk
2011-01-27 Rob Buis <rwlbuis@gmail.com>
Reviewed by Kent Tamura.
Color changes to option elements in a select multiple aren't drawn immediately
https://bugs.webkit.org/show_bug.cgi?id=49790
Redirect style changes on <option> element to the owner <select> element.
Test: fast/repaint/select-option-background-color.html
- html/HTMLOptionElement.cpp: (WebCore::HTMLOptionElement::setRenderStyle):
- 11:58 AM Changeset in webkit [76825] by
-
- 2 edits in trunk/Source/WebCore
2011-01-19 Stephen White <senorblanco@chromium.org>
Reviewed by Darin Adler.
Fix performance regression in ImageQualityController::objectDestroyed().
https://bugs.webkit.org/show_bug.cgi?id=52645
In r72282, I inadvertently introduced this regression by using a
linear search through the hash map on object destruction. This was
because the hash key consisted of both object pointer and layer id,
but on object destruction we only know the object pointer, requiring
a search to find all the layers.
By replacing the hash map with two nested hash maps, where the outer key
is the object and the inner key is the layer, we can find all the
relevant data for an object in one hash lookup.
- rendering/RenderBoxModelObject.cpp: Replace the (object,layer)->size HashMap with object->layer and layer->size HashMaps. (WebCore::ImageQualityController::isEmpty): Implement isEmpty() for the outer HashMap. (WebCore::ImageQualityController::removeLayer): When a layer is removed, remove it from the inner hash map. (WebCore::ImageQualityController::set): Implement set(): if the inner map exists, set the layer->size tuple directly. If not, create a new inner map, set the tuple, and insert it in the outer map. (WebCore::ImageQualityController::objectDestroyed): Look up the object in the outer map only. (WebCore::ImageQualityController::highQualityRepaintTimerFired): Cosmetic changes for the renamed now-outer hash map. (WebCore::ImageQualityController::shouldPaintAtLowQuality): Do both outer and inner hash map lookups. Call set() to add/update entries to the hash maps. keyDestroyed() is now removeLayer(). (WebCore::imageQualityController): Make the ImageQualityController a file-static global, so it can be created and destroyed on the fly. (WebCore::RenderBoxModelObject::~RenderBoxModelObject): If there is no ImageQualityController, don't call objectDestroyed(). If it's empty, delete it.
- 11:51 AM Changeset in webkit [76824] by
-
- 15 edits in trunk/Source
Source/WebCore: WebKit2: add support for drag and drop on Windows
https://bugs.webkit.org/show_bug.cgi?id=52775
<rdar://problem/8514409>
Reviewed by Darin Adler and Adam Roben.
On Windows the access to the content being dragged is
provided via the IDataObject interface that is made available
to the window that registers itself as drop target.
Since this interface cannot be accessed from the WebProcess,
in every call to one of the methods of the IDropTarget interface
we serialize the content of the drag clipboard and send it over to
the WebProcess.
The bulk of this patch consists in the refactoring needed in DragData
and ClipboardWin classes to extract the data from the serialized object.
- platform/DragData.cpp:
- platform/DragData.h:
- platform/win/ClipboardUtilitiesWin.cpp:
(WebCore::getWebLocData):
(WebCore::getURL):
(WebCore::getPlainText):
(WebCore::getTextHTML):
(WebCore::getCFHTML):
(WebCore::fragmentFromFilenames):
(WebCore::containsFilenames):
(WebCore::fragmentFromHTML):
(WebCore::containsHTML):
(WebCore::getClipboardData):
- platform/win/ClipboardUtilitiesWin.h:
- platform/win/ClipboardWin.cpp:
(WebCore::Clipboard::create):
(WebCore::ClipboardWin::ClipboardWin):
(WebCore::ClipboardWin::getData):
(WebCore::ClipboardWin::types):
(WebCore::ClipboardWin::files):
(WebCore::ClipboardWin::hasData):
- platform/win/ClipboardWin.h:
(WebCore::ClipboardWin::create):
- platform/win/DragDataWin.cpp:
(WebCore::DragData::DragData):
(WebCore::DragData::containsURL):
(WebCore::DragData::dragDataMap):
(WebCore::DragData::asURL):
(WebCore::DragData::containsFiles):
(WebCore::DragData::asFilenames):
(WebCore::DragData::containsPlainText):
(WebCore::DragData::asPlainText):
(WebCore::DragData::canSmartReplace):
(WebCore::DragData::containsCompatibleContent):
(WebCore::DragData::asFragment):
Source/WebKit2: WebKit2: add support for drag and drop on Windows
https://bugs.webkit.org/show_bug.cgi?id=52775
<rdar://problem/8514409>
Reviewed by Darin Adler and Adam Roben.
On Windows the access to the content being dragged is
provided via the IDataObject interface that is made available
to the window that registers itself as drop target.
Since this interface cannot be accessed from the WebProcess,
in every call to one of the methods of the IDropTarget interface
we serialize the content of the drag clipboard and send it over to
the WebProcess. The implementation uses the same messages as the
Mac one, with slightly different parameters to pass the serialized
clipboard.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::performDragControllerAction): Added Windows
specific implementation.
- UIProcess/WebPageProxy.h:
- UIProcess/win/WebView.cpp:
(WebKit::WebView::WebView): Added dropTargetHelper object creation.
(WebKit::WebView::initialize): Added to register for drag/drop with out
refcount issues.
(WebKit::WebView::close):
(WebKit::WebView::windowReceivedMessage):
(WebKit::WebView::QueryInterface):
(WebKit::WebView::AddRef):
(WebKit::WebView::Release):
(WebKit::dragOperationToDragCursor):
(WebKit::WebView::keyStateToDragOperation):
(WebKit::WebView::DragEnter):
(WebKit::WebView::DragOver):
(WebKit::WebView::DragLeave):
(WebKit::WebView::Drop):
- UIProcess/win/WebView.h:
(WebKit::WebView::create):
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::performDragControllerAction):
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/WebPage.messages.in:
- 11:44 AM Changeset in webkit [76823] by
-
- 2 edits in branches/chromium/648/Source/WebCore
Merge 76637 - 2011-01-25 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Empty URLs are never display isolated
https://bugs.webkit.org/show_bug.cgi?id=53053
This check mirrors the check in the local case. There isn't a good way
to test this with a LayoutTest, but it is tested in Chromium (where
this registry is used).
- platform/SchemeRegistry.cpp: (WebCore::SchemeRegistry::shouldTreatURLSchemeAsDisplayIsolated):
TBR=abarth@webkit.org
Review URL: http://codereview.chromium.org/6312016
- 11:38 AM Changeset in webkit [76822] by
-
- 4 edits in trunk/Source
2011-01-27 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] Space characters in source document interfere with reported caret offset
https://bugs.webkit.org/show_bug.cgi?id=53033
Calculate caret offset from rendered text instead of from node contents.
- accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (objectAndOffsetUnignored): Calculate the caret offset based only on positions and ranges, instead of using the computed offset in the container node.
2011-01-27 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] Space characters in source document interfere with reported caret offset
https://bugs.webkit.org/show_bug.cgi?id=53033
New unit test to check the fix for this bug.
- tests/testatk.c: (testWebkitAtkCaretOffsetsAndExtranousWhiteSpaces): New. (main): Add new unit test.
- 11:36 AM Changeset in webkit [76821] by
-
- 14 edits in trunk/Source
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=53197
<rdar://problem/8895682> Make WebKit2 printing asynchronous
<rdar://problem/8899988> REGRESSION(WebKit2): Attempting to print WHATWG HTML spec shows
1-page blank preview
<rdar://problem/8900078> WebKit2 printing has a separate message exchange per page when
printing instead of printing all at once
- UIProcess/API/mac/WKPrintingView.h: Store a lot more cached information.
- UIProcess/API/mac/WKPrintingView.mm: (-[WKPrintingView _adjustPrintingMarginsForHeaderAndFooter]): Use PrintOperation stored in class. We generally want that now, because current operation will not be set up on other threads. (-[WKPrintingView _isPrintingPreview]): Added. Preview is different, because it can draw a placeholder - but actual printing need to wait until UI process has data. (-[WKPrintingView _updatePreview]): Force AppKit to update print preview when we have real data to replace placeholder with. (-[WKPrintingView _hasPageRects]): Return if page rects have already been computed. (-[WKPrintingView _expectedPreviewCallbackForRect:]): Find an existing request for this rect, if any. (pageDidDrawToPDF): Update preview - or if actually printing, release control to printing thread. (-[WKPrintingView _preparePDFDataForPrintingOnSecondaryThread]): Ask for a PDF document with pages the user asked to print. (pageDidComputePageRects): When web process returns page geometry data, we update preview to display a page count (which indirectly triggers a request for a preview). When actually printing, request a PDF right away, we'll need it later. (-[WKPrintingView _askPageToComputePageRects]): Ask web process for page geometry. (prepareDataForPrintingOnSecondaryThread): This function starts preparing all data necessary for actual printing on main thread. (-[WKPrintingView knowsPageRange:]): Changed to be async for preview, and to call main thread for actual printing. (-[WKPrintingView _pageForRect:]): Find page number for a given range, assuming that AppKit always asks for full pages. (-[WKPrintingView _drawPDFDocument:page:atPoint:]): A helper function to draw a PDF document. (-[WKPrintingView _drawPreview:]): Draw the whole page for preview. (-[WKPrintingView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:]): Draw the whole page for actual printing. (-[WKPrintingView _drawPageBorderWithSizeOnMainThread:]): Call drawPageBorderWithSize: with correct graphics context and print operation. (-[WKPrintingView drawPageBorderWithSize:]): Delegate work to main thread when called from a secondary one. (-[WKPrintingView _provideTotalScaleFactorForPrintOperation:]): Added an assertion that our stored NSPrintOperation isn't out of sync with reality. (-[WKPrintingView rectForPage:]): Handle the case where we don't have the data yet, drawing a placeholder. (-[WKPrintingView endDocument]): When page setup changes, we must reset all state.
- UIProcess/API/mac/WKView.mm: (-[WKView printOperationWithPrintInfo:forFrame:]): Tell NSPrintingView which operation it's serving, so that it knows it even when current operation isn't set.
- UIProcess/GenericCallback.h: (WebKit::ComputedPagesCallback::create): (WebKit::ComputedPagesCallback::~ComputedPagesCallback): (WebKit::ComputedPagesCallback::performCallbackWithReturnValue): (WebKit::ComputedPagesCallback::invalidate): (WebKit::ComputedPagesCallback::callbackID): (WebKit::ComputedPagesCallback::generateCallbackID): (WebKit::ComputedPagesCallback::ComputedPagesCallback): Added ComputedPagesCallback, which returns a vector of IntRects and a double. Hopefully, it will become a specialization of GenericCallback one day.
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::close): Added m_voidCallbacks - it looks like they were omitted by accident. (WebKit::WebPageProxy::computedPagesCallback): Added. (WebKit::WebPageProxy::processDidCrash): Added m_computedPagesCallbacks. (WebKit::WebPageProxy::computePagesForPrinting): Async now! (WebKit::WebPageProxy::drawRectToPDF): Ditto. (WebKit::WebPageProxy::drawPagesToPDF): Added.
- UIProcess/WebPageProxy.h:
- UIProcess/WebPageProxy.messages.in: Added ComputedPagesCallback.
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::beginPriting): Compute page rects right away - we'll need them in drawPagesToPDF(), which doesn't have a PrintInfo. (WebKit::WebPage::computePagesForPrinting): Send async response. (WebKit::WebPage::drawRectToPDF): This function used to draw into original location at frame coordinates, and now it draws at (0, 0). (WebKit::WebPage::drawPagesToPDF): Added - make a multi-page PDF.
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/WebPage.messages.in: Added DrawPagesToPDF.
- 11:24 AM Changeset in webkit [76820] by
-
- 5 edits2 adds in trunk
2011-01-27 David Grogan <dgrogan@google.com>
Reviewed by Jeremy Orlow.
initial support for close() in indexeddb backend
https://bugs.webkit.org/show_bug.cgi?id=53150
- storage/indexeddb/transaction-after-close-expected.txt: Added.
- storage/indexeddb/transaction-after-close.html: Added.
2011-01-27 David Grogan <dgrogan@google.com>
Reviewed by Jeremy Orlow.
initial support for close() in indexeddb backend
https://bugs.webkit.org/show_bug.cgi?id=53150
Test: storage/indexeddb/transaction-after-close.html
- storage/IDBDatabase.cpp: (WebCore::IDBDatabase::IDBDatabase): (WebCore::IDBDatabase::transaction): (WebCore::IDBDatabase::close):
- storage/IDBDatabase.h:
- storage/IDBDatabase.idl:
- storage/IDBDatabaseBackendImpl.cpp: (WebCore::IDBDatabaseBackendImpl::transaction): (WebCore::IDBDatabaseBackendImpl::close):
- 11:23 AM Changeset in webkit [76819] by
-
- 3 edits6 adds in trunk
2011-01-27 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation doesn't support calcMode discrete for number and color values.
https://bugs.webkit.org/show_bug.cgi?id=53189
Add support for calcMode discrete on number and color animation.
Tests: svg/animations/animate-color-calcMode-discrete.html
svg/animations/animate-number-calcMode-discrete.html
- svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::calculateAnimatedValue):
2011-01-27 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG animation doesn't support calcMode discrete for number and color values.
https://bugs.webkit.org/show_bug.cgi?id=53189
Test for correct behavior on animating numbers and colors with calcMode discrete.
- svg/animations/animate-color-calcMode-discrete-expected.txt: Added.
- svg/animations/animate-color-calcMode-discrete.html: Added.
- svg/animations/animate-number-calcMode-discrete-expected.txt: Added.
- svg/animations/animate-number-calcMode-discrete.html: Added.
- svg/animations/script-tests/animate-color-calcMode-discrete.js: Added. (sample1): (sample2): (executeTest):
- svg/animations/script-tests/animate-number-calcMode-discrete.js: Added. (sample1): (sample2): (executeTest):
- 11:18 AM Changeset in webkit [76818] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update for video tests.
- platform/chromium/test_expectations.txt:
- 11:16 AM Changeset in webkit [76817] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Alejandro G. Castro <alex@igalia.com>
Unreviewed GTK build fix after r76797.
- Shared/WebPreferencesStore.h: Use Qt fonts preference for the moment.
- 11:11 AM Changeset in webkit [76816] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Charlie Reis <creis@chromium.org>
Reviewed by Mihai Parparita.
back-during-onload-hung-page.php causes Chromium WebKit bot to fail
https://bugs.webkit.org/show_bug.cgi?id=53220
Reduces the timeout on a script that shouldn't finish during a test.
This avoids problems in one of the Chromium WebKit builders.
- http/tests/history/resources/back-during-onload-hung-page.php: Reduce timeout.
- 11:05 AM Changeset in webkit [76815] by
-
- 2 edits in trunk/Source/WebKit2
Allow pop-up menus to contain multiple items that have the same title.
Reviewed by Anders Carlsson.
- UIProcess/mac/WebPopupMenuProxyMac.mm:
(WebKit::WebPopupMenuProxyMac::populate): Set the item’s title after adding it rather than
when adding it, so that it will not replace any existing item with the same title.
- 10:58 AM Changeset in webkit [76814] by
-
- 5 edits2 adds in trunk
2011-01-26 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
shaderSource needs to preserve original source
https://bugs.webkit.org/show_bug.cgi?id=52833
- fast/canvas/webgl/gl-getshadersource-expected.txt: Added.
- fast/canvas/webgl/gl-getshadersource.html: Added.
2011-01-26 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
shaderSource needs to preserve original source
https://bugs.webkit.org/show_bug.cgi?id=52833
Test: fast/canvas/webgl/gl-getshadersource.html
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::getShaderParameter): Intercept SHADER_SOURCE_LENGTH. (WebCore::WebGLRenderingContext::getShaderSource): Intercept the call. (WebCore::WebGLRenderingContext::shaderSource): Cache the source.
- html/canvas/WebGLShader.cpp: Cache shader source. (WebCore::WebGLShader::WebGLShader):
- html/canvas/WebGLShader.h: Ditto. (WebCore::WebGLShader::getSource): (WebCore::WebGLShader::setSource):
- 10:52 AM Changeset in webkit [76813] by
-
- 2 edits in trunk/Source/WebKit/mac
Reverted an accidental change in r76561.
Rubber-stamped by Anders Carlsson.
- WebView/WebHTMLView.mm:
- 10:24 AM Changeset in webkit [76812] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, skip flaky test, needs further investigation on the failure.
[GTK] media/audio-delete-while-slider-thumb-clicked.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53247
- platform/gtk/Skipped:
- 10:09 AM Changeset in webkit [76811] by
-
- 2 edits in trunk/Tools
Trivial crash fix in WTR.
Rubber-stamped by Ariya Hidayat.
- WebKitTestRunner/TestController.cpp:
(WTR::TestController::initialize): Increase the size
of the vector by one to be able to store the null character.
- 9:32 AM Changeset in webkit [76810] by
-
- 2 edits in trunk/LayoutTests
fast/text/international/bidi-mirror-he-ar.html now passed on Windows in WebKit2.
Unreviewed.
- platform/win-wk2/Skipped:
- 9:26 AM Changeset in webkit [76809] by
-
- 2 edits in trunk/LayoutTests
Unreviewed.
Fix mistake in my previous commit; I accidentally copied the old mac results instead
of the new mac results for this test.
- platform/mac-wk2/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
- 9:05 AM Changeset in webkit [76808] by
-
- 1 edit in trunk/LayoutTests/ChangeLog
Unreviewed; Fixed change log entries because Chromium rebaselines are unreviewed but claimed to be reviewed.
- 8:58 AM Changeset in webkit [76807] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, rebaseline of the favicon-as-image test from the build
bot.
- platform/gtk/http/tests/misc/favicon-as-image-expected.txt:
- 8:55 AM Changeset in webkit [76806] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Another Unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt:
- 8:50 AM Changeset in webkit [76805] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt:
- 8:31 AM Changeset in webkit [76804] by
-
- 4 edits10 adds in trunk/LayoutTests
2011-01-27 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium rebaselines.
- platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Added.
- platform/chromium-mac/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Added.
- platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-9-expected.png:
- platform/chromium-mac/fast/text/justify-ideograph-complex-expected.checksum: Added.
- platform/chromium-mac/fast/text/justify-ideograph-complex-expected.png: Added.
- platform/chromium-mac/fast/text/justify-ideograph-simple-expected.checksum: Added.
- platform/chromium-mac/fast/text/justify-ideograph-simple-expected.png: Added.
- platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.checksum: Added.
- platform/chromium-mac/fast/text/justify-ideograph-vertical-expected.png: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Added.
- platform/chromium-mac/tables/mozilla/marvin/x_thead_align_justify-expected.png: Added.
- platform/chromium/test_expectations.txt:
- 8:29 AM Changeset in webkit [76803] by
-
- 2 edits in trunk/Tools
2011-01-27 Balazs Kelemen <kbalazs@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt][WK2] WTR should be initialized in the same way as DRT
https://bugs.webkit.org/show_bug.cgi?id=53240
- WebKitTestRunner/InjectedBundle/qt/ActivateFontsQt.cpp: (WTR::activateFonts): Added missing initialization steps.
- 7:55 AM Changeset in webkit [76802] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Patrick Gansterer <Patrick Gansterer>
Unreviewed WinCE build fix for r76743.
- platform/graphics/wince/FontWinCE.cpp: (WebCore::TextRunComponent::TextRunComponent):
- 7:38 AM Changeset in webkit [76801] by
-
- 1 edit1 add in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, GTK baselines for
svg/custom/pattern-referencing-preserve-aspect-ratio.svg added in r76274.
- platform/gtk/svg/custom/pattern-referencing-preserve-aspect-ratio-expected.txt: Added.
- 7:25 AM Changeset in webkit [76800] by
-
- 1 edit1 add in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, GTK baselines for
http/tests/misc/favicon-as-image.html which was unskipped in r76555.
- platform/gtk/http/tests/misc/favicon-as-image-expected.txt: Added.
- 7:11 AM Changeset in webkit [76799] by
-
- 1 edit1 add in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, GTK baselines for fast/dom/52776.html, follow-up of r76319.
- platform/gtk/fast/dom/52776-expected.txt: Added.
- 7:07 AM Changeset in webkit [76798] by
-
- 4 edits in trunk/Source/WebKit2
2011-01-27 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt][WK2] Add QWKPage APIs regarding engine process availability
https://bugs.webkit.org/show_bug.cgi?id=53237
QWKPage will now emit engineConnected() and engineDisconnected()
when the web process crashes and is relaunched respectively.
Also added QWKPage::isConnectedToEngine() for convenience.
- UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::QWKPagePrivate): (QWKPagePrivate::didRelaunchProcess): (QWKPagePrivate::processDidCrash): (QWKPage::isConnectedToEngine):
- UIProcess/API/qt/qwkpage.h:
- UIProcess/API/qt/qwkpage_p.h:
- 6:56 AM Changeset in webkit [76797] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-27 Balazs Kelemen <kbalazs@webkit.org>
Reviewed by Andreas Kling.
[Qt][WK2] Lots of layout test failures due to wrong font type
https://bugs.webkit.org/show_bug.cgi?id=53233
- Shared/WebPreferencesStore.h: Specialize default font families for Qt.
- 6:25 AM Changeset in webkit [76796] by
-
- 1 edit3 adds in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, new GTK baselines for fast/text/justify* tests
introduced in r76743.
- platform/gtk/fast/text/justify-ideograph-complex-expected.txt: Added.
- platform/gtk/fast/text/justify-ideograph-simple-expected.txt: Added.
- platform/gtk/fast/text/justify-ideograph-vertical-expected.txt: Added.
- 6:22 AM Changeset in webkit [76795] by
-
- 5 edits in trunk
2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: Closure and Global variable details automatically collapsing on each step through JavaScript code.
https://bugs.webkit.org/show_bug.cgi?id=53234
- inspector/debugger-expand-scope.html:
- inspector/debugger-proto-property.html:
2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: Closure and Global variable details automatically collapsing on each step through JavaScript code.
https://bugs.webkit.org/show_bug.cgi?id=53234
- inspector/front-end/ScopeChainSidebarPane.js: (WebInspector.ScopeChainSidebarPane): (WebInspector.ScopeChainSidebarPane.prototype.update):
- 6:14 AM Changeset in webkit [76794] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76789.
http://trac.webkit.org/changeset/76789
https://bugs.webkit.org/show_bug.cgi?id=53238
Broke GTK layout tests (Requested by podivilov on #webkit).
- inspector/front-end/ScopeChainSidebarPane.js: (WebInspector.ScopeChainSidebarPane): (WebInspector.ScopeChainSidebarPane.prototype.update):
- 6:07 AM Changeset in webkit [76793] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, fix typo introduced in r76783.
- platform/gtk/Skipped:
- 6:03 AM Changeset in webkit [76792] by
-
- 34 edits2 deletes in trunk
2011-01-27 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: store all settings related to the agents on the frontend side
https://bugs.webkit.org/show_bug.cgi?id=53174
- http/tests/inspector/console-xhr-logging.html: since the setting doesn't change on the front-end side there is no need to check it after modifying backend's value.
- inspector/report-protocol-errors.html: use the new signature of disableDebugger method.
2011-01-27 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: store all settings related to the agents on the frontend side
https://bugs.webkit.org/show_bug.cgi?id=53174
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.exp.in:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/ScriptDebugServer.cpp:
- bindings/js/ScriptDebugServer.h:
- bindings/js/ScriptProfiler.cpp:
- bindings/js/ScriptProfiler.h:
- bindings/v8/ScriptDebugServer.cpp:
- bindings/v8/ScriptDebugServer.h:
- bindings/v8/ScriptProfiler.cpp:
- bindings/v8/ScriptProfiler.h:
- inspector/Inspector.idl:
- inspector/InspectorAgent.cpp: profiler and debugger enablement state is now stored on the front-end side and will be pushed to the backend when the frontend is loaded. (WebCore::InspectorAgent::InspectorAgent): (WebCore::InspectorAgent::disconnectFrontend): (WebCore::InspectorAgent::restoreDebugger): (WebCore::InspectorAgent::restoreProfiler): (WebCore::InspectorAgent::enableProfiler): (WebCore::InspectorAgent::disableProfiler): (WebCore::InspectorAgent::showAndEnableDebugger): (WebCore::InspectorAgent::enableDebugger): (WebCore::InspectorAgent::disableDebugger):
- inspector/InspectorAgent.h:
- inspector/InspectorConsoleAgent.cpp: XHR failures will be logged to the console only if the front-end was opened during current browser session and XHR logging is turned on there. (WebCore::InspectorConsoleAgent::setMonitoringXHREnabled): (WebCore::InspectorConsoleAgent::setConsoleMessagesEnabled):
- inspector/InspectorDebuggerAgent.cpp:
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::identifierForInitialRequestImpl): (WebCore::InspectorInstrumentation::didLoadResourceFromMemoryCacheImpl):
- inspector/InspectorProfilerAgent.cpp: (WebCore::InspectorProfilerAgent::InspectorProfilerAgent): (WebCore::InspectorProfilerAgent::startUserInitiatedProfiling):
- inspector/InspectorSettings.cpp: Removed.
- inspector/InspectorSettings.h: Removed.
- inspector/InspectorState.cpp: (WebCore::InspectorState::InspectorState):
- inspector/InspectorState.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher.dispatcher.consoleMessagesCleared): (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher): (WebInspector.ConsoleView.prototype._handleContextMenuEvent.itemAction): (WebInspector.ConsoleView.prototype._handleContextMenuEvent):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._toggleProfiling):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._toggleDebugging):
- inspector/front-end/Settings.js: (WebInspector.Settings):
- inspector/front-end/inspector.js:
- 5:56 AM Changeset in webkit [76791] by
-
- 1 edit22 adds in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, new GTK baselines for fast/multicol tests as follow-up
of r76726.
- platform/gtk/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/column-rules-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/float-avoidance-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/float-multicol-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/float-paginate-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/nested-columns-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/column-rules-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/float-avoidance-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/float-multicol-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/float-paginate-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/nested-columns-expected.txt: Added.
- platform/gtk/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Added.
- 5:43 AM Changeset in webkit [76790] by
-
- 2 edits in trunk/Tools
2011-01-27 Joone Hur <joone.hur@collabora.co.uk>
Unreviewed.
Adding myself to committers.py.
- Scripts/webkitpy/common/config/committers.py:
- 5:41 AM WebKitGTK edited by
- (diff)
- 5:40 AM WebKitGTK/KeepingTheTreeGreen created by
- 5:01 AM Changeset in webkit [76789] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: Closure and Global variable details automatically collapsing on each step through JavaScript code.
https://bugs.webkit.org/show_bug.cgi?id=53234
- inspector/front-end/ScopeChainSidebarPane.js: (WebInspector.ScopeChainSidebarPane): (WebInspector.ScopeChainSidebarPane.prototype.update):
- 4:54 AM Changeset in webkit [76788] by
-
- 5 edits in trunk
2011-01-27 Alexander Pavlov <apavlov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Elements panel] Tooltip for relative links incorrectly identifies current URL
https://bugs.webkit.org/show_bug.cgi?id=53171
WebCore:
- inspector/front-end/inspector.js: (WebInspector.completeURL): Taught to understand partial href's that start with "?" (contain GET parameters only)
LayoutTests:
- inspector/styles-url-linkify-expected.txt:
- inspector/styles-url-linkify.html:
- 4:44 AM Changeset in webkit [76787] by
-
- 2 edits4 adds in trunk/LayoutTests
2011-01-27 Sergio Villar Senin <svillar@igalia.com>
Unreviewed.
New test expectations for http/tests/navigation/error404* in GTK.
- platform/gtk/Skipped:
- platform/gtk/http/tests/navigation/error404-basic-expected.txt: Added.
- platform/gtk/http/tests/navigation/error404-goback-expected.txt: Added.
- platform/gtk/http/tests/navigation/error404-subframeload-expected.txt: Added.
- 4:38 AM Changeset in webkit [76786] by
-
- 2 edits in trunk/Source/WebCore
2011-01-27 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
[V8] Crash in WebCore::addMessageToConsole
https://bugs.webkit.org/show_bug.cgi?id=53227
- bindings/v8/V8Proxy.cpp: check that the Frame where the error occured still has a page before getting a console object from it. (WebCore::V8Proxy::reportUnsafeAccessTo):
- 4:30 AM Changeset in webkit [76785] by
-
- 2 edits in trunk/Tools
[Qt] [Symbian] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
Patch by Laszlo Gombos <Laszlo Gombos> on 2011-01-27
Reviewed by Csaba Osztrogonác.
Fix the Symbian build after the project files
are moved to Source directory. On Symbian qmake
needs to run in the same directory where the main
pro files (WebKit.pro, Tools.pro) are located.
- Scripts/webkitdirs.pm: Change to the directory where the pro file
is located before running qmake for Symbian. Qmake on Symbian
does not properly honor the "-o" option, work it around by setting
the name of the Makefile to bld.inf.
- 3:57 AM Changeset in webkit [76784] by
-
- 13 edits in trunk/Source
2011-01-27 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove IDBCallbacks::onSuccess() used for null values.
https://bugs.webkit.org/show_bug.cgi?id=53178
Remove the IDBCallbacks::onSuccess() function that was used for
null values, and replace such calls with calls to
IDBCallBacks::onSuccess(SerializedScriptValue::nullValue())
instead.
No new functionality, so no new tests.
- storage/IDBCallbacks.h:
- storage/IDBCursorBackendImpl.cpp: (WebCore::IDBCursorBackendImpl::updateInternal): (WebCore::IDBCursorBackendImpl::continueFunctionInternal):
- storage/IDBIndexBackendImpl.cpp: (WebCore::IDBIndexBackendImpl::openCursorInternal):
- storage/IDBObjectStoreBackendImpl.cpp: (WebCore::IDBObjectStoreBackendImpl::deleteInternal): (WebCore::IDBObjectStoreBackendImpl::openCursorInternal):
- storage/IDBRequest.cpp:
- storage/IDBRequest.h:
2011-01-27 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove IDBCallbacks::onSuccess() used for null values.
https://bugs.webkit.org/show_bug.cgi?id=53178
Remove the IDBCallbacks::onSuccess() function that was used for
null values, and replace such calls with calls to
IDBCallBacks::onSuccess(SerializedScriptValue::nullValue())
instead.
- public/WebIDBCallbacks.h: (WebKit::WebIDBCallbacks::onSuccess):
- src/IDBCallbacksProxy.cpp:
- src/IDBCallbacksProxy.h:
- src/WebIDBCallbacksImpl.cpp:
- src/WebIDBCallbacksImpl.h:
- 3:54 AM Changeset in webkit [76783] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, skipping 2 more media tests.
[GStreamer] wrong media duration report in media/controls-after-reload.html
https://bugs.webkit.org/show_bug.cgi?id=51602
- platform/gtk/Skipped:
- 3:38 AM Changeset in webkit [76782] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
- platform/chromium/test_expectations.txt:
- 3:27 AM Changeset in webkit [76781] by
-
- 1 edit30 deletes in trunk/LayoutTests
2011-01-27 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
- platform/chromium-mac-leopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Removed.
- platform/chromium-mac-leopard/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Removed.
- platform/chromium-mac-leopard/fast/blockflow/vertical-baseline-alignment-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/blockflow/vertical-baseline-alignment-expected.png: Removed.
- platform/chromium-mac-leopard/fast/multicol/shadow-breaking-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-1-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-1-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-10-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-10-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-2-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-2-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-3-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-3-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-4-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-4-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-5-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-5-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-6-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-6-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-7-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-7-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-8-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-8-expected.png: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-9-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/repaint/line-flow-with-floats-9-expected.png: Removed.
- platform/chromium-mac-leopard/fast/text/complex-text-opacity-expected.checksum: Removed.
- platform/chromium-mac-leopard/fast/text/complex-text-opacity-expected.png: Removed.
- platform/chromium-mac-leopard/fast/text/complex-text-opacity-expected.txt: Removed.
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.checksum: Removed.
- platform/chromium-mac-leopard/tables/mozilla/marvin/x_thead_align_justify-expected.png: Removed.
- 3:13 AM Changeset in webkit [76780] by
-
- 1 edit in trunk/LayoutTests/ChangeLog
Unreviewed.
Fix mistake in my previous commit; I accidentally copied the old mac results instead
of the new mac results for this test.
- platform/mac-wk2/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
- 2:51 AM Changeset in webkit [76779] by
-
- 1 edit56 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for new passing tests introduced in r76726.
Compared to Mac png files and Mac expected files.
- platform/qt/fast/multicol/vertical-lr/border-padding-pagination-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/column-rules-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/column-rules-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/column-rules-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/float-avoidance-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/float-multicol-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/float-multicol-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/float-multicol-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/float-paginate-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/nested-columns-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/nested-columns-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/nested-columns-expected.txt: Added.
- platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Added.
- platform/qt/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/border-padding-pagination-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/column-rules-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/column-rules-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/column-rules-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/float-avoidance-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/float-multicol-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/float-multicol-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/float-multicol-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/float-paginate-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/nested-columns-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/nested-columns-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/nested-columns-expected.txt: Added.
- platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.checksum: Added.
- platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Added.
- platform/qt/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Added.
- 2:25 AM Changeset in webkit [76778] by
-
- 3 edits in trunk/Tools
[Qt] Add simple zooming features to MiniBrowser
https://bugs.webkit.org/show_bug.cgi?id=53231
Reviewed by Andreas Kling.
Add View menu and Zoom In, Zoom Out, Zoom Reset actions to MiniBrowser.
- MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
(BrowserWindow::zoomIn):
(BrowserWindow::zoomOut):
(BrowserWindow::resetZoom):
(BrowserWindow::updateUserAgentList):
(BrowserWindow::applyZoom):
- MiniBrowser/qt/BrowserWindow.h:
- 2:00 AM Changeset in webkit [76777] by
-
- 4 edits in trunk
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76773.
http://trac.webkit.org/changeset/76773
https://bugs.webkit.org/show_bug.cgi?id=53230
breaks multiple GTK media tests (Requested by philn-tp on
#webkit).
- platform/gtk/Skipped:
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76773.
http://trac.webkit.org/changeset/76773
https://bugs.webkit.org/show_bug.cgi?id=53230
breaks multiple GTK media tests (Requested by philn-tp on
#webkit).
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::mimeTypeCache):
- 1:41 AM Changeset in webkit [76776] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectaion change.
- platform/chromium/test_expectations.txt:
- 1:34 AM Changeset in webkit [76775] by
-
- 31 edits1 copy1 add in trunk/Source/WebCore
2011-01-27 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76770.
http://trac.webkit.org/changeset/76770
https://bugs.webkit.org/show_bug.cgi?id=53229
Some inspector tests fail (Requested by yurys on #webkit).
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.exp.in:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::isDebuggerAlwaysEnabled):
- bindings/js/ScriptDebugServer.h:
- bindings/js/ScriptProfiler.cpp: (WebCore::ScriptProfiler::isProfilerAlwaysEnabled):
- bindings/js/ScriptProfiler.h:
- bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::isDebuggerAlwaysEnabled):
- bindings/v8/ScriptDebugServer.h:
- bindings/v8/ScriptProfiler.cpp: (WebCore::ScriptProfiler::isProfilerAlwaysEnabled):
- bindings/v8/ScriptProfiler.h:
- inspector/Inspector.idl:
- inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::InspectorAgent): (WebCore::InspectorAgent::disconnectFrontend): (WebCore::InspectorAgent::restoreDebugger): (WebCore::InspectorAgent::restoreProfiler): (WebCore::InspectorAgent::ensureSettingsLoaded): (WebCore::InspectorAgent::enableProfiler): (WebCore::InspectorAgent::disableProfiler): (WebCore::InspectorAgent::showAndEnableDebugger): (WebCore::InspectorAgent::enableDebugger): (WebCore::InspectorAgent::disableDebugger):
- inspector/InspectorAgent.h: (WebCore::InspectorAgent::settings):
- inspector/InspectorConsoleAgent.cpp: (WebCore::InspectorConsoleAgent::setMonitoringXHREnabled): (WebCore::InspectorConsoleAgent::setConsoleMessagesEnabled):
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::isDebuggerAlwaysEnabled):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::identifierForInitialRequestImpl): (WebCore::InspectorInstrumentation::didLoadResourceFromMemoryCacheImpl):
- inspector/InspectorProfilerAgent.cpp: (WebCore::InspectorProfilerAgent::InspectorProfilerAgent): (WebCore::InspectorProfilerAgent::startUserInitiatedProfiling):
- inspector/InspectorSettings.cpp: Added. (WebCore::InspectorSettings::InspectorSettings): (WebCore::InspectorSettings::getBoolean): (WebCore::InspectorSettings::setBoolean): (WebCore::InspectorSettings::getLong): (WebCore::InspectorSettings::setLong): (WebCore::InspectorSettings::registerBoolean): (WebCore::InspectorSettings::registerLong):
- inspector/InspectorSettings.h: Copied from Source/WebCore/bindings/v8/ScriptProfiler.h.
- inspector/InspectorState.cpp: (WebCore::InspectorState::InspectorState):
- inspector/InspectorState.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher.dispatcher.monitoringXHRStateChanged): (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher): (WebInspector.ConsoleView.prototype._handleContextMenuEvent):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._toggleProfiling):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._toggleDebugging):
- inspector/front-end/Settings.js: (WebInspector.Settings):
- inspector/front-end/inspector.js:
- 1:08 AM Changeset in webkit [76774] by
-
- 1 edit4 adds in trunk/LayoutTests
2011-01-27 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
Add or update WebKit2-specific results to account for different reporting of scroll position
https://bugs.webkit.org/show_bug.cgi?id=53226
- platform/mac-wk2/fast/multicol: Added.
- platform/mac-wk2/fast/multicol/vertical-rl: Added.
- platform/mac-wk2/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/mac-wk2/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- 12:55 AM Changeset in webkit [76773] by
-
- 4 edits in trunk
2011-01-26 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] LayoutTests/media/audio-mpeg4-supported.html fails
https://bugs.webkit.org/show_bug.cgi?id=53125
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp: (WebCore::mimeTypeCache): Add audio/x-m4a mimetype in the cache.
2011-01-26 Philippe Normand <pnormand@igalia.com>
Reviewed by Martin Robinson.
[GTK] LayoutTests/media/audio-mpeg4-supported.html fails
https://bugs.webkit.org/show_bug.cgi?id=53125
- platform/gtk/Skipped: Unskip fixed test.
- 12:43 AM Changeset in webkit [76772] by
-
- 9 edits in trunk/LayoutTests
2011-01-27 Philippe Normand <pnormand@igalia.com>
Unreviewed, updated GTK baselines after r76726.
- platform/gtk/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
- platform/gtk/fast/blockflow/vertical-baseline-alignment-expected.txt:
- platform/gtk/fast/lists/002-vertical-expected.txt:
- platform/gtk/fast/lists/003-vertical-expected.txt:
- platform/gtk/fast/overflow/overflow-rtl-vertical-expected.txt:
- platform/gtk/fast/table/028-vertical-expected.txt:
- platform/gtk/fast/table/border-collapsing/003-vertical-expected.txt:
- platform/gtk/fast/table/height-percent-test-vertical-expected.txt:
- 12:38 AM Changeset in webkit [76771] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Update expectation for r76760.
- platform/chromium/test_expectations.txt:
- 12:36 AM Changeset in webkit [76770] by
-
- 31 edits2 deletes in trunk/Source/WebCore
2011-01-26 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: store all settings related to the agents on the frontend side
https://bugs.webkit.org/show_bug.cgi?id=53174
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.exp.in:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- inspector/Inspector.idl:
- inspector/InspectorAgent.cpp: profiler and debugger enablement state is now stored on the front-end side and will be pushed to the backend when the frontend is loaded. (WebCore::InspectorAgent::InspectorAgent): (WebCore::InspectorAgent::disconnectFrontend): (WebCore::InspectorAgent::restoreDebugger): (WebCore::InspectorAgent::restoreProfiler): (WebCore::InspectorAgent::enableProfiler): (WebCore::InspectorAgent::disableProfiler): (WebCore::InspectorAgent::showAndEnableDebugger): (WebCore::InspectorAgent::enableDebugger): (WebCore::InspectorAgent::disableDebugger):
- inspector/InspectorAgent.h:
- inspector/InspectorConsoleAgent.cpp: XHR failures will be logged to the console only if the front-end was opened during current browser session and XHR logging is turned on there. (WebCore::InspectorConsoleAgent::setMonitoringXHREnabled): (WebCore::InspectorConsoleAgent::setConsoleMessagesEnabled):
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::identifierForInitialRequestImpl): (WebCore::InspectorInstrumentation::didLoadResourceFromMemoryCacheImpl):
- inspector/InspectorProfilerAgent.cpp: (WebCore::InspectorProfilerAgent::enable): (WebCore::InspectorProfilerAgent::startUserInitiatedProfiling):
- inspector/InspectorProfilerAgent.h:
- inspector/InspectorSettings.cpp: Removed.
- inspector/InspectorSettings.h: Removed.
- inspector/InspectorState.cpp: (WebCore::InspectorState::InspectorState):
- inspector/InspectorState.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher.dispatcher.consoleMessagesCleared): (WebInspector.ConsoleView.prototype._registerConsoleDomainDispatcher): (WebInspector.ConsoleView.prototype._handleContextMenuEvent.itemAction): (WebInspector.ConsoleView.prototype._handleContextMenuEvent):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._toggleProfiling):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._toggleDebugging):
- inspector/front-end/Settings.js: (WebInspector.Settings):
- inspector/front-end/inspector.js:
- 12:32 AM Changeset in webkit [76769] by
-
- 23 edits2 adds in trunk
2011-01-26 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
WebKitTestRunner needs to support layoutTestController.evaluateInWebInspector
https://bugs.webkit.org/show_bug.cgi?id=42319
Unskip inspector tests (except the few that mysteriously fail).
- platform/mac-wk2/Skipped:
2011-01-26 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
WebKitTestRunner needs to support layoutTestController.evaluateInWebInspector
https://bugs.webkit.org/show_bug.cgi?id=42319
Add evaluateInWebInspector and other APIs needed for inspector tests to run.
- WebKitTestRunner/InjectedBundle/Bindings/LayoutTestController.idl:
- WebKitTestRunner/InjectedBundle/LayoutTestController.cpp: (WTR::LayoutTestController::showWebInspector): (WTR::LayoutTestController::closeWebInspector): (WTR::LayoutTestController::evaluateInWebInspector): (WTR::LayoutTestController::setTimelineProfilingEnabled):
- WebKitTestRunner/InjectedBundle/LayoutTestController.h:
- WebKitTestRunner/TestInvocation.cpp: (WTR::shouldOpenWebInspector): (WTR::TestInvocation::invoke):
- WebKitTestRunner/WebKitTestRunnerPrefix.h:
2011-01-26 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
WebKitTestRunner needs to support layoutTestController.evaluateInWebInspector
https://bugs.webkit.org/show_bug.cgi?id=42319
Add WKBundleInspector and APIs needed to implement WebKitTestRunner APIs.
- GNUmakefile.am:
- Shared/API/c/WKBase.h:
- Shared/APIObject.h:
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/InjectedBundle/API/c/WKBundleAPICast.h:
- WebProcess/InjectedBundle/API/c/WKBundleInspector.cpp: Added. (WKBundleInspectorGetTypeID): (WKBundleInspectorShow): (WKBundleInspectorClose): (WKBundleInspectorEvaluateScriptForTest): (WKBundleInspectorSetPageProfilingEnabled):
- WebProcess/InjectedBundle/API/c/WKBundleInspector.h: Added.
- WebProcess/InjectedBundle/API/c/WKBundlePage.cpp: (WKBundlePageGetInspector):
- WebProcess/InjectedBundle/API/c/WKBundlePage.h:
- WebProcess/WebPage/WebInspector.cpp: (WebKit::WebInspector::create): (WebKit::WebInspector::evaluateScriptForTest):
- WebProcess/WebPage/WebInspector.h: (WebKit::WebInspector::type):
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::inspector):
- WebProcess/WebPage/WebPage.h:
- win/WebKit2.vcproj:
- win/WebKit2Generated.make:
- 12:23 AM Changeset in webkit [76768] by
-
- 6 edits in trunk/Source/WebCore
REGRESSION (r76743): Uneven spacing in right-to-left justified text
https://bugs.webkit.org/show_bug.cgi?id=53225
Reviewed by Sam Weinig.
Fixes failure in fast/text/atsui-spacing-features.html
There was an inconsistency between rendering code and font code in the interpretation of
'after expansion' and 'trailing expansion'. Changed all code to interpret these in terms of
visual order rather than logical.
- platform/graphics/Font.cpp:
(WebCore::Font::expansionOpportunityCount): Added a text direction parameter and changed to
iterate in visual order accordingly.
- platform/graphics/Font.h:
- platform/graphics/WidthIterator.cpp:
(WebCore::WidthIterator::WidthIterator): Pass the run direction to expansionOpportunityCount().
(WebCore::WidthIterator::advance): For right-to-left runs, evaluate the trailing expansion
condition with respect to the first character, which is the trailing character in visual order.
- platform/graphics/mac/ComplexTextController.cpp:
(WebCore::ComplexTextController::ComplexTextController): Pass the run direction to
expansionOpportunityCount().
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlock::computeInlineDirectionPositionsForLine): Ditto.
- 12:15 AM Changeset in webkit [76767] by
-
- 2 edits in trunk/LayoutTests
2011-01-27 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Another test expectation update for r76743.
- platform/chromium/test_expectations.txt:
Jan 26, 2011:
- 11:42 PM Changeset in webkit [76766] by
-
- 17 edits2 adds in trunk/LayoutTests
Unreviewed.
[Qt] Update test expectations after r76726.
- platform/qt/fast/lists/002-vertical-expected.checksum:
- platform/qt/fast/lists/002-vertical-expected.png:
- platform/qt/fast/lists/002-vertical-expected.txt:
- platform/qt/fast/lists/003-vertical-expected.checksum:
- platform/qt/fast/lists/003-vertical-expected.png:
- platform/qt/fast/lists/003-vertical-expected.txt:
- platform/qt/fast/overflow/overflow-rtl-vertical-expected.checksum:
- platform/qt/fast/overflow/overflow-rtl-vertical-expected.png:
- platform/qt/fast/overflow/overflow-rtl-vertical-expected.txt:
- platform/qt/fast/table/028-vertical-expected.checksum:
- platform/qt/fast/table/028-vertical-expected.png:
- platform/qt/fast/table/028-vertical-expected.txt:
- platform/qt/fast/table/border-collapsing/003-vertical-expected.checksum:
- platform/qt/fast/table/border-collapsing/003-vertical-expected.png:
- platform/qt/fast/table/border-collapsing/003-vertical-expected.txt:
- platform/qt/fast/table/height-percent-test-vertical-expected.txt:
- 11:14 PM Changeset in webkit [76765] by
-
- 84 edits9 adds in trunk/LayoutTests
2011-01-26 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Update test expectations for r76743
- platform/chromium-linux/css1/box_properties/clear_float-expected.checksum:
- platform/chromium-linux/css1/box_properties/clear_float-expected.png:
- platform/chromium-linux/css1/box_properties/float_elements_in_series-expected.checksum:
- platform/chromium-linux/css1/box_properties/float_elements_in_series-expected.png:
- platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.checksum:
- platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.png:
- platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/chromium-linux/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/chromium-linux/fast/multicol/shadow-breaking-expected.checksum:
- platform/chromium-linux/fast/multicol/shadow-breaking-expected.png: Added.
- platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-linux/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
- platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.png:
- platform/chromium-mac/css1/box_properties/clear_float-expected.checksum: Added.
- platform/chromium-mac/css1/box_properties/clear_float-expected.png: Added.
- platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.checksum: Added.
- platform/chromium-mac/css1/box_properties/float_on_text_elements-expected.png: Added.
- platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Added.
- platform/chromium-mac/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Added.
- platform/chromium-mac/fast/multicol/shadow-breaking-expected.checksum: Added.
- platform/chromium-mac/fast/multicol/shadow-breaking-expected.png: Added.
- platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-mac/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/css1/box_properties/clear_float-expected.checksum:
- platform/chromium-win/css1/box_properties/clear_float-expected.png:
- platform/chromium-win/css1/box_properties/float_elements_in_series-expected.checksum:
- platform/chromium-win/css1/box_properties/float_elements_in_series-expected.png:
- platform/chromium-win/css1/box_properties/float_on_text_elements-expected.checksum:
- platform/chromium-win/css1/box_properties/float_on_text_elements-expected.png:
- platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/chromium-win/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/chromium-win/fast/multicol/shadow-breaking-expected.checksum:
- platform/chromium-win/fast/multicol/shadow-breaking-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-1-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-10-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-2-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-3-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-4-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-5-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-6-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-7-expected.png:
- platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.checksum:
- platform/chromium-win/fast/repaint/line-flow-with-floats-8-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.checksum:
- platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.png:
- 10:41 PM Changeset in webkit [76764] by
-
- 2 edits in trunk/Source/WebCore
Don't create the Direct3D device before it's first needed
We only need the device once we decide to render. There's no point in creating it before
then.
Reviewed by Sam Weinig.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp:
(WebCore::CACFLayerTreeHost::setWindow): Removed the call to createRenderer() from here.
We already have code to create it when we first try to draw.
(WebCore::CACFLayerTreeHost::createRenderer): Flush the context after we set our layer's
bounds so that the bounds will take effect the next time we render (which could be just
after this function returns).
- 10:40 PM Changeset in webkit [76763] by
-
- 3 edits in trunk/Source/WebCore
Add assertions that CACFLayerTreeHost gains and loses an HWND only once
CACFLayerTreeHost doesn't support any other use pattern.
Reviewed by Sam Weinig.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp:
(WebCore::CACFLayerTreeHost::CACFLayerTreeHost): Initialize new member.
(WebCore::CACFLayerTreeHost::setWindow): Assert that we transition from not having a window,
to having a window, to not having a window just once over the lifetime of this object.
- platform/graphics/ca/win/CACFLayerTreeHost.h: Added m_state.
- 10:40 PM Changeset in webkit [76762] by
-
- 3 edits in trunk/Source/WebCore
Notify layers that their animations have started when we flush the context, not when we render
r76372 separated context flushing from rendering, but this bit of code got left behind.
Reviewed by Sam Weinig.
- platform/graphics/ca/win/CACFLayerTreeHost.cpp:
(WebCore::CACFLayerTreeHost::render): Moved code to notify the layers from here to
notifyAnimationsStarted.
(WebCore::CACFLayerTreeHost::flushPendingLayerChangesNow): Added a call to
notifyAnimationsStarted after we flush the context.
(WebCore::CACFLayerTreeHost::notifyAnimationsStarted): Added. Code came from render. Changed
to call PlatformCALayer::animationStarted rather than calling through to the client
directly.
- platform/graphics/ca/win/CACFLayerTreeHost.h: Added notifyAniamtionsStarted.
- 10:39 PM Changeset in webkit [76761] by
-
- 3 edits in trunk/Source/WebCore
Small cleanup in MediaPlayerPrivateFullscreenWindow
Reviewed by Sam Weinig.
- platform/graphics/win/MediaPlayerPrivateFullscreenWindow.cpp:
(WebCore::MediaPlayerPrivateFullscreenWindow::~MediaPlayerPrivateFullscreenWindow): Moved
code here from close(), since this was the only place that called it after the following
change to createWindow.
(WebCore::MediaPlayerPrivateFullscreenWindow::createWindow): Replaced code that handled the
case where we had already created the window with an assertion that we have not already done
so. Our single caller (FullscreenVideoController) did not require this behavior.
- platform/graphics/win/MediaPlayerPrivateFullscreenWindow.h: Removed layerView.
- 10:31 PM Changeset in webkit [76760] by
-
- 4 edits in trunk/LayoutTests
Updated results for the html.css changes in r76726. The old results were prepared before
r76726.
- platform/mac/fast/text/justify-ideograph-vertical-expected.checksum:
- platform/mac/fast/text/justify-ideograph-vertical-expected.png:
- platform/mac/fast/text/justify-ideograph-vertical-expected.txt:
- 10:30 PM Changeset in webkit [76759] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
fast/text/justify-ideograph-vertical.html crashes on LINUX.
- platform/chromium/test_expectations.txt:
- 9:59 PM Changeset in webkit [76758] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Mark the tests started failing at http://trac.webkit.org/changeset/76726 as such.
- platform/chromium/test_expectations.txt:
- 9:12 PM Changeset in webkit [76757] by
-
- 6 edits in trunk/Source/WebCore
Move ScrollView scroll wheel code to ScrollAnimator.
Reviewed by Adam Roben.
- platform/ScrollAnimator.cpp:
(WebCore::ScrollAnimator::handleWheelEvent):
- platform/ScrollAnimator.h:
Moved implementation of handleWheelEvent from ScrollView::wheelEvent.
- platform/ScrollView.cpp:
(WebCore::ScrollView::wheelEvent):
Call down to the ScrollableArea.
- platform/ScrollableArea.cpp:
(WebCore::ScrollableArea::handleWheelEvent):
Call down to the ScrollAnimator.
- platform/ScrollableArea.h:
(WebCore::ScrollableArea::scrollPosition):
(WebCore::ScrollableArea::minimumScrollPosition):
(WebCore::ScrollableArea::maximumScrollPosition):
(WebCore::ScrollableArea::visibleContentRect):
(WebCore::ScrollableArea::visibleHeight):
(WebCore::ScrollableArea::visibleWidth):
Add functions needed to implement wheel event in the animator.
- 8:57 PM Changeset in webkit [76756] by
-
- 21 edits in trunk
<http://webkit.org/b/53192> Add experimental support for HTTP pipelining in CFNetwork
<rdar://problem/8821760>
Reviewed by Antti Koivisto.
Source/WebCore:
This adds support for HTTP pipelining in CFNetwork, but does not
enable it. To enable it post-SnowLeopard, use this command:
defaults write BUNDLE.ID WebKitEnableHTTPPipelining -bool YES
Once enabled, it is possible to force the same load priority
(high) to be sent to CFNetwork to allow WebCore to handle the
scheduling:
defaults write BUNDLE.ID WebKitForceHTTPPipeliningPriorityHigh -bool YES
- WebCore.exp.in: Export _wkGetHTTPPipeliningPriority and
_wkSetHTTPPipeliningPriority.
- loader/DocumentThreadableLoader.cpp:
(WebCore::DocumentThreadableLoader::makeCrossOriginAccessRequestWithPreflight):
Copy the priority to preflightRequest.
- loader/ResourceLoadScheduler.cpp:
(WebCore::ResourceLoadScheduler::scheduleLoad): Refactored code
at the end of the method to use an early return.
- loader/cache/CachedResourceRequest.cpp:
(WebCore::CachedResourceRequest::load): Set the priority on the
ResourceRequest object based on the priority of the
CachedResourceRequest before calling
ResourceLoadScheduler::scheduleSubresourceLoad().
- loader/icon/IconLoader.cpp:
(WebCore::IconLoader::startLoading): Create a ResourceRequest
object and set its priority to ResourceLoadPriorityLow before
passing it to ResourceLoadScheduler::scheduleSubresourceLoad().
- platform/mac/WebCoreSystemInterface.h:
(wkGetHTTPPipeliningPriority): Added.
(wkSetHTTPPipeliningPriority): Added.
- platform/mac/WebCoreSystemInterface.mm:
(wkGetHTTPPipeliningPriority): Added.
(wkSetHTTPPipeliningPriority): Added.
- platform/network/ResourceRequestBase.cpp:
(WebCore::ResourceRequestBase::adopt): Set m_priority when
adopting a CrossThreadResourceRequestData.
(WebCore::ResourceRequestBase::copyData): Set m_priority when
creating a CrossThreadResourceRequestData.
(WebCore::ResourceRequestBase::priority): Added.
(WebCore::ResourceRequestBase::setPriority): Added.
(WebCore::equalIgnoringHeaderFields): Priorities must match when
comparing two ResourceRequest objects.
- platform/network/ResourceRequestBase.h:
(WebCore::ResourceRequestBase::ResourceRequestBase): Set default
priority of new objects to ResourceLoadPriorityLow.
(WebCore::ResourceRequestBase::priority): Added declaration.
(WebCore::ResourceRequestBase::setPriority): Added declaration.
(WebCore::isHTTPPipeliningEnabled): Added.
(WebCore::shouldUseHTTPPipeliningPriority): Added.
- platform/network/cf/ResourceRequestCFNet.cpp: Updated so that
Mac OS X and Windows share code.
(WebCore::initializeMaximumHTTPConnectionCountPerHost): Always
set the HTTP connection count per host, but return an
'unlimited' value when using HTTP pipelining. This method used
to be defined in ResourceRequestMac.mm for Mac OS X.
(WebCore::readBooleanPreference): Added. Helper method for
reading boolean user defaults.
(WebCore::isHTTPPipeliningEnabled): Returns value of user
default key WebKitEnableHTTPPipelining, or false if not set.
(WebCore::shouldUseHTTPPipeliningPriority): Returns value of
user default key WebKitForceHTTPPipeliningPriorityHigh, or false
if not set.
- platform/network/cf/ResourceRequestCFNet.h: Updated so that
Mac OS X and Windows share code. Fixed indentation.
(WebCore::mapHTTPPipeliningPriorityToResourceLoadPriority): Added.
(WebCore::mapResourceLoadPriorityToHTTPPipeliningPriority): Added.
- platform/network/mac/ResourceRequestMac.mm:
(WebCore::ResourceRequest::doUpdatePlatformRequest): Update
HTTP pipelining priority on NSMutableFURLRequest object.
(WebCore::ResourceRequest::doUpdateResourceRequest): Update
m_priority from the NSURLRequest object.
(WebCore::initializeMaximumHTTPConnectionCountPerHost): Removed.
Code is now shared with Windows in ResourceRequestCFNet.cpp.
Source/WebKit/mac:
- WebCoreSupport/WebSystemInterface.mm:
(InitWebCoreSystemInterface): Added initialization for
GetHTTPPipeliningPriority and SetHTTPPipeliningPriority.
Source/WebKit2:
- WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
(InitWebCoreSystemInterface): Added initialization for
GetHTTPPipeliningPriority and SetHTTPPipeliningPriority.
WebKitLibraries:
- WebKitSystemInterface.h:
New methods added for HTTP pipelining support.
(WKGetHTTPPipeliningPriority): Added.
(WKSetHTTPPipeliningPriority): Added.
Unrelated methods added after updating the header.
(WKMakeScrollbarPainter): Added.
(WKScrollbarPainterPaint): Added.
- libWebKitSystemInterfaceLeopard.a: Updated.
- libWebKitSystemInterfaceSnowLeopard.a: Updated.
- 8:36 PM Changeset in webkit [76755] by
-
- 1 edit8 adds in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Reviewed Chromium Mac rebaselines for r76726.
- platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.checksum: Added.
- platform/chromium-mac/fast/blockflow/vertical-baseline-alignment-expected.png: Added.
- platform/chromium-mac/fast/multicol/vertical-rl: Added.
- platform/chromium-mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/chromium-mac/fast/table/028-vertical-expected.checksum: Added.
- platform/chromium-mac/fast/table/028-vertical-expected.png: Added.
- platform/chromium-mac/fast/text/complex-text-opacity-expected.checksum: Added.
- platform/chromium-mac/fast/text/complex-text-opacity-expected.png: Added.
- 8:08 PM Changeset in webkit [76754] by
-
- 9 edits in trunk/Source
Fix for <rdar://problem/8895140> Adopt WKScrollbar metrics
when using WKScrollbars.
Reviewed by Darin Adler.
Source/WebCore:
New WebKitSystemInterface Functionality.
- WebCore.exp.in:
- platform/mac/WebCoreSystemInterface.h:
- platform/mac/WebCoreSystemInterface.mm:
Some of the terrible static arrays are now only needed in the
old non-WK code, so they are if-def'd now.
- platform/mac/ScrollbarThemeMac.mm:
Just patching this function in a better way than I did
before.
(WebCore::updateArrowPlacement):
Call into WK for the right values.
(WebCore::ScrollbarThemeMac::scrollbarThickness):
(WebCore::ScrollbarThemeMac::hasThumb):
(WebCore::ScrollbarThemeMac::minimumThumbLength):
Return false if there are no buttons.
(WebCore::ScrollbarThemeMac::hasButtons):
Return an empty IntRect if there are not buttons.
(WebCore::buttonRepaintRect):
Source/WebKit/mac:
- WebCoreSupport/WebSystemInterface.mm:
(InitWebCoreSystemInterface):
Source/WebKit2:
- WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:
(InitWebCoreSystemInterface):
- 8:07 PM Changeset in webkit [76753] by
-
- 11 edits25 adds in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Reviewed Chromium Windows/Linux rebaselines for r76726.
- platform/chromium-linux/fast/multicol/vertical-rl/float-multicol-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-multicol-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-paginate-complex-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-paginate-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-paginate-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/nested-columns-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/nested-columns-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/unsplittable-inline-block-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Added.
- platform/chromium-linux/fast/table/028-vertical-expected.checksum:
- platform/chromium-linux/fast/table/028-vertical-expected.png:
- platform/chromium-linux/fast/table/border-collapsing/003-vertical-expected.checksum:
- platform/chromium-linux/fast/table/border-collapsing/003-vertical-expected.png:
- platform/chromium-win/fast/multicol/vertical-rl/float-multicol-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-multicol-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-multicol-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-complex-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-paginate-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/nested-columns-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/nested-columns-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/nested-columns-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/unsplittable-inline-block-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Added.
- platform/chromium-win/fast/table/028-vertical-expected.checksum:
- platform/chromium-win/fast/table/028-vertical-expected.png:
- platform/chromium-win/fast/table/028-vertical-expected.txt:
- platform/chromium-win/fast/table/border-collapsing/003-vertical-expected.checksum:
- platform/chromium-win/fast/table/border-collapsing/003-vertical-expected.png:
- platform/chromium-win/fast/table/border-collapsing/003-vertical-expected.txt:
- 8:04 PM Changeset in webkit [76752] by
-
- 1 edit47 adds in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Reviewed Chromium Windows/Linux rebaselines for r76726.
- platform/chromium-linux/fast/multicol/vertical-lr/float-paginate-complex-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-paginate-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-paginate-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/nested-columns-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/nested-columns-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/unsplittable-inline-block-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/border-padding-pagination-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-break-with-balancing-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-count-with-rules-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-rules-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/column-rules-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-rl/float-avoidance-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-complex-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-paginate-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/nested-columns-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/nested-columns-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/nested-columns-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/unsplittable-inline-block-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl: Added.
- platform/chromium-win/fast/multicol/vertical-rl/border-padding-pagination-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-break-with-balancing-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-count-with-rules-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-rules-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-rules-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/column-rules-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-rl/float-avoidance-expected.txt: Added.
- 7:59 PM Changeset in webkit [76751] by
-
- 16 edits32 adds1 delete in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Reviewed Chromium Windows/Linux rebaselines for r76726.
- platform/chromium-linux/fast/blockflow/vertical-baseline-alignment-expected.checksum:
- platform/chromium-linux/fast/blockflow/vertical-baseline-alignment-expected.png:
- platform/chromium-linux/fast/lists/002-vertical-expected.checksum:
- platform/chromium-linux/fast/lists/002-vertical-expected.png:
- platform/chromium-linux/fast/lists/002-vertical-expected.txt: Removed.
- platform/chromium-linux/fast/lists/003-vertical-expected.checksum:
- platform/chromium-linux/fast/lists/003-vertical-expected.png:
- platform/chromium-linux/fast/multicol/vertical-lr: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/border-padding-pagination-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-break-with-balancing-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-count-with-rules-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-rules-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/column-rules-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-avoidance-expected.png: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-multicol-expected.checksum: Added.
- platform/chromium-linux/fast/multicol/vertical-lr/float-multicol-expected.png: Added.
- platform/chromium-win/fast/blockflow/vertical-baseline-alignment-expected.checksum:
- platform/chromium-win/fast/blockflow/vertical-baseline-alignment-expected.png:
- platform/chromium-win/fast/blockflow/vertical-baseline-alignment-expected.txt:
- platform/chromium-win/fast/lists/002-vertical-expected.checksum:
- platform/chromium-win/fast/lists/002-vertical-expected.png:
- platform/chromium-win/fast/lists/002-vertical-expected.txt:
- platform/chromium-win/fast/lists/003-vertical-expected.checksum:
- platform/chromium-win/fast/lists/003-vertical-expected.png:
- platform/chromium-win/fast/lists/003-vertical-expected.txt:
- platform/chromium-win/fast/multicol/vertical-lr: Added.
- platform/chromium-win/fast/multicol/vertical-lr/border-padding-pagination-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-break-with-balancing-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-count-with-rules-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-rules-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-rules-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/column-rules-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-avoidance-expected.txt: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-multicol-expected.checksum: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-multicol-expected.png: Added.
- platform/chromium-win/fast/multicol/vertical-lr/float-multicol-expected.txt: Added.
- 7:13 PM Changeset in webkit [76750] by
-
- 3 edits in trunk/LayoutTests
Rebaseline Windows fast/blockfow results after r76726.
- platform/win/fast/blockflow/Kusa-Makura-background-canvas-expected.txt:
- platform/win/fast/blockflow/vertical-baseline-alignment-expected.txt:
- 6:46 PM Changeset in webkit [76749] by
-
- 29 edits in trunk
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Reviewed by Xan Lopez.
[GTK] Pixel dumps do not include scrollbars in output images
https://bugs.webkit.org/show_bug.cgi?id=53216
Update expected results which should show scrollbars.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum:
- platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.png:
- platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.checksum:
- platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.png:
- platform/gtk/css2.1/t080301-c411-vt-mrgn-00-b-expected.checksum:
- platform/gtk/css2.1/t080301-c411-vt-mrgn-00-b-expected.png:
- platform/gtk/css2.1/t0905-c5525-fltclr-00-c-ag-expected.checksum:
- platform/gtk/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png:
- platform/gtk/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.checksum:
- platform/gtk/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png:
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum:
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png:
- platform/gtk/css2.1/t0905-c5526-fltclr-00-c-ag-expected.checksum:
- platform/gtk/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png:
- platform/gtk/css2.1/t1002-c5523-width-02-b-g-expected.checksum:
- platform/gtk/css2.1/t1002-c5523-width-02-b-g-expected.png:
- platform/gtk/css2.1/t1202-counters-08-b-expected.checksum:
- platform/gtk/css2.1/t1202-counters-08-b-expected.png:
- platform/gtk/css2.1/t1202-counters-09-b-expected.checksum:
- platform/gtk/css2.1/t1202-counters-09-b-expected.png:
- platform/gtk/css2.1/t140201-c535-bg-fixd-00-b-g-expected.checksum:
- platform/gtk/css2.1/t140201-c535-bg-fixd-00-b-g-expected.png:
- platform/gtk/css2.1/t140201-c537-bgfxps-00-c-ag-expected.checksum:
- platform/gtk/css2.1/t140201-c537-bgfxps-00-c-ag-expected.png:
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.checksum:
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.png:
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Reviewed by Xan Lopez.
[GTK] Pixel dumps do not include scrollbars in output images
https://bugs.webkit.org/show_bug.cgi?id=53216
Show scrollbars in pixel dumps. This will fix pixel dumps for tests
that have scrollbars.
- DumpRenderTree/gtk/PixelDumpSupportGtk.cpp: (createBitmapContextFromWebView): Take the snapshot of the containing GtkScrolledWindow instead of the web view itself.
- 6:20 PM Changeset in webkit [76748] by
-
- 8 edits in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
[GTK] Text input controls do not react properly to CSS styling
https://bugs.webkit.org/show_bug.cgi?id=40855
Unskip tests which were previously skipped due to issue #40855.
The bug is closed now, so it's safe to rebaseline the tests and
unskip them.
- platform/gtk/Skipped: Unskip tests.
- platform/gtk/fast/forms/basic-selects-expected.checksum:
- platform/gtk/fast/forms/basic-selects-expected.png:
- platform/gtk/fast/forms/basic-selects-expected.txt:
- platform/gtk/fast/forms/basic-textareas-quirks-expected.checksum:
- platform/gtk/fast/forms/basic-textareas-quirks-expected.png:
- platform/gtk/fast/forms/basic-textareas-quirks-expected.txt:
- 6:02 PM Changeset in webkit [76747] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
[GTK] media/unsupported-rtsp.html fails after timing out
https://bugs.webkit.org/show_bug.cgi?id=53056
- platform/gtk/Skipped: Update the skipped list to explain why this test is skipped and should remain skipped.
- 6:01 PM Changeset in webkit [76746] by
-
- 2 edits in trunk/Tools
2011-01-26 Dirk Pranke <dpranke@chromium.org>
Reviewed by Mihai Parparita.
Fix regression introduced in r76322 ... new-run-webkit-tests
was attempting to save the image diff output as a UTF-8-encoded
file.
- Scripts/webkitpy/layout_tests/port/webkit.py:
- 5:55 PM Changeset in webkit [76745] by
-
- 21 edits2 adds in trunk/Source
Add events to represent the start/end of a gesture scroll
https://bugs.webkit.org/show_bug.cgi?id=53215
Reviewed by Maciej Stachowiak.
Source/JavaScriptCore:
- wtf/Platform.h: Add ENABLE for gesture events.
Source/WebCore:
- WebCore.exp.in:
Add new file.
- WebCore.xcodeproj/project.pbxproj:
Add new file.
- page/EventHandler.cpp:
(WebCore::EventHandler::handleGestureEvent):
- page/EventHandler.h:
Add entry point for handling gesture events.
- platform/PlatformGestureEvent.h: Added.
(WebCore::PlatformGestureEvent::PlatformGestureEvent):
(WebCore::PlatformGestureEvent::type):
(WebCore::PlatformGestureEvent::position):
(WebCore::PlatformGestureEvent::globalPosition):
(WebCore::PlatformGestureEvent::timestamp):
Add platform agnostic representation of a gesture event.
Source/WebKit2:
- Scripts/webkit2/messages.py:
- Shared/WebEvent.h:
(WebKit::WebGestureEvent::WebGestureEvent):
(WebKit::WebGestureEvent::position):
(WebKit::WebGestureEvent::globalPosition):
- Shared/WebEventConversion.cpp:
(WebKit::WebKit2PlatformGestureEvent::WebKit2PlatformGestureEvent):
(WebKit::platform):
- Shared/WebEventConversion.h:
- Shared/WebGestureEvent.cpp: Added.
(WebKit::WebGestureEvent::WebGestureEvent):
(WebKit::WebGestureEvent::encode):
(WebKit::WebGestureEvent::decode):
(WebKit::WebGestureEvent::isGestureEventType):
- Shared/mac/WebEventFactory.h:
- Shared/mac/WebEventFactory.mm:
(WebKit::gestureEventTypeForEvent):
(WebKit::WebEventFactory::createWebGestureEvent):
- UIProcess/API/mac/WKView.mm:
(-[WKView shortCircuitedEndGestureWithEvent:]):
(-[WKView beginGestureWithEvent:]):
(-[WKView viewDidMoveToWindow]):
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::handleGestureEvent):
(WebKit::WebPageProxy::didReceiveEvent):
- UIProcess/WebPageProxy.h:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/WebPage/WebPage.cpp:
(WebKit::handleGestureEvent):
(WebKit::WebPage::gestureEvent):
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/WebPage.messages.in:
Pipe gesture events down to WebCore.
- 5:45 PM Changeset in webkit [76744] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-26 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
[Chromium] WebFrame::forms() should not return empty WebFormElements
https://bugs.webkit.org/show_bug.cgi?id=53204
- src/WebFrameImpl.cpp:
(WebKit::WebFrameImpl::forms):
- Should iterate by forms->length(), not the number of HTMLElements.
- Do not increment the index for "temp" if a node is not an HTMLElement.
- 5:39 PM Changeset in webkit [76743] by
-
- 38 edits12 adds in trunk
<rdar://problem/8446709> Allow inter-ideograph justification for CJK
https://bugs.webkit.org/show_bug.cgi?id=53184
Reviewed by Dave Hyatt.
Source/WebCore:
Tests: fast/text/justify-ideograph-complex.html
fast/text/justify-ideograph-simple.html
fast/text/justify-ideograph-vertical.html
- html/canvas/CanvasRenderingContext2D.cpp:
(WebCore::CanvasRenderingContext2D::drawTextInternal): Corrected the type of the third parameter
passed to the TextRun constructor and added the trailingExpansionBehavior parameter.
- platform/graphics/Font.cpp:
(WebCore::Font::expansionOpportunityCount): Added. Returns the number of expansion opportunities
for text justification. On entry, isAfterExpansion says whether an expansion opportunity exists
before the first character. On return, isAfterExpansion says whether an expansion opportunity
exists after the last character.
- platform/graphics/Font.h:
- platform/graphics/GlyphBuffer.h:
(WebCore::GlyphBuffer::expandLastAdvance): Added.
- platform/graphics/TextRun.h:
(WebCore::TextRun::TextRun): Added a TrailingExpansionBehavior parameter to the constructors.
Renamed padding to expansion.
(WebCore::TextRun::expansion): Renamed padding() to this.
(WebCore::TextRun::allowsTrailingExpansion): Added this accessor.
- platform/graphics/WidthIterator.cpp:
(WebCore::WidthIterator::WidthIterator): Initialize m_isAfterExpansion. Use Font::expansionOpportunityCount()
and adjust the count if it includes a trailing expansion opportunity but the run disallows trailing
expansion.
(WebCore::WidthIterator::advance): Apply expansion before and after CJK ideographs.
(WebCore::WidthIterator::advanceOneCharacter): Changed to not clear the GlyphBuffer so that advance()
can expand the last advance if it is followed by a CJK ideograph.
- platform/graphics/WidthIterator.h: Renamed m_padding to m_expansion and m_padPerSpace
to m_expansionPerOpportunity.
- platform/graphics/chromium/FontChromiumWin.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/chromium/FontLinux.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/efl/FontEfl.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/gtk/FontGtk.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/haiku/FontHaiku.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/mac/ComplexTextController.cpp:
(WebCore::ComplexTextController::ComplexTextController): Initialize m_isAfterExpansion. Use
Font::expansionOpportunityCount() and adjust the count if it includes a trailing expansion
opportunity but the run disallows trailing expansion.
(WebCore::ComplexTextController::adjustGlyphsAndAdvances): Moved the definition and initialization
of hasExtraSpacing outside the loop. Apply expansion before and after CJK ideographs.
- platform/graphics/mac/ComplexTextController.h: Renamed m_padding to m_expansion and m_padPerSpace
to m_expansionPerOpportunity.
- platform/graphics/mac/FontMac.mm:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/qt/FontQt.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/win/FontWin.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/win/UniscribeController.cpp:
(WebCore::UniscribeController::UniscribeController): Updated for rename.
- platform/graphics/wince/FontWinCE.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- platform/graphics/wx/FontWx.cpp:
(WebCore::Font::canExpandAroundIdeographsInComplexText): Added.
- rendering/EllipsisBox.cpp:
(WebCore::EllipsisBox::paint): Pass a TrailingExpansionBehavior to the TextRun constructor.
(WebCore::EllipsisBox::selectionRect): Ditto.
(WebCore::EllipsisBox::paintSelection): Ditto.
- rendering/InlineBox.h:
(WebCore::InlineBox::InlineBox): Renamed m_toAdd to m_expansion.
(WebCore::InlineBox::expansion): Renamed toAdd() to this.
- rendering/InlineTextBox.cpp:
(WebCore::InlineTextBox::selectionRect): Pass a TrailingExpansionBehavior to the TextRun constructor.
(WebCore::InlineTextBox::paint): Ditto.
(WebCore::InlineTextBox::paintSelection): Ditto.
(WebCore::InlineTextBox::paintCompositionBackground): Ditto.
(WebCore::InlineTextBox::paintSpellingOrGrammarMarker): Ditto.
(WebCore::InlineTextBox::paintTextMatchMarker): Ditto.
(WebCore::InlineTextBox::computeRectForReplacementMarker): Ditto.
(WebCore::InlineTextBox::offsetForPosition): Ditto.
(WebCore::InlineTextBox::positionForOffset): Ditto.
- rendering/InlineTextBox.h:
(WebCore::InlineTextBox::setExpansion): Renamed setSpaceAdd() to this.
(WebCore::InlineTextBox::trailingExpansionBehavior): Added. Trailing expansion is allowed if this
is not the last leaf box on the line.
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlock::computeInlineDirectionPositionsForLine): Keep expansion opportunity counts
in a vector instead of computing them twice. Discard the trailing expansion opportunity in the
last text box.
- rendering/RenderFileUploadControl.cpp:
(WebCore::RenderFileUploadControl::paintObject): Pass a TrailingExpansionBehavior to the TextRun constructor.
(WebCore::RenderFileUploadControl::computePreferredLogicalWidths): Ditto.
- rendering/RenderListBox.cpp:
(WebCore::RenderListBox::updateFromElement): Ditto.
(WebCore::RenderListBox::paintItemForeground): Ditto. Also corrected the type of the second parameter.
- rendering/RenderTextControl.cpp:
(WebCore::RenderTextControl::getAvgCharWidth): Ditto.
(WebCore::RenderTextControl::paintPlaceholder): Ditto.
- rendering/svg/SVGInlineTextBox.cpp:
(WebCore::SVGInlineTextBox::constructTextRun): Ditto.
Source/WebKit/chromium:
- src/WebTextRun.cpp:
(WebKit::WebTextRun::operator WebCore::TextRun): Added a TrailingExpansionBehavior parameter to the
RenderText constructor.
Source/WebKit2:
- WebProcess/WebCoreSupport/win/WebPopupMenuWin.cpp:
(WebKit::WebPopupMenu::setUpPlatformData): Added a TrailingExpansionBehavior parameter to the
RenderText constructor.
LayoutTests:
- fast/text/justify-ideograph-complex.html: Added.
- fast/text/justify-ideograph-simple.html: Added.
- fast/text/justify-ideograph-vertical.html: Added.
- platform/mac/fast/text/justify-ideograph-complex-expected.checksum: Added.
- platform/mac/fast/text/justify-ideograph-complex-expected.png: Added.
- platform/mac/fast/text/justify-ideograph-complex-expected.txt: Added.
- platform/mac/fast/text/justify-ideograph-simple-expected.checksum: Added.
- platform/mac/fast/text/justify-ideograph-simple-expected.png: Added.
- platform/mac/fast/text/justify-ideograph-simple-expected.txt: Added.
- platform/mac/fast/text/justify-ideograph-vertical-expected.checksum: Added.
- platform/mac/fast/text/justify-ideograph-vertical-expected.png: Added.
- platform/mac/fast/text/justify-ideograph-vertical-expected.txt: Added.
- 5:34 PM Changeset in webkit [76742] by
-
- 5 edits1 add in trunk/Source/WebKit2
Methods to temporarily disable size updates to the page drawing area in WKView.
https://bugs.webkit.org/show_bug.cgi?id=53206
Part of <rdar://problem/8818585>
Patch by Jing Jin <jjin@apple.com> on 2011-01-26
Reviewed by Darin Adler.
- UIProcess/API/mac/WKView.h: Added _frameSizeUpdateDisabledCount.
- UIProcess/API/mac/WKView.mm:
(-[WKView setFrameSize:]): Only update page size if frame size updates are enabled.
(-[WKView _setDrawingAreaSize:]): Helper method to set the page's drawing area's size.
(-[WKView disableFrameSizeUpdates]): Increment _frameSizeUpdateDisabledCount
(-[WKView enableFrameSizeUpdates]): Decrement _frameSizeUpdateDisabledCount, and if the count is 0, meaning
that no one is disabling frame size updates anymore, update the drawing area's size to match the current frame.
(-[WKView frameSizeUpdatesDisabled]): Returns YES if at least one caller is disabling frame size updates.
- UIProcess/API/mac/WKViewInternal.h: Declared -disableFrameSizeUpdates, -enableFrameSizeUpdates, and -frameSizeUpdatesDisabled.
- UIProcess/API/mac/WKViewPrivate.h: Added.
- WebKit2.xcodeproj/project.pbxproj: Added WKViewPrivate.h
- 5:32 PM Changeset in webkit [76741] by
-
- 2 edits in trunk/Source/WebKit2
Several WKView Internal category methods are implemented in the main category.
https://bugs.webkit.org/show_bug.cgi?id=53195
Patch by Jing Jin <jjin@apple.com> on 2011-01-26
Rubber-stamped by Dan Bernstein.
- UIProcess/API/mac/WKView.mm:
(-[WKView _setEventBeingResent:]): Moved into implementation of WKView (Internal).
(-[WKView _interceptKeyEvent:]): Moved into implementation of WKView (Internal).
(-[WKView _getTextInputState:selectionEnd:underlines:WebCore::]): Moved into implementation of WKView (Internal).
(-[WKView _setAccessibilityChildToken:]): Moved into implementation of WKView (Internal).
- 5:19 PM WikiStart edited by
- (diff)
- 5:17 PM WikiStart edited by
- (diff)
- 5:12 PM Changeset in webkit [76740] by
-
- 2 edits261 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Add the final set of CSS 2.1 GTK+ baselines.
- platform/gtk/Skipped: Unskip the remaining CSS 2.1 tests.
- platform/gtk/css2.1: Add the remaining baselines.
- 5:09 PM Changeset in webkit [76739] by
-
- 1 edit in trunk/LayoutTests/platform/mac/fast/text/text-letter-spacing-expected.txt
Update fast/text/text-letter-spacing.html since it progressed.
- 5:06 PM Changeset in webkit [76738] by
-
- 2 edits300 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Add the next set of GTK+ baselines for the CSS 2.1 test suite.
- platform/gtk/Skipped: Unskip the next block of tests.
- platform/gtk/css2.1: Added CSS 2.1 test results for GTK+.
- 5:03 PM CSS21Results edited by
- (diff)
- 4:58 PM Changeset in webkit [76737] by
-
- 1 edit in trunk/LayoutTests/fast/dom/vertical-scrollbar-in-rtl-doesnt-fire-onscroll-expected.txt
Update fast/dom test since it progressed.
- 4:57 PM Changeset in webkit [76736] by
-
- 28 edits in trunk/LayoutTests/platform/mac/fast/table
Update fast/table results since they progressed.
- 4:53 PM Changeset in webkit [76735] by
-
- 7 edits in trunk/LayoutTests/platform/mac/fast/overflow
Update fast/overflow results since they progressed.
- 4:51 PM Changeset in webkit [76734] by
-
- 6 edits in trunk/LayoutTests/platform/mac/fast/lists
Update fast/lists results since they progressed.
- 4:50 PM Changeset in webkit [76733] by
-
- 2 edits in trunk/Source/WebCore
Inline HTMLObjectElement::hasValidClassId().
Rubber-stamped by Darin Adler.
- html/HTMLObjectElement.cpp:
(WebCore::HTMLObjectElement::hasValidClassId):
- 4:49 PM Changeset in webkit [76732] by
-
- 4 edits2 adds in trunk
2010-01-26 Evan Martin <evan@chromium.org>
Reviewed by Tony Chang.
[chromium] crash on getBoundingClientRect in complex text
https://bugs.webkit.org/show_bug.cgi?id=53199
Add a test that reproduces the crash and verifies the resulting values
are sane (when it didn't crash, it would get garbage values).
- platform/chromium-linux/fast/text/international/complex-text-rectangle-expected.txt: Added.
- platform/chromium-linux/fast/text/international/complex-text-rectangle.html: Added.
2011-01-26 Evan Martin <evan@chromium.org>
Reviewed by Tony Chang.
[chromium] crash on getBoundingClientRect in complex text
https://bugs.webkit.org/show_bug.cgi?id=53199
Use the correct array bound; we want the number of characters processed by
the shaper, not the longest continuous script run length.
Test: platform/chromium-linux/fast/text/international/complex-text-rectangle.html
- platform/graphics/chromium/ComplexTextControllerLinux.cpp: (WebCore::ComplexTextController::nextScriptRun):
- platform/graphics/chromium/ComplexTextControllerLinux.h: (WebCore::ComplexTextController::numCodePoints):
- 4:44 PM Changeset in webkit [76731] by
-
- 6 edits in trunk/LayoutTests/platform/mac/fast/blockflow
Update fast/blockflow results since they progressed.
- 4:39 PM Changeset in webkit [76730] by
-
- 5 edits in branches/safari-533.20-branch
Versioning.
- 3:54 PM Changeset in webkit [76729] by
-
- 1 copy in branches/safari-533.20-branch
New branch.
- 3:43 PM Changeset in webkit [76728] by
-
- 8 edits2 adds in trunk
2011-01-26 Emil A Eklund <eae@chromium.org>
Reviewed by Alexey Proskuryakov.
Remove cached document reference from CSSStyleSheet and XSLStyleSheet.
https://bugs.webkit.org/show_bug.cgi?id=52084
Test: fast/dom/css-delete-doc.html
- css/CSSMediaRule.cpp: (WebCore::CSSMediaRule::insertRule): (WebCore::CSSMediaRule::deleteRule):
- css/CSSStyleSheet.cpp: (WebCore::CSSStyleSheet::CSSStyleSheet): (WebCore::CSSStyleSheet::document):
- css/CSSStyleSheet.h:
- xml/XSLStyleSheet.h: (WebCore::XSLStyleSheet::parentStyleSheet):
- xml/XSLStyleSheetLibxslt.cpp: (WebCore::XSLStyleSheet::XSLStyleSheet): (WebCore::XSLStyleSheet::cachedResourceLoader): (WebCore::XSLStyleSheet::setParentStyleSheet): (WebCore::XSLStyleSheet::ownerDocument):
- xml/XSLStyleSheetQt.cpp: (WebCore::XSLStyleSheet::XSLStyleSheet): (WebCore::XSLStyleSheet::cachedResourceLoader): (WebCore::XSLStyleSheet::ownerDocument):
2011-01-26 Emil A Eklund <eae@chromium.org>
Reviewed by Alexey Proskuryakov.
Remove cached document reference from CSSStyleSheet and XSLStyleSheet.
https://bugs.webkit.org/show_bug.cgi?id=52084
Added test for accessing a style sheet associated with a document that
has been removed.
- fast/dom/css-delete-doc-expected.txt: Added.
- fast/dom/css-delete-doc.html: Added.
- 3:26 PM Changeset in webkit [76727] by
-
- 5 edits in trunk/Source/WebCore
2011-01-25 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Kent Tamura.
Reduce ref-count churn in shadowPseudoId.
https://bugs.webkit.org/show_bug.cgi?id=53136
Refactoring, so no new tests.
- dom/Element.h: (WebCore::Element::shadowPseudoId): Changed signature to use const AtomicString&
- html/ValidationMessage.cpp: (WebCore::ElementWithPseudoId::shadowPseudoId): Ditto.
- html/shadow/SliderThumbElement.cpp: (WebCore::SliderThumbElement::shadowPseudoId): Ditto, plus moved from the header file.
- html/shadow/SliderThumbElement.h: Ditto.
- rendering/MediaControlElements.cpp: (WebCore::MediaControlMuteButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlVolumeSliderMuteButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlPlayButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlSeekForwardButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlSeekBackButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlRewindButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlReturnToRealtimeButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlToggleClosedCaptionsButtonElement::shadowPseudoId): Ditto. (WebCore::MediaControlTimelineElement::shadowPseudoId): Ditto. (WebCore::MediaControlVolumeSliderElement::shadowPseudoId): Ditto. (WebCore::MediaControlFullscreenButtonElement::shadowPseudoId): Ditto.
- rendering/MediaControlElements.h: Ditto.
- 3:10 PM Changeset in webkit [76726] by
-
- 23 edits104 adds in trunk
https://bugs.webkit.org/show_bug.cgi?id=46421, make multi-column layout work with vertical text.
Reviewed by Dan Bernstein.
Added new tests in fast/multicol/vertical-lr and fast/multicol/vertical-rl.
Source/WebCore:
- css/html.css:
Update p, blockquote and h1-h6 to respect directionality so that column layout tests that use those
elements work properly.
- rendering/InlineFlowBox.cpp:
(WebCore::InlineFlowBox::placeBoxesInBlockDirection):
Fix a flipping bug with the computation of lineTopIncludingMargins where it could be incorrectly shrunk
in some cases (causing lines to all stack on top of one another).
- rendering/InlineTextBox.h:
(WebCore::InlineTextBox::calculateBoundaries):
Fix calculateBoundaries to be physical rather than logical.
- rendering/LayoutState.cpp:
(WebCore::LayoutState::addForcedColumnBreak):
- rendering/LayoutState.h:
Rename childY to childLogicalOffset.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::layoutBlock):
(WebCore::RenderBlock::addOverflowFromChildren):
(WebCore::RenderBlock::addOverflowFromFloats):
(WebCore::RenderBlock::collapseMargins):
(WebCore::RenderBlock::estimateLogicalTopPosition):
(WebCore::RenderBlock::layoutBlockChild):
(WebCore::RenderBlock::markForPaginationRelayoutIfNeeded):
(WebCore::RenderBlock::paintColumnRules):
(WebCore::RenderBlock::paintColumnContents):
(WebCore::RenderBlock::paintFloats):
(WebCore::RenderBlock::selectionGaps):
(WebCore::RenderBlock::removeFloatingObjectsBelow):
(WebCore::RenderBlock::addOverhangingFloats):
(WebCore::RenderBlock::hitTestFloats):
(WebCore::RenderBlock::hitTestColumns):
(WebCore::RenderBlock::calcColumnWidth):
(WebCore::RenderBlock::desiredColumnWidth):
(WebCore::RenderBlock::columnRectAt):
(WebCore::RenderBlock::layoutColumns):
(WebCore::RenderBlock::adjustPointToColumnContents):
(WebCore::RenderBlock::adjustRectForColumns):
(WebCore::RenderBlock::flipForWritingModeIncludingColumns):
(WebCore::RenderBlock::adjustForColumns):
(WebCore::RenderBlock::adjustForBorderFit):
(WebCore::RenderBlock::nextPageLogicalTop):
(WebCore::RenderBlock::applyBeforeBreak):
(WebCore::RenderBlock::applyAfterBreak):
(WebCore::RenderBlock::adjustForUnsplittableChild):
(WebCore::RenderBlock::adjustLinePositionForPagination):
- rendering/RenderBlock.h:
(WebCore::RenderBlock::logicalRightOffsetForContent):
(WebCore::RenderBlock::logicalLeftOffsetForContent):
(WebCore::RenderBlock::leftForFloatIncludingMargin):
(WebCore::RenderBlock::topForFloatIncludingMargin):
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlock::layoutInlineChildren):
(WebCore::RenderBlock::determineStartPosition):
Reworking of all the RenderBlock column functions to support flipping and vertical modes.
- rendering/RenderBox.cpp:
(WebCore::RenderBox::offsetFromContainer):
(WebCore::RenderBox::flipForWritingModeIncludingColumns):
Patch offsetFromContainer to be aware of flipped block writing modes when dealing with column layouts.
- rendering/RenderBox.h:
(WebCore::RenderBox::clientLogicalBottom):
Fix a bug in clientLogicalBottom where it didn't add in the right border/padding.
- rendering/RenderFlexibleBox.cpp:
(WebCore::RenderFlexibleBox::layoutBlock):
Better terminology for pagination.
- rendering/RenderInline.cpp:
(WebCore::RenderInline::offsetFromContainer):
(WebCore::RenderInline::mapLocalToContainer):
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::paintChildLayerIntoColumns):
(WebCore::RenderLayer::hitTestChildLayerColumns):
(WebCore::RenderLayer::localBoundingBox):
(WebCore::RenderLayer::boundingBox):
Patch painting in RenderLayers to be vertical-text-aware.
- rendering/RenderObject.cpp:
(WebCore::RenderObject::mapLocalToContainer):
Add code to be flipped block-aware with columns.
- rendering/RenderTable.cpp:
(WebCore::RenderTable::layout):
- rendering/RenderTableRow.cpp:
(WebCore::RenderTableRow::layout):
- rendering/RenderTableSection.cpp:
(WebCore::RenderTableSection::layoutRows):
Fix pagination to use better terminology.
- rendering/RenderText.cpp:
(WebCore::RenderText::absoluteQuads):
(WebCore::RenderText::absoluteQuadsForRange):
Fix a bug where vertical text wasn't taken into account.
LayoutTests:
- fast/multicol/break-properties-expected.txt:
- fast/multicol/break-properties.html:
- fast/multicol/float-truncation.html:
- fast/multicol/vertical-lr: Added.
- fast/multicol/vertical-lr/border-padding-pagination.html: Added.
- fast/multicol/vertical-lr/break-properties-expected.txt: Added.
- fast/multicol/vertical-lr/break-properties.html: Added.
- fast/multicol/vertical-lr/column-break-with-balancing.html: Added.
- fast/multicol/vertical-lr/column-count-with-rules.html: Added.
- fast/multicol/vertical-lr/column-rules.html: Added.
- fast/multicol/vertical-lr/float-avoidance.html: Added.
- fast/multicol/vertical-lr/float-multicol.html: Added.
- fast/multicol/vertical-lr/float-paginate-complex.html: Added.
- fast/multicol/vertical-lr/float-paginate.html: Added.
- fast/multicol/vertical-lr/float-truncation-expected.txt: Added.
- fast/multicol/vertical-lr/float-truncation.html: Added.
- fast/multicol/vertical-lr/gap-non-negative-expected.txt: Added.
- fast/multicol/vertical-lr/gap-non-negative.html: Added.
- fast/multicol/vertical-lr/image-inside-nested-blocks-with-border-expected.txt: Added.
- fast/multicol/vertical-lr/image-inside-nested-blocks-with-border.html: Added.
- fast/multicol/vertical-lr/nested-columns.html: Added.
- fast/multicol/vertical-lr/resources: Added.
- fast/multicol/vertical-lr/resources/blimp.png: Added.
- fast/multicol/vertical-lr/unsplittable-inline-block.html: Added.
- fast/multicol/vertical-rl: Added.
- fast/multicol/vertical-rl/border-padding-pagination.html: Added.
- fast/multicol/vertical-rl/break-properties-expected.txt: Added.
- fast/multicol/vertical-rl/break-properties.html: Added.
- fast/multicol/vertical-rl/column-break-with-balancing.html: Added.
- fast/multicol/vertical-rl/column-count-with-rules.html: Added.
- fast/multicol/vertical-rl/column-rules.html: Added.
- fast/multicol/vertical-rl/float-avoidance.html: Added.
- fast/multicol/vertical-rl/float-multicol.html: Added.
- fast/multicol/vertical-rl/float-paginate-complex.html: Added.
- fast/multicol/vertical-rl/float-paginate.html: Added.
- fast/multicol/vertical-rl/float-truncation-expected.txt: Added.
- fast/multicol/vertical-rl/float-truncation.html: Added.
- fast/multicol/vertical-rl/gap-non-negative-expected.txt: Added.
- fast/multicol/vertical-rl/gap-non-negative.html: Added.
- fast/multicol/vertical-rl/image-inside-nested-blocks-with-border-expected.txt: Added.
- fast/multicol/vertical-rl/image-inside-nested-blocks-with-border.html: Added.
- fast/multicol/vertical-rl/nested-columns.html: Added.
- fast/multicol/vertical-rl/resources: Added.
- fast/multicol/vertical-rl/resources/blimp.png: Added.
- fast/multicol/vertical-rl/unsplittable-inline-block.html: Added.
- platform/mac/fast/multicol/vertical-lr: Added.
- platform/mac/fast/multicol/vertical-lr/border-padding-pagination-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/border-padding-pagination-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/column-count-with-rules-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/column-count-with-rules-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/column-rules-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/column-rules-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/column-rules-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/float-avoidance-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/float-avoidance-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/float-avoidance-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/float-multicol-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/float-multicol-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/float-multicol-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/float-paginate-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/nested-columns-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/nested-columns-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/nested-columns-expected.txt: Added.
- platform/mac/fast/multicol/vertical-lr/unsplittable-inline-block-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Added.
- platform/mac/fast/multicol/vertical-lr/unsplittable-inline-block-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl: Added.
- platform/mac/fast/multicol/vertical-rl/border-padding-pagination-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/border-padding-pagination-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/column-count-with-rules-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/column-count-with-rules-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/column-rules-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/column-rules-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/column-rules-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/float-avoidance-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/float-avoidance-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/float-avoidance-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/float-multicol-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/float-multicol-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/float-multicol-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/float-paginate-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/nested-columns-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/nested-columns-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/nested-columns-expected.txt: Added.
- platform/mac/fast/multicol/vertical-rl/unsplittable-inline-block-expected.checksum: Added.
- platform/mac/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Added.
- platform/mac/fast/multicol/vertical-rl/unsplittable-inline-block-expected.txt: Added.
- 2:58 PM Changeset in webkit [76725] by
-
- 3 edits in trunk/Source/WebKit2
WebKit2: Need API to get the frame load state of a BundleFrame
https://bugs.webkit.org/show_bug.cgi?id=53193
Reviewed by John Sullivan.
- WebProcess/InjectedBundle/API/c/WKBundleFrame.cpp:
(WKBundleFrameGetFrameLoadState): Call through to the FrameLoader to get the frame load state.
- WebProcess/InjectedBundle/API/c/WKBundleFrame.h:
- 2:54 PM Changeset in webkit [76724] by
-
- 8 edits in trunk/Source/WebCore
2011-01-26 Dimitri Glazkov <Dimitri Glazkov>
Unreviewed, rolling out r76719.
http://trac.webkit.org/changeset/76719
https://bugs.webkit.org/show_bug.cgi?id=53122
Broke a bunch of media tests in Chromium/Qt/GTK.
- 2:52 PM Changeset in webkit [76723] by
-
- 6 edits in trunk
2011-01-26 Tony Chang <tony@chromium.org>
Reviewed by Ryosuke Niwa.
[gtk] strip NUL characters when copying text/html on GTK+
https://bugs.webkit.org/show_bug.cgi?id=52508
- editing/pasteboard/copy-null-characters.html: Make sure we didn't
change innerHTML (it should still contain the null)
- platform/gtk/Skipped: Re-enable the test
2011-01-26 Tony Chang <tony@chromium.org>
Reviewed by Ryosuke Niwa.
[gtk] strip NUL characters when copying text/html on GTK+
https://bugs.webkit.org/show_bug.cgi?id=52508
Putting NUL characters in the text/html clipboard doesn't work in
WebKit GTK+ (the pasted value is truncated at the NUL). Since we're
already stripping this character for plain text (for Windows), strip
it in text/html too.
- editing/MarkupAccumulator.h: mark function as virtual
- editing/markup.cpp: (WebCore::StyledMarkupAccumulator::appendString): (WebCore::StyledMarkupAccumulator::takeResults): strip nulls
- 2:50 PM Changeset in webkit [76722] by
-
- 2 edits2 deletes in trunk/Tools
2011-01-26 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76709.
http://trac.webkit.org/changeset/76709
https://bugs.webkit.org/show_bug.cgi?id=53194
"broke python tests on non-snowleopard platforms" (Requested
by dpranke on #webkit).
- Scripts/webkitpy/layout_tests/port/factory.py:
- Scripts/webkitpy/layout_tests/port/mock_drt.py: Removed.
- Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Removed.
- 2:43 PM Changeset in webkit [76721] by
-
- 4 edits in trunk/Source
2011-01-26 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] Reliable crash with getTextAtOffset()
https://bugs.webkit.org/show_bug.cgi?id=53131
Properly calculate length in bytes for a UTF8 substring.
- accessibility/gtk/AccessibilityObjectWrapperAtk.cpp: (utf8Substr): Use character instead of bytes as units to calculate the length in bytes for the UTF8 string.
2011-01-26 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Martin Robinson.
[GTK] Reliable crash with getTextAtOffset()
https://bugs.webkit.org/show_bug.cgi?id=53131
New unit test to check the fix for this bug.
- tests/testatk.c: (testWebkitAtkGetTextAtOffsetWithSpecialCharacters): New. (main): Add new unit test.
- 2:22 PM Changeset in webkit [76720] by
-
- 2 edits282 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Add the next set of CSS 2.1 baselines for GTK+.
- platform/gtk/Skipped: Unskip tests which now have results.
- platform/gtk/css2.1/t010403-shand-border-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t010403-shand-border-00-c-expected.png: Added.
- platform/gtk/css2.1/t010403-shand-border-00-c-expected.txt: Added.
- platform/gtk/css2.1/t010403-shand-font-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t010403-shand-font-00-b-expected.png: Added.
- platform/gtk/css2.1/t010403-shand-font-00-b-expected.txt: Added.
- platform/gtk/css2.1/t010403-shand-font-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t010403-shand-font-01-b-expected.png: Added.
- platform/gtk/css2.1/t010403-shand-font-01-b-expected.txt: Added.
- platform/gtk/css2.1/t010403-shand-font-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t010403-shand-font-02-b-expected.png: Added.
- platform/gtk/css2.1/t010403-shand-font-02-b-expected.txt: Added.
- platform/gtk/css2.1/t010403-shand-font-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t010403-shand-font-03-b-expected.png: Added.
- platform/gtk/css2.1/t010403-shand-font-03-b-expected.txt: Added.
- platform/gtk/css2.1/t040102-keywords-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t040102-keywords-00-b-expected.png: Added.
- platform/gtk/css2.1/t040102-keywords-00-b-expected.txt: Added.
- platform/gtk/css2.1/t040102-keywords-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t040102-keywords-01-b-expected.png: Added.
- platform/gtk/css2.1/t040102-keywords-01-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-case-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-case-00-b-expected.png: Added.
- platform/gtk/css2.1/t040103-case-00-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-case-01-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-case-01-c-expected.png: Added.
- platform/gtk/css2.1/t040103-case-01-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-00-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-00-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-01-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-01-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-02-d-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-02-d-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-02-d-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-03-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-03-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-04-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-04-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-04-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-05-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-05-c-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-05-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-06-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-06-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-06-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-07-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-07-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-07-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-escapes-08-b-expected.checksum: Added.
- platform/gtk/css2.1/t040103-escapes-08-b-expected.png: Added.
- platform/gtk/css2.1/t040103-escapes-08-b-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-00-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-00-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-01-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-01-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-01-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-02-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-02-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-02-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-03-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-03-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-03-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-04-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-04-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-04-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-05-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-05-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-05-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-06-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-06-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-06-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-07-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-07-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-07-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-08-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-08-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-08-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-09-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-09-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-09-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-10-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-10-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-10-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-11-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-11-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-11-c-expected.txt: Added.
- platform/gtk/css2.1/t040103-ident-12-c-expected.checksum: Added.
- platform/gtk/css2.1/t040103-ident-12-c-expected.png: Added.
- platform/gtk/css2.1/t040103-ident-12-c-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-02-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-02-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-03-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-03-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-04-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-04-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-04-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-05-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-05-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-05-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-06-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-06-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-06-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-07-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-07-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-07-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-08-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-08-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-08-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-09-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-09-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-09-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-11-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-11-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-11-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-12-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-12-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-12-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-13-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-13-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-13-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-14-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-14-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-14-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-15-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-15-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-15-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-16-c-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-16-c-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-16-c-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-17-d-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-17-d-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-17-d-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-18-f-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-18-f-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-18-f-expected.txt: Added.
- platform/gtk/css2.1/t1204-implied-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1204-implied-00-b-expected.png: Added.
- platform/gtk/css2.1/t1204-implied-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1204-implied-01-c-expected.checksum: Added.
- platform/gtk/css2.1/t1204-implied-01-c-expected.png: Added.
- platform/gtk/css2.1/t1204-implied-01-c-expected.txt: Added.
- platform/gtk/css2.1/t1204-implied-02-d-expected.checksum: Added.
- platform/gtk/css2.1/t1204-implied-02-d-expected.png: Added.
- platform/gtk/css2.1/t1204-implied-02-d-expected.txt: Added.
- platform/gtk/css2.1/t1204-multiple-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t1204-multiple-00-c-expected.png: Added.
- platform/gtk/css2.1/t1204-multiple-00-c-expected.txt: Added.
- platform/gtk/css2.1/t1204-multiple-01-c-expected.checksum: Added.
- platform/gtk/css2.1/t1204-multiple-01-c-expected.png: Added.
- platform/gtk/css2.1/t1204-multiple-01-c-expected.txt: Added.
- platform/gtk/css2.1/t1204-order-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t1204-order-00-c-expected.png: Added.
- platform/gtk/css2.1/t1204-order-00-c-expected.txt: Added.
- platform/gtk/css2.1/t1204-order-01-d-expected.checksum: Added.
- platform/gtk/css2.1/t1204-order-01-d-expected.png: Added.
- platform/gtk/css2.1/t1204-order-01-d-expected.txt: Added.
- platform/gtk/css2.1/t1204-root-e-expected.checksum: Added.
- platform/gtk/css2.1/t1204-root-e-expected.png: Added.
- platform/gtk/css2.1/t1204-root-e-expected.txt: Added.
- platform/gtk/css2.1/t1205-c561-list-displ-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c561-list-displ-00-b-expected.png: Added.
- platform/gtk/css2.1/t1205-c561-list-displ-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1205-c563-list-type-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c563-list-type-00-b-expected.png: Added.
- platform/gtk/css2.1/t1205-c563-list-type-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1205-c563-list-type-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c563-list-type-01-b-expected.png: Added.
- platform/gtk/css2.1/t1205-c563-list-type-01-b-expected.txt: Added.
- platform/gtk/css2.1/t1205-c564-list-img-00-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c564-list-img-00-b-g-expected.png: Added.
- platform/gtk/css2.1/t1205-c564-list-img-00-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1205-c565-list-pos-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c565-list-pos-00-b-expected.png: Added.
- platform/gtk/css2.1/t1205-c565-list-pos-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-00-e-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-00-e-ag-expected.png: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-00-e-ag-expected.txt: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-01-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-01-c-g-expected.png: Added.
- platform/gtk/css2.1/t1205-c566-list-stl-01-c-g-expected.txt: Added.
- platform/gtk/css2.1/t1401-c531-color-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t1401-c531-color-00-a-expected.png: Added.
- platform/gtk/css2.1/t1401-c531-color-00-a-expected.txt: Added.
- platform/gtk/css2.1/t1402-c45-bg-canvas-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1402-c45-bg-canvas-00-b-expected.png: Added.
- platform/gtk/css2.1/t1402-c45-bg-canvas-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1503-c522-font-family-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1503-c522-font-family-00-b-expected.png: Added.
- platform/gtk/css2.1/t1503-c522-font-family-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1504-c523-font-style-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1504-c523-font-style-00-b-expected.png: Added.
- platform/gtk/css2.1/t1504-c523-font-style-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1504-c543-txt-decor-00-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t1504-c543-txt-decor-00-d-g-expected.png: Added.
- platform/gtk/css2.1/t1504-c543-txt-decor-00-d-g-expected.txt: Added.
- platform/gtk/css2.1/t1505-c524-font-var-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1505-c524-font-var-00-b-expected.png: Added.
- platform/gtk/css2.1/t1505-c524-font-var-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1506-c525-font-wt-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1506-c525-font-wt-00-b-expected.png: Added.
- platform/gtk/css2.1/t1506-c525-font-wt-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-00-b-expected.png: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-01-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-01-b-a-expected.png: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-01-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-02-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-02-b-a-expected.png: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-02-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-03-f-a-expected.checksum: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-03-f-a-expected.png: Added.
- platform/gtk/css2.1/t1507-c526-font-sz-03-f-a-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-00-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-01-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-01-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-02-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-02-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-03-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-03-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-04-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-04-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-04-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-05-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-05-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-05-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-06-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-06-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-06-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-07-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-08-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-08-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-08-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-09-b-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-09-b-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-09-b-expected.txt: Added.
- platform/gtk/css2.1/t1508-c527-font-10-c-expected.checksum: Added.
- platform/gtk/css2.1/t1508-c527-font-10-c-expected.png: Added.
- platform/gtk/css2.1/t1508-c527-font-10-c-expected.txt: Added.
- platform/gtk/css2.1/t1601-c547-indent-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1601-c547-indent-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t1601-c547-indent-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1601-c547-indent-01-d-expected.checksum: Added.
- platform/gtk/css2.1/t1601-c547-indent-01-d-expected.png: Added.
- platform/gtk/css2.1/t1601-c547-indent-01-d-expected.txt: Added.
- platform/gtk/css2.1/t1602-c43-center-00-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1602-c43-center-00-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1602-c43-center-00-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1602-c546-txt-align-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1602-c546-txt-align-00-b-expected.png: Added.
- platform/gtk/css2.1/t1602-c546-txt-align-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-01-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-01-b-a-expected.png: Added.
- platform/gtk/css2.1/t1604-c541-word-sp-01-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-01-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-01-b-a-expected.png: Added.
- platform/gtk/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt: Added.
- platform/gtk/css2.1/t1605-c545-txttrans-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1605-c545-txttrans-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t1605-c545-txttrans-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t1606-c562-white-sp-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1606-c562-white-sp-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t1606-c562-white-sp-00-b-ag-expected.txt: Added.
- 2:19 PM Changeset in webkit [76719] by
-
- 8 edits in trunk/Source/WebCore
2011-01-25 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Kent Tamura.
Change HTMLInputElement-derived parts of media element shadow DOM to use shadowPseudoId.
https://bugs.webkit.org/show_bug.cgi?id=53122
This is the first step in converting HTMLMediaElement to the new shadow DOM.
Should not regress any existing tests. No observable change in behavior.
- css/CSSSelector.cpp: (WebCore::CSSSelector::pseudoId): Removed now-unnecessary hard-coded pseudo-element selectors. (WebCore::nameToPseudoTypeMap): Ditto. (WebCore::CSSSelector::extractPseudoType): Ditto.
- css/CSSSelector.h: Ditto.
- css/mediaControls.css: Added proper initial values, now that elements use the proper selector pipeline.
- rendering/MediaControlElements.cpp: (WebCore::MediaControlInputElement::MediaControlInputElement): Removed the switch statement,
which is now replaced with virtual shadowPseudoId on each corresponding class.
(WebCore::MediaControlInputElement::styleForElement): Changed to use element pipeline.
(WebCore::MediaControlMuteButtonElement::MediaControlMuteButtonElement): Changed to set
display type in constructor.
(WebCore::MediaControlMuteButtonElement::create): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlMuteButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlVolumeSliderMuteButtonElement::MediaControlVolumeSliderMuteButtonElement): Added
to disambiguate from the MediaControlMuteButtonElement.
(WebCore::MediaControlVolumeSliderMuteButtonElement::create): Added.
(WebCore::MediaControlVolumeSliderMuteButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlPlayButtonElement::MediaControlPlayButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlPlayButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlSeekButtonElement::MediaControlSeekButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlSeekForwardButtonElement::MediaControlSeekForwardButtonElement): Added.
(WebCore::MediaControlSeekForwardButtonElement::create): Added.
(WebCore::MediaControlSeekForwardButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlSeekBackButtonElement::MediaControlSeekBackButtonElement): Added.
(WebCore::MediaControlSeekBackButtonElement::create): Added.
(WebCore::MediaControlSeekBackButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlRewindButtonElement::MediaControlRewindButtonElement): Added.
(WebCore::MediaControlRewindButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlReturnToRealtimeButtonElement::MediaControlReturnToRealtimeButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlReturnToRealtimeButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlToggleClosedCaptionsButtonElement::MediaControlToggleClosedCaptionsButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlToggleClosedCaptionsButtonElement::shadowPseudoId): Added.
(WebCore::MediaControlTimelineElement::MediaControlTimelineElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlTimelineElement::shadowPseudoId): Added.
(WebCore::MediaControlVolumeSliderElement::MediaControlVolumeSliderElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlVolumeSliderElement::shadowPseudoId): Added.
(WebCore::MediaControlFullscreenButtonElement::MediaControlFullscreenButtonElement): Changed to not take PseudoId as
constructor argument.
(WebCore::MediaControlFullscreenButtonElement::shadowPseudoId): Added.
- rendering/MediaControlElements.h: (WebCore::MediaControlSeekForwardButtonElement::isForwardButton): Added. (WebCore::MediaControlSeekBackButtonElement::isForwardButton): Added.
- rendering/RenderMedia.cpp: (WebCore::RenderMedia::createMuteButton): Changed to use new constructor. (WebCore::RenderMedia::createSeekBackButton): Ditto. (WebCore::RenderMedia::createSeekForwardButton): Ditto. (WebCore::RenderMedia::createVolumeSliderMuteButton): Ditto.
- rendering/style/RenderStyleConstants.h: Removed constants that are no longer used.
- 2:10 PM Changeset in webkit [76718] by
-
- 2 edits300 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Continue the import of GTK+ test results for the CSS 2.1 test suite.
- platform/gtk/Skipped: Unskip tests which now have results.
- platform/gtk/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-02-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-03-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-02-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-03-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-02-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5515-brdr-w-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5515-ibrdr-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5515-ibrdr-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5515-ibrdr-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5516-brdr-c-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5516-brdr-c-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5516-brdr-c-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5516-ibrdr-c-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5516-ibrdr-c-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5517-brdr-s-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5517-brdr-s-00-c-expected.png: Added.
- platform/gtk/css2.1/t0805-c5517-brdr-s-00-c-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5517-ibrdr-s-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5517-ibrdr-s-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-01-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5518-brdr-t-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5518-ibrdr-t-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5518-ibrdr-t-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-01-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-02-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-02-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5519-brdr-r-02-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5519-ibrdr-r-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5519-ibrdr-r-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-01-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5520-brdr-b-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5520-ibrdr-b-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5520-ibrdr-b-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-01-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-02-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-02-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5521-brdr-l-02-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5521-ibrdr-l-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5521-ibrdr-l-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-02-e-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-02-e-expected.png: Added.
- platform/gtk/css2.1/t0805-c5522-brdr-02-e-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5522-ibrdr-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5522-ibrdr-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5522-ibrdr-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-00-d-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-00-d-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-00-d-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-01-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-01-d-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-01-d-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-02-c-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-02-c-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-02-c-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-03-c-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-03-c-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-03-c-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-04-c-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-04-c-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-04-c-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-00-d-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-00-d-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-00-d-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-01-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-00-e-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-00-e-expected.txt: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-01-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-01-d-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c414-flt-wrap-01-d-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-00-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-01-d-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-01-d-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltblck-01-d-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltclr-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltclr-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltclr-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltcont-00-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltcont-00-d-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-flthw-00-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-flthw-00-c-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltinln-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltinln-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltinln-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltmult-00-d-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltmult-00-d-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-01-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-01-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-02-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-02-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-02-c-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-03-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-03-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5525-fltwrap-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5525-fltwrap-00-b-expected.png: Added.
- platform/gtk/css2.1/t0905-c5525-fltwrap-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5526-fltclr-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5526-fltclr-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0905-c5526-fltclr-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0905-c5526-flthw-00-c-g-expected.checksum: Added.
- platform/gtk/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Added.
- platform/gtk/css2.1/t0905-c5526-flthw-00-c-g-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-01-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-01-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-02-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-02-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-03-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-03-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-04-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-04-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-04-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-05-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-05-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-05-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-06-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-06-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-06-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-07-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-07-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-07-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-08-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-08-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-08-b-expected.txt: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-09-b-expected.checksum: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-09-b-expected.png: Added.
- platform/gtk/css2.1/t1001-abs-pos-cb-09-b-expected.txt: Added.
- platform/gtk/css2.1/t1002-c5523-width-00-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1002-c5523-width-00-b-g-expected.png: Added.
- platform/gtk/css2.1/t1002-c5523-width-00-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1002-c5523-width-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1002-c5523-width-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t1002-c5523-width-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1002-c5523-width-02-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1002-c5523-width-02-b-g-expected.png: Added.
- platform/gtk/css2.1/t1002-c5523-width-02-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1004-c5524-width-00-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1004-c5524-width-00-b-g-expected.png: Added.
- platform/gtk/css2.1/t1004-c5524-width-00-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1005-c5524-width-00-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1005-c5524-width-00-b-g-expected.png: Added.
- platform/gtk/css2.1/t1005-c5524-width-00-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1005-c5524-width-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t1005-c5524-width-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t1005-c5524-width-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-00-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-00-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-00-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-01-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-01-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-01-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-02-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-02-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-02-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-03-d-ag-expected.checksum: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-03-d-ag-expected.png: Added.
- platform/gtk/css2.1/t1008-c44-ln-box-03-d-ag-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-00-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-01-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-01-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-02-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-02-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-03-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-03-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-04-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-04-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-04-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-05-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-05-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-05-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-06-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-06-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-06-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-07-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-07-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-07-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-08-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-08-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-08-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-09-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-09-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-09-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-11-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-11-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-11-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-12-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-12-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-12-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-13-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-13-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-13-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-14-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-14-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-14-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-15-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-15-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-15-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counter-16-f-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counter-16-f-expected.png: Added.
- platform/gtk/css2.1/t1202-counter-16-f-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-00-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-00-b-expected.txt: Added.
- platform/gtk/css2.1/t1202-counters-01-b-expected.checksum: Added.
- platform/gtk/css2.1/t1202-counters-01-b-expected.png: Added.
- platform/gtk/css2.1/t1202-counters-01-b-expected.txt: Added.
- 2:06 PM Changeset in webkit [76717] by
-
- 11 edits in trunk/Source
2011-01-26 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Fix multisampling support in DrawingBuffer
https://bugs.webkit.org/show_bug.cgi?id=53154
Plumbed GL_ANGLE_framebuffer_multisample and
GL_ANGLE_framebuffer_blit (exposed as the unified extension
GL_CHROMIUM_framebuffer_multisample) through WebGraphicsContext3D.
- public/WebGraphicsContext3D.h:
- src/Extensions3DChromium.cpp: (WebCore::Extensions3DChromium::blitFramebuffer): (WebCore::Extensions3DChromium::renderbufferStorageMultisample):
- src/GraphicsContext3DChromium.cpp: (WebCore::GraphicsContext3DInternal::supportsExtension): (WebCore::GraphicsContext3DInternal::ensureExtensionEnabled):
- src/GraphicsContext3DInternal.h:
2011-01-26 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Fix multisampling support in DrawingBuffer
https://bugs.webkit.org/show_bug.cgi?id=53154
In DrawingBuffer's multisampling code path, fixed enum usage and a
bug where it would incorrectly redefine the depth and stencil
buffers. Hooked up multisampling code path in Chromium port.
Tested manually with some accelerated 2D canvas content.
Multisampling isn't being switched on for the accelerated 2D
canvas at the current time because it will increase fill rate
requirements and cause a large number of rebaselines.
- platform/graphics/Extensions3D.h:
- platform/graphics/chromium/DrawingBufferChromium.cpp: (WebCore::DrawingBuffer::publishToPlatformLayer):
- platform/graphics/chromium/Extensions3DChromium.h:
- platform/graphics/gpu/DrawingBuffer.cpp: (WebCore::DrawingBuffer::create): (WebCore::DrawingBuffer::reset):
- platform/graphics/opengl/Extensions3DOpenGL.cpp: (WebCore::Extensions3DOpenGL::supports):
- 1:59 PM Changeset in webkit [76716] by
-
- 6 edits in trunk
2011-01-26 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Laszlo Gombos.
[Qt][Symbian] Fix --minimal build
https://bugs.webkit.org/show_bug.cgi?id=52839
Move definition of USE_SYSTEM_MALLOC out of pri file.
Put it in platform.h instead.
- Source/WebKit.pri:
2011-01-26 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Laszlo Gombos.
[Qt][Symbian] Fix --minimal build
https://bugs.webkit.org/show_bug.cgi?id=52839
Move definition of USE_SYSTEM_MALLOC out of pri file.
Put it in platform.h instead.
- wtf/Platform.h:
- wtf/TCSystemAlloc.cpp:
- wtf/wtf.pri:
- 1:54 PM Changeset in webkit [76715] by
-
- 2 edits150 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Continue importing GTK+ test results for the CSS 2.1 test suite.
- platform/gtk/Skipped: Unskip tests with results.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-02-c-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-03-c-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5505-imrgn-00-a-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-01-e-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.png: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-02-c-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-03-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5506-padn-t-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-01-c-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-02-f-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-02-f-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-02-f-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-03-f-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-03-f-expected.png: Added.
- platform/gtk/css2.1/t0804-c5507-padn-r-03-f-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-01-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-02-f-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-02-f-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-02-f-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-03-f-g-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Added.
- platform/gtk/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5510-ipadn-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5510-padn-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0804-c5510-padn-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5510-padn-01-e-a-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5510-padn-01-e-a-expected.png: Added.
- platform/gtk/css2.1/t0804-c5510-padn-01-e-a-expected.txt: Added.
- platform/gtk/css2.1/t0804-c5510-padn-02-f-expected.checksum: Added.
- platform/gtk/css2.1/t0804-c5510-padn-02-f-expected.png: Added.
- platform/gtk/css2.1/t0804-c5510-padn-02-f-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Added.
- platform/gtk/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-03-b-expected.checksum: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Added.
- platform/gtk/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt: Added.
- 1:45 PM Changeset in webkit [76714] by
-
- 2 edits150 adds in trunk/LayoutTests
2011-01-26 Martin Robinson <mrobinson@igalia.com>
Begin importing GTK+ results for the CSS 2.1 test suite. This will
be the first in a series of commits. Each test results has been checked
against those generated for Qt and Mac.
- platform/gtk/Skipped: Unskip tests which now have results.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-00-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-01-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-01-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-02-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-03-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-04-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Added.
- platform/gtk/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-01-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-01-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-01-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-02-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-02-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-02-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-03-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-03-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-03-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-04-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-04-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-04-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-05-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-05-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-05-f-expected.txt: Added.
- platform/gtk/css2.1/t0402-syntax-06-f-expected.checksum: Added.
- platform/gtk/css2.1/t0402-syntax-06-f-expected.png: Added.
- platform/gtk/css2.1/t0402-syntax-06-f-expected.txt: Added.
- platform/gtk/css2.1/t0505-c16-descendant-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t0505-c16-descendant-00-e-expected.png: Added.
- platform/gtk/css2.1/t0505-c16-descendant-00-e-expected.txt: Added.
- platform/gtk/css2.1/t0505-c16-descendant-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0505-c16-descendant-01-e-expected.png: Added.
- platform/gtk/css2.1/t0505-c16-descendant-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0505-c16-descendant-02-e-expected.checksum: Added.
- platform/gtk/css2.1/t0505-c16-descendant-02-e-expected.png: Added.
- platform/gtk/css2.1/t0505-c16-descendant-02-e-expected.txt: Added.
- platform/gtk/css2.1/t0509-c15-ids-00-a-expected.checksum: Added.
- platform/gtk/css2.1/t0509-c15-ids-00-a-expected.png: Added.
- platform/gtk/css2.1/t0509-c15-ids-00-a-expected.txt: Added.
- platform/gtk/css2.1/t0509-c15-ids-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0509-c15-ids-01-e-expected.png: Added.
- platform/gtk/css2.1/t0509-c15-ids-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-01-f-expected.checksum: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-01-f-expected.png: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-01-f-expected.txt: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-02-b-expected.checksum: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-02-b-expected.png: Added.
- platform/gtk/css2.1/t0509-id-sel-syntax-02-b-expected.txt: Added.
- platform/gtk/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.checksum: Added.
- platform/gtk/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Added.
- platform/gtk/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.txt: Added.
- platform/gtk/css2.1/t0511-c21-pseud-anch-00-e-i-expected.checksum: Added.
- platform/gtk/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Added.
- platform/gtk/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-00-e-expected.png: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-00-e-expected.txt: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-01-e-expected.checksum: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-01-e-expected.png: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-01-e-expected.txt: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-02-e-expected.checksum: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-02-e-expected.png: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-02-e-expected.txt: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-03-e-expected.checksum: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-03-e-expected.png: Added.
- platform/gtk/css2.1/t0511-c21-pseud-link-03-e-expected.txt: Added.
- platform/gtk/css2.1/t0602-c13-inh-underlin-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Added.
- platform/gtk/css2.1/t0602-c13-inh-underlin-00-e-expected.txt: Added.
- platform/gtk/css2.1/t0602-c13-inheritance-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t0602-c13-inheritance-00-e-expected.png: Added.
- platform/gtk/css2.1/t0602-c13-inheritance-00-e-expected.txt: Added.
- platform/gtk/css2.1/t0602-inherit-bdr-pad-b-00-expected.checksum: Added.
- platform/gtk/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Added.
- platform/gtk/css2.1/t0602-inherit-bdr-pad-b-00-expected.txt: Added.
- platform/gtk/css2.1/t0603-c11-import-00-b-expected.checksum: Added.
- platform/gtk/css2.1/t0603-c11-import-00-b-expected.png: Added.
- platform/gtk/css2.1/t0603-c11-import-00-b-expected.txt: Added.
- platform/gtk/css2.1/t0801-c412-hz-box-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0801-c412-hz-box-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-03-c-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Added.
- platform/gtk/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.checksum: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Added.
- platform/gtk/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt: Added.
- platform/gtk/css2.1/t09-c5526c-display-00-e-expected.checksum: Added.
- platform/gtk/css2.1/t09-c5526c-display-00-e-expected.png: Added.
- platform/gtk/css2.1/t09-c5526c-display-00-e-expected.txt: Added.
- 1:30 PM Changeset in webkit [76713] by
-
- 4 edits in trunk/Source
2011-01-26 Tony Chang <tony@chromium.org>
Unreviewed.
[chromium] revert r68310 because of race conditions detected by tsans
https://bugs.webkit.org/show_bug.cgi?id=53185
Causes stability problems for Chromium, http://crbug.com/70589
- platform/sql/chromium/SQLiteFileSystemChromiumPosix.cpp: (WebCore::SQLiteFileSystem::registerSQLiteVFS):
2011-01-26 Tony Chang <tony@chromium.org>
Unreviewed.
[chromium] revert r68310 because of race conditions detected by tsans
https://bugs.webkit.org/show_bug.cgi?id=53185
- DEPS: Roll chromium to 72673 to pick up sqlite revert.
- 1:07 PM Changeset in webkit [76712] by
-
- 2 edits in trunk/LayoutTests
Skip fast/loader/willSendRequest-null-for-preload.html on GTK, because GTK doesn't have
support for setWillSendRequestReturnsNull.
- platform/gtk/Skipped:
- 1:02 PM Changeset in webkit [76711] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Another unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt:
- 12:46 PM Changeset in webkit [76710] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update.
- platform/chromium/test_expectations.txt:
- 12:45 PM Changeset in webkit [76709] by
-
- 2 edits2 adds in trunk/Tools
2011-01-26 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
new-run-webkit-tests: add a "mock DRT" port implementation
and a separate class that emulates what we expect the
DumpRenderTree behavior to be.
This will eventually replace port/dryrun.py and allow us to get
better test coverage of the new-run-webkit-tests code as well as
a reference for what new-run-webkit-tests expects from DRT.
This is the first attempt at this, and it is pretty bare-boned. It
really only has been tested on the 'mac' port (and a little on
the 'chromium-mac' port.
- Scripts/webkitpy/layout_tests/port/mock_drt.py: Added.
- Scripts/webkitpy/layout_tests/port/mock_drt_unittest.py: Added.
- Scripts/webkitpy/layout_tests/port/factory.py:
- 12:42 PM Changeset in webkit [76708] by
-
- 3 edits2 adds in trunk
2011-01-26 Justin Schuh <jschuh@chromium.org>
Reviewed by Adam Barth.
Make fireEventsAndUpdateStyle use stack local vectors.
https://bugs.webkit.org/show_bug.cgi?id=46760
Test: animations/animation-add-events-in-handler.html
- page/animation/AnimationController.cpp: (WebCore::AnimationControllerPrivate::fireEventsAndUpdateStyle):
2011-01-26 Justin Schuh <jschuh@chromium.org>
Reviewed by Adam Barth.
Make fireEventsAndUpdateStyle use stack local vectors.
https://bugs.webkit.org/show_bug.cgi?id=46760
- animations/animation-add-events-in-handler-expected.txt: Added.
- animations/animation-add-events-in-handler.html: Added.
- 12:32 PM Changeset in webkit [76707] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Tony Chang <tony@chromium.org>
Unreviewed, marking fast/overflow/overflow-rtl-vertical.html as
passing. This was fixed in r76669.
- platform/chromium/test_expectations.txt:
- 12:12 PM Changeset in webkit [76706] by
-
- 2 edits in trunk/LayoutTests
Skip fast/loader/willSendRequest-null-for-preload.html on WebKit2, because WebKit2 doesn't have
setWillSendRequestReturnsNull yet.
This is tracked by https://bugs.webkit.org/show_bug.cgi?id=42690.
- platform/mac-wk2/Skipped:
- 12:03 PM Changeset in webkit [76705] by
-
- 3 edits1 add1 delete in trunk/LayoutTests
Update the test landed in r76701 to not depend on loading a "script" from http://example.com, make it
use a local script (which still reproduces the crash).
Reviewed by Ryosuke Niwa.
- fast/loader/resources/empty-script.js: Added.
- fast/loader/willSendRequest-null-for-preload-expected.txt: Removed the line for the console error.
- fast/loader/willSendRequest-null-for-preload.html: Have the script in the head be a local script.
- platform/win/fast/loader: Removed.
- platform/win/fast/loader/willSendRequest-null-for-preload-expected.txt: Removed. No need for platform-specific results.
- 11:53 AM Changeset in webkit [76704] by
-
- 2 edits in trunk/Tools
2011-01-26 Xianzhu Wang <wangxianzhu@google.com>
Reviewed by Tony Chang.
Add '--no-timeout' option to Chromium DRT to ease debugging.
https://bugs.webkit.org/show_bug.cgi?id=52873
- DumpRenderTree/chromium/DumpRenderTree.cpp: (main):
- 11:43 AM Changeset in webkit [76703] by
-
- 5 edits in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Another unreviewed Chromium rebaselines for r76688.
- platform/chromium-win/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect3-expected.png:
- platform/chromium-win/svg/custom/use-setAttribute-crash-expected.checksum:
- platform/chromium-win/svg/custom/use-setAttribute-crash-expected.png:
- 11:14 AM Changeset in webkit [76702] by
-
- 6 edits in trunk/Source/WebCore
2011-01-26 Nate Chapin <Nate Chapin>
Reviewed by Adam Barth.
Remove m_URL from FrameLoader and depend on Document::url()
instead. FrameLoader::url() will be removed in a followup patch.
https://bugs.webkit.org/show_bug.cgi?id=41165
Refactor only, no new tests.
- WebCore.exp.in:
- dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::updateURLForPushOrReplaceState):
- loader/DocumentWriter.cpp: (WebCore::DocumentWriter::begin):
- loader/FrameLoader.cpp: (WebCore::FrameLoader::iconURL): (WebCore::FrameLoader::didOpenURL): (WebCore::FrameLoader::didExplicitOpen): (WebCore::FrameLoader::receivedFirstData): (WebCore::FrameLoader::url): (WebCore::FrameLoader::setOutgoingReferrer): (WebCore::FrameLoader::startIconLoader): (WebCore::FrameLoader::commitIconURLToIconDatabase): (WebCore::FrameLoader::finishedParsing): (WebCore::FrameLoader::checkIfDisplayInsecureContent): (WebCore::FrameLoader::checkIfRunInsecureContent): (WebCore::FrameLoader::updateFirstPartyForCookies): (WebCore::FrameLoader::loadInSameDocument): (WebCore::FrameLoader::commitProvisionalLoad): (WebCore::FrameLoader::open): (WebCore::FrameLoader::shouldScrollToAnchor):
- loader/FrameLoader.h: Rename setURL() to setOutgoingReferrer().
- 11:07 AM Changeset in webkit [76701] by
-
- 7 edits4 adds in trunk
Source/WebCore: Crashes loading pages when cancelling subresource loads through WebKit
https://bugs.webkit.org/show_bug.cgi?id=53123
<rdar://problem/8914361>
Reviewed by Antti Koivisto.
Fix a crash that happened when cancelling subresource loads through WebKit.
When a load is cancelled synchronously (via the WebKit client), CachedResourceLoader::requestResource
can be called recursively on the same function, either leading to infinite recursion, or deleting
an object when it is not done being used.
The fix for this was to call checkForPendingPreloads and servePendingRequests asynchronously when
CachedResourceLoader::loadDone was called synchronously (due to the load being cancelled synchronously).
Test: fast/loader/willSendRequest-null-for-preload.html
- loader/DocumentLoader.cpp:
(WebCore::DocumentLoader::setRequest): Only dispatch didReceiveServerRedirectForProvisionalLoadForFrame
if our new URL is non-null.
- loader/cache/CachedResourceLoader.cpp:
(WebCore::CachedResourceLoader::CachedResourceLoader): Initialize our timer.
(WebCore::CachedResourceLoader::loadDone): If the CachedResource we were passed in was 0, that means this
function was called synchronously
from CachedResourceRequest::load, and we don't want to call into checkForPendingPreloads synchronously,
so put it on a 0-delay timer to make the calls to checkForPendingPreloads and servePendingRequests asynchronous.
(WebCore::CachedResourceLoader::loadDonePendingActionTimerFired): Call checkForPendingPreloads and servePendingRequests.
(WebCore::CachedResourceLoader::checkForPendingPreloads): m_pendingPreloads is now a Deque instead of a Vector,
so use Deque methods.
- loader/cache/CachedResourceLoader.h: Add the timer, the timer callback function, and make m_pendingPreloads a Deque.
Source/WebKit2: Crashes loading pages when cancelling subresource loads through WebKit
https://bugs.webkit.org/show_bug.cgi?id=53123
<rdar://problem/8914361>
Reviewed by Antti Koivisto.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::dispatchDecidePolicyForMIMEType): If our URL is null, return early instead of dispatching
a message.
LayoutTests: Reviewed byAntti Koivisto.
Crashes loading pages when cancelling subresource loads through WebKit
https://bugs.webkit.org/show_bug.cgi?id=53123
<rdar://problem/8914361>
Add tests for crashing when cancelling subresource loads through WebKit via setWillSendRequestReturnsNull.
- fast/loader/willSendRequest-null-for-preload-expected.txt: Added.
- fast/loader/willSendRequest-null-for-preload.html: Added.
- 11:05 AM CSS21Results edited by
- Added rtl-linebreak (was missing because Simon had marked as invalid), … (diff)
- 10:40 AM Changeset in webkit [76700] by
-
- 29 edits in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium Linux rebaselines for r76688.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png:
- platform/chromium-linux/svg/batik/text/textOnPathSpaces-expected.checksum:
- platform/chromium-linux/svg/batik/text/textOnPathSpaces-expected.png:
- platform/chromium-linux/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-linux/svg/batik/text/verticalText-expected.png:
- platform/chromium-linux/svg/batik/text/verticalTextOnPath-expected.checksum:
- platform/chromium-linux/svg/batik/text/verticalTextOnPath-expected.png:
- platform/chromium-linux/svg/custom/linking-a-03-b-all-expected.checksum:
- platform/chromium-linux/svg/custom/linking-a-03-b-all-expected.png:
- platform/chromium-linux/svg/custom/linking-a-03-b-viewBox-transform-expected.checksum:
- platform/chromium-linux/svg/custom/linking-a-03-b-viewBox-transform-expected.png:
- platform/chromium-linux/svg/custom/preserve-aspect-ratio-syntax-expected.checksum:
- platform/chromium-linux/svg/custom/preserve-aspect-ratio-syntax-expected.png:
- platform/chromium-linux/svg/custom/use-transform-expected.checksum:
- platform/chromium-linux/svg/custom/use-transform-expected.png:
- platform/chromium-linux/svg/custom/viewbox-syntax-expected.checksum:
- platform/chromium-linux/svg/custom/viewbox-syntax-expected.png:
- platform/chromium-linux/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-06-t-expected.png:
- 10:40 AM QtWebKit edited by
- (diff)
- 10:39 AM QtWebKitRelease21 edited by
- (diff)
- 10:24 AM Changeset in webkit [76699] by
-
- 3 edits2 adds in trunk
2011-01-25 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: evaluate in console may not work when window.console is substituted or deleted.
https://bugs.webkit.org/show_bug.cgi?id=53072
- inspector/console-substituted-expected.txt: Added.
- inspector/console-substituted.html: Added.
2011-01-25 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: evaluate in console may not work when window.console is substituted or deleted.
https://bugs.webkit.org/show_bug.cgi?id=53072
Test: inspector/console-substituted.html
- inspector/InjectedScriptSource.js: (.):
- 10:20 AM Changeset in webkit [76698] by
-
- 2 edits6 adds in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Layout test missing expectation after 58524
https://bugs.webkit.org/show_bug.cgi?id=38360
Unreviewed; Chromium rebaselines.
- platform/chromium-linux/fast/images/svg-background-partial-redraw-expected.checksum: Added.
- platform/chromium-linux/fast/images/svg-background-partial-redraw-expected.png: Added.
- platform/chromium-win/fast/images/svg-background-partial-redraw-expected.checksum: Added.
- platform/chromium-win/fast/images/svg-background-partial-redraw-expected.png: Added.
- platform/chromium-win/fast/images/svg-background-partial-redraw-expected.txt: Added.
- platform/chromium-win/svg/carto.net/tabgroup-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 10:17 AM Changeset in webkit [76697] by
-
- 4 edits3 adds in trunk
2011-01-26 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[cairo] Use CAIRO_OPERATOR_DARKEN when available
https://bugs.webkit.org/show_bug.cgi?id=53084
- platform/gtk/Skipped: Unskip test.
- platform/gtk/fast/canvas/canvas-composite-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-composite-expected.png: Added.
- platform/gtk/fast/canvas/canvas-composite-expected.txt: Added.
2011-01-26 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[cairo] Use CAIRO_OPERATOR_DARKEN when available
https://bugs.webkit.org/show_bug.cgi?id=53084
Use CAIRO_OPERATOR_DARKEN for CompositePlusDarker instead of
CAIRO_OPERATOR_SATURATE when building with cairo version >= 1.10.
- platform/graphics/cairo/CairoUtilities.cpp: (WebCore::toCairoOperator):
- 10:09 AM Changeset in webkit [76696] by
-
- 2 edits in trunk/Websites/planet.webkit.org
2011-01-26 Gustavo Noronha Silva <Gustavo Noronha Silva>
Rubber-stamped by Andreas Kling.
Fix my blog's feed URL, since it seems to have changed with the
new version of Wordpress causing unwanted posts to appear in
Planet WebKit.
- config.ini:
- 10:08 AM QtWebKitFeatures21 edited by
- (diff)
- 10:07 AM Changeset in webkit [76695] by
-
- 39 edits2 adds in trunk/LayoutTests
2011-01-26 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium rebaselines for r76688.
- platform/chromium-linux/fast/backgrounds/size/contain-and-cover-expected.checksum:
- platform/chromium-linux/fast/backgrounds/size/contain-and-cover-expected.png:
- platform/chromium-linux/fast/backgrounds/svg-as-background-5-expected.checksum:
- platform/chromium-linux/fast/backgrounds/svg-as-background-5-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
- platform/chromium-linux/svg/custom/focus-ring-expected.checksum:
- platform/chromium-linux/svg/custom/focus-ring-expected.png:
- platform/chromium-linux/svg/custom/svg-curve-with-relative-cordinates-expected.checksum:
- platform/chromium-linux/svg/custom/svg-curve-with-relative-cordinates-expected.png:
- platform/chromium-linux/svg/transforms/animated-path-inside-transformed-html-expected.checksum: Added.
- platform/chromium-linux/svg/transforms/animated-path-inside-transformed-html-expected.png: Added.
- platform/chromium-win/fast/backgrounds/size/contain-and-cover-expected.checksum:
- platform/chromium-win/fast/backgrounds/size/contain-and-cover-expected.png:
- platform/chromium-win/fast/backgrounds/svg-as-background-5-expected.checksum:
- platform/chromium-win/fast/backgrounds/svg-as-background-5-expected.png:
- platform/chromium-win/fast/images/animated-svg-as-image-expected.checksum:
- platform/chromium-win/fast/images/animated-svg-as-image-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-33-t-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-33-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-morph-01-f-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-01-b-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-01-b-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-03-t-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-03-t-expected.png:
- platform/chromium-win/svg/custom/focus-ring-expected.checksum:
- platform/chromium-win/svg/custom/focus-ring-expected.png:
- platform/chromium-win/svg/custom/svg-curve-with-relative-cordinates-expected.checksum:
- platform/chromium-win/svg/custom/svg-curve-with-relative-cordinates-expected.png:
- platform/chromium-win/svg/custom/use-css-events-expected.checksum:
- platform/chromium-win/svg/custom/use-css-events-expected.png:
- platform/chromium-win/svg/transforms/animated-path-inside-transformed-html-expected.checksum:
- platform/chromium-win/svg/transforms/animated-path-inside-transformed-html-expected.png:
- platform/chromium-win/svg/zoom/text/zoom-coords-viewattr-01-b-expected.checksum:
- platform/chromium-win/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png:
- 9:56 AM Changeset in webkit [76694] by
-
- 4 edits in trunk
[Qt] Fix qt_minimal build
https://bugs.webkit.org/show_bug.cgi?id=53172
Reviewed by Andreas Kling.
- Source/WebKit.pri:
- Tools/QtTestBrowser/locationedit.h:
- 9:41 AM QtWebKitFeatures22 edited by
- (diff)
- 9:38 AM QtWebKitRelease22 edited by
- (diff)
- 9:34 AM QtWebKitRelease21 edited by
- (diff)
- 9:32 AM Changeset in webkit [76693] by
-
- 3 edits in trunk/Tools
2011-01-26 Mansi Mithal <mansi.mithal@nokia.com>
Reviewed by Antonio Gomes.
QtTestBrowser should have a UI Setting to disable plugins
https://bugs.webkit.org/show_bug.cgi?id=52408
Added a new action item named "Disable Plugins"
under the "Settings" menu.
- QtTestBrowser/launcherwindow.cpp: (LauncherWindow::createChrome): (LauncherWindow::togglePlugins):
- QtTestBrowser/launcherwindow.h:
- 9:19 AM Changeset in webkit [76692] by
-
- 2 edits in trunk/Source/WebCore
2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: visualize \n in strings as unicode cr
symbol in stack variables sidebar.
https://bugs.webkit.org/show_bug.cgi?id=53162
- inspector/front-end/ObjectPropertiesSection.js: (WebInspector.ObjectPropertyTreeElement.prototype.update):
- 8:24 AM Changeset in webkit [76691] by
-
- 1 edit in trunk/Source/WebCore/ChangeLog
Unreviewed: fixed bug summary in ChangeLog entry for r76690.
- 8:06 AM Changeset in webkit [76690] by
-
- 3 edits in trunk/Source/WebCore
2011-01-26 Andrey Kosyakov <caseq@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: summary bar is not resized properly with the rest of network panel
- Set the size for 304/not modified resources from cached resource.
- Add response headers size to resource transfer size. https://bugs.webkit.org/show_bug.cgi?id=52886
- inspector/InspectorResourceAgent.cpp: (WebCore::InspectorResourceAgent::didReceiveResponse):
- inspector/front-end/Resource.js: (WebInspector.Resource): (WebInspector.Resource.prototype.get transferSize): (WebInspector.Resource.prototype.set responseHeaders): (WebInspector.Resource.prototype._headersSize): (WebInspector.Resource.prototype._mimeTypeIsConsistentWithType):
- 7:51 AM Changeset in webkit [76689] by
-
- 2 edits in trunk/Source/WebCore
2011-01-26 Carol Szabo <carol.szabo@nokia.com>
Reviewed by Simon Hausmann.
Fixed TiledBacking store to take into account new dirty regions caused by
paint time layouts.
Flawed rendering design for QtWebKit resulting in artifacts being displayed
https://bugs.webkit.org/show_bug.cgi?id=49184
There are no new tests as this patch aims at fixing flicker that
happen randomly, mostly on slow hardware, thus are hard to reproduce
consistently in an automated test.
This patch does not fully address the said bug but it is a step in the
right direction. A full solution to the bug, as currently perceived,
requires either a Qt GUI API change, a performance hit for QtWebKit,
or a hack, until a full solution is provided this patch is progress.
- platform/graphics/TiledBackingStore.cpp: (WebCore::TiledBackingStore::updateTileBuffers): Changed to take into account newly dirtied areas created during tile update initiated layouts during the same update.
- 6:50 AM Changeset in webkit [76688] by
-
- 6 edits in trunk/Source/WebCore
2011-01-26 Patrick Gansterer <Patrick Gansterer>
Reviewed by Andreas Kling.
[SKIA] Remove "current path" of GraphicsContext
https://bugs.webkit.org/show_bug.cgi?id=53124
- platform/graphics/GraphicsContext.h:
- platform/graphics/skia/GraphicsContextSkia.cpp: (WebCore::GraphicsContext::clipPath): (WebCore::GraphicsContext::fillPath): (WebCore::GraphicsContext::strokePath):
- platform/graphics/skia/PathSkia.cpp: (WebCore::Path::strokeBoundingRect):
- platform/graphics/skia/PlatformContextSkia.cpp:
- platform/graphics/skia/PlatformContextSkia.h:
- 6:11 AM Changeset in webkit [76687] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-26 Patrick Gansterer <Patrick Gansterer>
Reviewed by Andreas Kling.
[WINCE] Add JIT support to build system
https://bugs.webkit.org/show_bug.cgi?id=53079
- CMakeListsWinCE.txt:
- 6:09 AM Changeset in webkit [76686] by
-
- 2 edits in trunk/Source/WebCore
2011-01-26 Zalan Bujtas <zbujtas@gmail.com>
Reviewed by Andreas Kling.
[Qt] Path::normalAngleAtLength() returns incorrect value on ACID3.
QPainterPath returns angle values with the origo being at the top left corner,
we need to account for this in normalAngleAtLength().
This Regressed with r66979.
No new tests as this is already covered by ACID3.
- platform/graphics/qt/PathQt.cpp: (WebCore::Path::normalAngleAtLength):
- 5:06 AM Changeset in webkit [76685] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Maciej Stachowiak <mjs@apple.com>
Reviewed by Andreas Kling.
Skip a test for WebKit2 that uses eventSender
https://bugs.webkit.org/show_bug.cgi?id=53168
- platform/mac-wk2/Skipped:
- 3:43 AM Changeset in webkit [76684] by
-
- 2 edits in trunk/Source/WebKit/cf
2011-01-26 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: inspector should start in attached state by default
https://bugs.webkit.org/show_bug.cgi?id=53165
- WebCoreSupport/WebInspectorClientCF.cpp: (WebInspectorClient::inspectorStartsAttached):
- 3:39 AM Changeset in webkit [76683] by
-
- 9 edits in trunk
2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Not reviewed: inspector tests fix.
- http/tests/inspector/inspector-test2.js: (initialize_InspectorTest.InspectorTest.evaluateInPage):
- inspector/console-format.html:
- 2:26 AM Changeset in webkit [76682] by
-
- 2 edits63 adds in trunk/LayoutTests
2011-01-26 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed, unskip passing canvas tests in GTK port.
- platform/gtk/Skipped: Unskip passing canvas tests.
- platform/gtk/fast/canvas/arc360-expected.checksum: Added.
- platform/gtk/fast/canvas/arc360-expected.png: Added.
- platform/gtk/fast/canvas/arc360-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-as-image-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-as-image-expected.png: Added.
- platform/gtk/fast/canvas/canvas-as-image-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-as-image-incremental-repaint-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-as-image-incremental-repaint-expected.png: Added.
- platform/gtk/fast/canvas/canvas-as-image-incremental-repaint-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-before-css-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-before-css-expected.png: Added.
- platform/gtk/fast/canvas/canvas-before-css-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-bg-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-bg-expected.png: Added.
- platform/gtk/fast/canvas/canvas-bg-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-bg-zoom-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-bg-zoom-expected.png: Added.
- platform/gtk/fast/canvas/canvas-bg-zoom-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-incremental-repaint-2-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-incremental-repaint-2-expected.png: Added.
- platform/gtk/fast/canvas/canvas-incremental-repaint-2-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-resize-reset-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-resize-reset-expected.png: Added.
- platform/gtk/fast/canvas/canvas-resize-reset-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-size-change-after-layout-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-size-change-after-layout-expected.png: Added.
- platform/gtk/fast/canvas/canvas-size-change-after-layout-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-text-baseline-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-text-baseline-expected.png: Added.
- platform/gtk/fast/canvas/canvas-text-baseline-expected.txt: Added.
- platform/gtk/fast/canvas/canvas-transforms-during-path-expected.checksum: Added.
- platform/gtk/fast/canvas/canvas-transforms-during-path-expected.png: Added.
- platform/gtk/fast/canvas/canvas-transforms-during-path-expected.txt: Added.
- platform/gtk/fast/canvas/canvasDrawingIntoSelf-expected.checksum: Added.
- platform/gtk/fast/canvas/canvasDrawingIntoSelf-expected.png: Added.
- platform/gtk/fast/canvas/canvasDrawingIntoSelf-expected.txt: Added.
- platform/gtk/fast/canvas/drawImage-expected.checksum: Added.
- platform/gtk/fast/canvas/drawImage-expected.png: Added.
- platform/gtk/fast/canvas/drawImage-expected.txt: Added.
- platform/gtk/fast/canvas/drawImage-with-globalAlpha-expected.checksum: Added.
- platform/gtk/fast/canvas/drawImage-with-globalAlpha-expected.png: Added.
- platform/gtk/fast/canvas/drawImage-with-globalAlpha-expected.txt: Added.
- platform/gtk/fast/canvas/fill-stroke-clip-reset-path-expected.checksum: Added.
- platform/gtk/fast/canvas/fill-stroke-clip-reset-path-expected.png: Added.
- platform/gtk/fast/canvas/fill-stroke-clip-reset-path-expected.txt: Added.
- platform/gtk/fast/canvas/fillrect-gradient-zero-stops-expected.checksum: Added.
- platform/gtk/fast/canvas/fillrect-gradient-zero-stops-expected.png: Added.
- platform/gtk/fast/canvas/fillrect-gradient-zero-stops-expected.txt: Added.
- platform/gtk/fast/canvas/fillrect_gradient-expected.checksum: Added.
- platform/gtk/fast/canvas/fillrect_gradient-expected.png: Added.
- platform/gtk/fast/canvas/fillrect_gradient-expected.txt: Added.
- platform/gtk/fast/canvas/gradient-add-second-start-end-stop-expected.checksum: Added.
- platform/gtk/fast/canvas/gradient-add-second-start-end-stop-expected.png: Added.
- platform/gtk/fast/canvas/gradient-add-second-start-end-stop-expected.txt: Added.
- platform/gtk/fast/canvas/image-object-in-canvas-expected.checksum: Added.
- platform/gtk/fast/canvas/image-object-in-canvas-expected.png: Added.
- platform/gtk/fast/canvas/image-object-in-canvas-expected.txt: Added.
- platform/gtk/fast/canvas/quadraticCurveTo-expected.checksum: Added.
- platform/gtk/fast/canvas/quadraticCurveTo-expected.png: Added.
- platform/gtk/fast/canvas/quadraticCurveTo-expected.txt: Added.
- platform/gtk/fast/canvas/zero-size-fill-rect-expected.checksum: Added.
- platform/gtk/fast/canvas/zero-size-fill-rect-expected.png: Added.
- platform/gtk/fast/canvas/zero-size-fill-rect-expected.txt: Added.
- 2:24 AM Changeset in webkit [76681] by
-
- 2 edits in trunk/Source/WebCore
2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: live edit does not update source snippet.
https://bugs.webkit.org/show_bug.cgi?id=53097
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._scriptSourceChanged):
- 2:19 AM Changeset in webkit [76680] by
-
- 13 edits in trunk/Source/WebCore
2011-01-26 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: Incorrect on-hover evaluation of a variable named 'profile'.
https://bugs.webkit.org/show_bug.cgi?id=53018
- inspector/InjectedScript.cpp: (WebCore::InjectedScript::evaluate): (WebCore::InjectedScript::evaluateOnCallFrame): (WebCore::InjectedScript::getCompletions): (WebCore::InjectedScript::getCompletionsOnCallFrame):
- inspector/InjectedScript.h:
- inspector/InjectedScriptSource.js: (.):
- inspector/Inspector.idl:
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::evaluateOnCallFrame): (WebCore::InspectorDebuggerAgent::getCompletionsOnCallFrame):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorRuntimeAgent.cpp: (WebCore::InspectorRuntimeAgent::evaluate): (WebCore::InspectorRuntimeAgent::getCompletions):
- inspector/InspectorRuntimeAgent.h:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.prototype.completions): (WebInspector.ConsoleView.prototype.evalInInspectedWindow): (WebInspector.ConsoleView.prototype._enterKeyPressed):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame.updatingCallbackWrapper): (WebInspector.ScriptsPanel.prototype.evaluateInSelectedCallFrame):
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype._showPopup):
- inspector/front-end/WatchExpressionsSidebarPane.js: (WebInspector.WatchExpressionsSection.prototype.update):
- 2:12 AM Changeset in webkit [76679] by
-
- 2 edits in trunk/Source/WebCore
2011-01-26 Hironori Bono <hbono@chromium.org>
Reviewed by Kent Tamura.
A speculative fix for Bug 52422 - [chromium] More crash in
FontFallbackList::determinePitch(const Font* font)
https://bugs.webkit.org/show_bug.cgi?id=52422
My previous change may not work on non-US Windows whose system fonts
have localized aliases matching to the system locale because of a
font-name mismatch in createFontIndirectAndGetWinName(). This change
tries all the fonts installed in a PC and returns the first font that we
can create without errors.
- platform/graphics/chromium/FontCacheChromiumWin.cpp: (WebCore::GetLastResortFallbackFontProcData::GetLastResortFallbackFontProcData): Added a struct used for getLastResortFallbackFontProc(). (WebCore::getLastResortFallbackFontProc): Added a callback for EnumFontFamilies(). (WebCore::FontCache::getLastResortFallbackFont): Use EnumFontFamilies() to find a last-resort font.
- 1:42 AM Changeset in webkit [76678] by
-
- 2 edits in trunk/LayoutTests
2011-01-26 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Mark some complex script tests as failing since r76674.
- platform/chromium/test_expectations.txt:
- 1:18 AM Changeset in webkit [76677] by
-
- 12 edits3 adds in trunk
2011-01-26 James Robinson <jamesr@chromium.org>
Reviewed by Nate Chapin.
Add a DOMTimeStamp parameter to the requestAnimationFrame callback
https://bugs.webkit.org/show_bug.cgi?id=53142
Adds a test for the parameter passed to the requestAnimationFrame callback.
- fast/animation/request-animation-frame-timestamps-expected.txt: Added.
- fast/animation/request-animation-frame-timestamps.html: Added.
- fast/animation/script-tests/request-animation-frame-timestamps.js: Added.
2011-01-26 James Robinson <jamesr@chromium.org>
Reviewed by Nate Chapin.
Add a DOMTimeStamp parameter to the requestAnimationFrame callback
https://bugs.webkit.org/show_bug.cgi?id=53142
This adds a DOMTimeStamp parameter to the requestAnimationFrame callback to more
closely match mozilla's proposal. This is useful if the page has multiple imperative animations
and wants to ensure that they all remain synchronized. If each callback used Date.now() to
update its animation state, they would potentially be out of sync with each other. If they use
the timestamp then all callbacks for the same "frame" will update to the same state.
Test: fast/animation/request-animation-frame-timestamps.html
- bindings/scripts/CodeGeneratorV8.pm:
- bindings/scripts/test/V8/V8TestCallback.cpp: (WebCore::V8TestCallback::callbackWithClass2Param):
- dom/Document.cpp: (WebCore::Document::serviceScriptedAnimations):
- dom/Document.h:
- dom/RequestAnimationFrameCallback.h:
- dom/RequestAnimationFrameCallback.idl:
- page/FrameView.cpp: (WebCore::FrameView::serviceScriptedAnimations):
- page/FrameView.h:
2011-01-26 James Robinson <jamesr@chromium.org>
Reviewed by Nate Chapin.
Add a DOMTimeStamp parameter to the requestAnimationFrame callback
https://bugs.webkit.org/show_bug.cgi?id=53142
Provides a timestamp to use for imperative animation callbacks. In this patch the timestamp is
just the current time at the start of the callback invocation algorithm. In the future we
could enhance this to try to take the compositing delay into effect to try to synchronize
imperative animations more closely with declarative ones, but this should do for now.
- src/WebViewImpl.cpp: (WebKit::WebViewImpl::animate):
Jan 25, 2011:
- 11:58 PM Changeset in webkit [76676] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Yuzo Fujishima <yuzo@google.com>
Unreviewed attempt to fix compilation error for Chromium Clang.
- platform/graphics/mac/ComplexTextController.cpp: (WebCore::ComplexTextController::advance):
- 11:17 PM Changeset in webkit [76675] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change
Mark fast/text/offsetForPosition-complex-fallback.html as failing for WIN and LINUX.
- platform/chromium/test_expectations.txt:
- 10:08 PM Changeset in webkit [76674] by
-
- 6 edits2 adds in trunk
2011-01-25 Ned Holbrook <nholbrook@apple.com>
Reviewed by Dan Bernstein.
ComplexTextController incorrectly conflates string length and range of indexes
https://bugs.webkit.org/show_bug.cgi?id=52760
- fast/text/offsetForPosition-complex-fallback-expected.txt: Added.
- fast/text/offsetForPosition-complex-fallback.html: Added.
2011-01-25 Ned Holbrook <nholbrook@apple.com>
Reviewed by Dan Bernstein.
ComplexTextController incorrectly conflates string length and range of indexes
https://bugs.webkit.org/show_bug.cgi?id=52760
Test: fast/text/offsetForPosition-complex-fallback.html
- platform/graphics/mac/ComplexTextController.cpp: (WebCore::ComplexTextController::offsetForPosition): (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun): (WebCore::ComplexTextController::ComplexTextRun::setIsNonMonotonic): (WebCore::ComplexTextController::advance):
- platform/graphics/mac/ComplexTextController.h: (WebCore::ComplexTextController::ComplexTextRun::create): (WebCore::ComplexTextController::ComplexTextRun::indexEnd):
- platform/graphics/mac/ComplexTextControllerATSUI.cpp: (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun):
- platform/graphics/mac/ComplexTextControllerCoreText.cpp: (WebCore::ComplexTextController::ComplexTextRun::ComplexTextRun): (WebCore::ComplexTextController::collectComplexTextRunsForCharactersCoreText):
- 9:41 PM Changeset in webkit [76673] by
-
- 2 edits in trunk/LayoutTests
Make this test a bit more robust agains different scrollbar widths.
- fast/overflow/overflow-rtl-vertical-origin.html:
- 9:15 PM Changeset in webkit [76672] by
-
- 2 edits in tags/Safari-534.16.2/Source/WebKit/win
Merge r76671.
- 9:13 PM Changeset in webkit [76671] by
-
- 2 edits in trunk/Source/WebKit/win
Windows production build fix.
Build correct configuration of Interfaces for Debug_All.
- WebKit.vcproj/WebKit.submit.sln:
- 9:04 PM Changeset in webkit [76670] by
-
- 2 edits in tags/Safari-534.16.2/Source/WebCore
Merge r76665.
- 9:02 PM Changeset in webkit [76669] by
-
- 3 edits2 adds in trunk
Scrollbars don't work correctly for top-to-bottom text in an overflow: scroll area
https://bugs.webkit.org/show_bug.cgi?id=53048
Reviewed by David Hyatt.
Source/WebCore:
Test: fast/overflow/overflow-rtl-vertical-origin.html
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::scrollPosition):
(WebCore::RenderLayer::updateScrollInfoAfterLayout):
Take the scroll origin into account when calculating scrollbars in more places.
LayoutTests:
- fast/overflow/overflow-rtl-vertical-origin-expected.txt: Added.
- fast/overflow/overflow-rtl-vertical-origin.html: Added.
- 8:50 PM Changeset in webkit [76668] by
-
- 7 edits3 adds in trunk
2011-01-25 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.checksum: Added.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.png: Added.
- platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: Added.
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.checksum:
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.png:
- platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.txt:
- platform/chromium/test_expectations.txt:
2011-01-25 Kent Tamura <tkent@chromium.org>
Unreviewed trivial change.
- DEPS: Roll to r72581 to have a webkit_support fix.
- 8:47 PM Changeset in webkit [76667] by
-
- 5 edits in tags/Safari-534.16.2/Source
Versioning.
- 8:40 PM Changeset in webkit [76666] by
-
- 1 copy in tags/Safari-534.16.2
New tag.
- 8:39 PM Changeset in webkit [76665] by
-
- 2 edits in trunk/Source/WebCore
Windows production build fix.
Use correct configuration-specific path in makefile.
- WebCore.vcproj/WebCore.make:
- 8:18 PM Changeset in webkit [76664] by
-
- 10 edits2 adds in trunk
Radio button group state is not restored correctly
https://bugs.webkit.org/show_bug.cgi?id=50442
Reviewed by Dimitri Glazkov.
Source/WebCore:
Fixes a bug that radio button states are not restored correctly in
a case that non-first radio button in a group is checked.
If "checked" attribute is present, the radio button is checked and
other radio buttons in the group are unchecked. This behavior
disturbs form state restoring. This patch changes this behavior so
that the "checked" attribute handling is delayed after form state
restoring.
Test: fast/forms/state-restore-radio-group.html
- html/HTMLFormControlElement.h: Make finishParsingChildren() protected so that HTMLInpuElement can call it.
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::HTMLInputElement):
- Add createdByParser parameter.
- Initialize m_stateRestored and m_parsingInProgress.
(WebCore::HTMLInputElement::create): Sync with the constructor.
(WebCore::HTMLInputElement::restoreFormControlState):
Set m_stateRestored in order to refer it in finishParsingChildren().
(WebCore::HTMLInputElement::parseMappedAttribute):
Don't call setChecked() during parsing. Move setNeedsValidityCheck()
to setChecked().
(WebCore::HTMLInputElement::finishParsingChildren):
Call setChecked() if form state is not restored.
(WebCore::HTMLInputElement::setChecked):
Move setNeedsValidityCheck() from parseMappedAttribute() because
finishParsingChildren() also needs to call setNeedsValidityCheck().
- html/HTMLInputElement.h:
- Remove the default value of HTMLFormElement* of the HTMLInputElement constructor, and add createdByParser parameter.
- Introduce m_parsingInProgress and m_stateRestored.
- html/HTMLIsIndexElement.cpp:
(WebCore::HTMLIsIndexElement::HTMLIsIndexElement):
Sync with the HTMLInputElement constructor change.
- html/HTMLTagNames.in: Add constructorNeedsCreatedByParser flag.
- rendering/MediaControlElements.cpp:
(WebCore::MediaControlInputElement::MediaControlInputElement):
Sync with the HTMLInputElement constructor change.
- rendering/ShadowElement.cpp:
(WebCore::ShadowInputElement::ShadowInputElement): ditto.
- rendering/ShadowElement.h:
(WebCore::ShadowElement::ShadowElement): ditto.
LayoutTests:
- fast/forms/state-restore-radio-group-expected.txt: Added.
- fast/forms/state-restore-radio-group.html: Added.
- 8:00 PM Changeset in webkit [76663] by
-
- 10 edits in trunk
HTMLFormElement::checkValidity() returns incorrect result if 'invalid' events are canceled.
https://bugs.webkit.org/show_bug.cgi?id=52565
Reviewed by Dimitri Glazkov.
Source/WebCore:
- html/HTMLFormElement.cpp:
(WebCore::HTMLFormElement::validateInteractively):
Check checkInvalidControlsAndCollectUnhandled() result instead of
checking emptiness of unhandled invalid controls list.
(WebCore::HTMLFormElement::checkValidity): ditto.
(WebCore::HTMLFormElement::checkInvalidControlsAndCollectUnhandled):
Renamed from collectUnhandledInvalidControls().
Returns true if there is any invalid control regardless of event canceling.
- html/HTMLFormElement.h: Rename collectUnhandledInvalidControls() to checkInvalidControlsAndCollectUnhandled().
LayoutTests:
Fix tests and results for the behavior change.
- fast/forms/checkValidity-cancel-expected.txt:
- fast/forms/checkValidity-handler-updates-dom-expected.txt:
- fast/forms/interactive-validation-cancel-expected.txt:
- fast/forms/interactive-validation-cancel.html:
- fast/forms/script-tests/checkValidity-cancel.js:
- fast/forms/script-tests/checkValidity-handler-updates-dom.js:
- 7:50 PM Changeset in webkit [76662] by
-
- 10 edits in trunk
2011-01-25 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Range and number inputs should reject increment and decrement by
keyboard or mouse wheel if they are disabled or read-only
https://bugs.webkit.org/show_bug.cgi?id=53151
Add checks for 'disabled' and 'readOnly'.
- fast/forms/input-number-keyoperation-expected.txt:
- fast/forms/input-number-wheel-expected.txt:
- fast/forms/range-keyoperation-expected.txt:
- fast/forms/range-keyoperation.html:
- fast/forms/script-tests/input-number-keyoperation.js:
- fast/forms/script-tests/input-number-wheel.js:
2011-01-25 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Range and number inputs should reject increment and decrement by
keyboard or mouse wheel if they are disabled or read-only
https://bugs.webkit.org/show_bug.cgi?id=53151
- html/RangeInputType.cpp: (WebCore::RangeInputType::handleKeydownEvent): Check disabled() and readOnly().
- html/TextFieldInputType.cpp: (WebCore::TextFieldInputType::handleKeydownEventForSpinButton): ditto. (WebCore::TextFieldInputType::handleWheelEventForSpinButton): ditto.
- 7:44 PM Changeset in webkit [76661] by
-
- 17 edits2 adds in trunk/Source/WebCore
API to support localized numbers for <input type=number>
https://bugs.webkit.org/show_bug.cgi?id=45730
Reviewed by Dimitri Glazkov.
Introduce platform/text/LocalizedNumber.h, and
LocalizedNumberNone.cpp, which is an empty implementation of the
functions in LocalizedNumber.h. We use LocalizedNumberNone.cpp in
all platforms for now.
A string in a type=number field is parsed as a localized number
first. If the parsing fails, it is parsed as the HTML5 number.
We introduce HTMLInputElement::visibleValue(). It represents a value
which should be drawn by a renderer. HTMLInputElement::value() always
returns a number formatted for HTML5, and visibleValue() may return a
localized number.
No new tests because this doesn't change any behavior.
- Android.mk: Add LocalizedNumber.h and/or LocalizedNumberNone.cpp.
- CMakeLists.txt: ditto.
- GNUmakefile.am: ditto.
- WebCore.gypi: ditto.
- WebCore.pro: ditto.
- WebCore.vcproj/WebCore.vcproj: ditto.
- WebCore.xcodeproj/project.pbxproj: ditto.
- dom/InputElement.h: Add visibleValue().
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::visibleValue): Added. Just call InputType::visibleValue().
- html/HTMLInputElement.h: Declare visibleValue().
- html/InputType.cpp:
(WebCore::InputType::visibleValue): Add the default implementation of
visibleValue(), which returns HTMLInputElement::value().
- html/InputType.h: Add declarations.
- html/NumberInputType.cpp:
(WebCore::isHTMLNumberCharacter): Renamed from isNumberCharacter().
(WebCore::isNumberCharacter): Calls isLocalizedNumberCharacter() and isHTMLNumberCharacter().
(WebCore::NumberInputType::visibleValue):
Returns a localized number string produced by formatLocalizedNumber().
(WebCore::NumberInputType::isAcceptableValue): Calls parseLocalizedNumber().
(WebCore::NumberInputType::sanitizeValue): Calls parseLocalizedNumber().
- html/NumberInputType.h: Add declarations.
- platform/text/LocalizedNumber.h: Added.
- platform/text/LocalizedNumberNone.cpp: Added.
(WebCore::parseLocalizedNumber):
(WebCore::formatLocalizedNumber):
(WebCore::isLocalizedNumberCharacter):
- rendering/RenderTextControlSingleLine.cpp:
(WebCore::RenderTextControlSingleLine::updateFromElement):
Calls InputElement::visibleValue() instead of value().
- wml/WMLInputElement.h:
(WebCore::WMLInputElement::visibleValue): Added. It just calls value().
- 7:29 PM Changeset in webkit [76660] by
-
- 3 edits1 add in trunk/Source/WebCore
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=53143
Add IntRectHash
- WebCore.xcodeproj/project.pbxproj:
- platform/graphics/IntRectHash.h: Added.
- platform/graphics/IntSizeHash.h: Don't do "using WebCore::IntSize"!
- 7:19 PM Changeset in webkit [76659] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Ilya Sherman <isherman@chromium.org>
Reviewed by Ryosuke Niwa.
Remove trailing whitespace in HTMLInputElement.cpp
https://bugs.webkit.org/show_bug.cgi?id=53152
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::updateCheckedRadioButtons): (WebCore::HTMLInputElement::applyStep): (WebCore::HTMLInputElement::updateFocusAppearance): (WebCore::HTMLInputElement::mapToEntry): (WebCore::HTMLInputElement::setAutofilled): (WebCore::HTMLInputElement::willMoveToNewOwnerDocument): (WebCore::HTMLInputElement::didMoveToNewOwnerDocument):
- 6:13 PM Changeset in webkit [76658] by
-
- 3 edits in trunk/Source/WebCore
2011-01-25 Mike Reed <reed@google.com>
Reviewed by James Robinson.
DrawingBufer::reset() today checks if the new size is the same as its
m_size, and if so, returns immediately. This does not match the
semantics of <canvas>, which wants to clear its contents anytime the
size is specified.
https://bugs.webkit.org/show_bug.cgi?id=53149
Test: Covered by existing <canvas> tests using gpu.
- platform/graphics/chromium/DrawingBufferChromium.cpp: (WebCore::DrawingBuffer::DrawingBuffer):
- platform/graphics/gpu/DrawingBuffer.cpp: (WebCore::DrawingBuffer::reset):
- 5:54 PM Changeset in webkit [76657] by
-
- 10 edits in trunk/Source/WebKit2
WK2 leaks when a page is closed
https://bugs.webkit.org/show_bug.cgi?id=53100
Reviewed by Darin Adler.
Allow the WKView a chance to clean up on a page close. In this case,
cleaning up means removing the references the accessibility token has
to the window.
- UIProcess/API/mac/PageClientImpl.h:
- UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::pageClosed):
- UIProcess/API/mac/WKView.mm:
(-[WKView _setRemoteAccessibilityWindow:]):
(-[WKView _setAccessibilityChildToken:]):
(-[WKView _processDidCrash]):
(-[WKView _pageClosed]):
- UIProcess/API/mac/WKViewInternal.h:
- UIProcess/API/qt/qwkpage_p.h:
(QWKPagePrivate::pageClosed):
- UIProcess/PageClient.h:
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::close):
- UIProcess/win/WebView.cpp:
(WebKit::WebView::pageClosed):
- UIProcess/win/WebView.h:
- 5:17 PM Changeset in webkit [76656] by
-
- 3 edits2 moves in trunk
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Barth.
Move main CMakeLists.txt into Source directory
https://bugs.webkit.org/show_bug.cgi?id=52888
- CMakeLists.txt: Removed.
- Source/CMakeLists.txt: Copied from CMakeLists.txt.
- Source/cmakeconfig.h.cmake: Copied from cmakeconfig.h.cmake.
- cmakeconfig.h.cmake: Removed.
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Barth.
Move main CMakeLists.txt into Source directory
https://bugs.webkit.org/show_bug.cgi?id=52888
- Scripts/webkitdirs.pm:
- 5:07 PM CSS21Results edited by
- (diff)
- 4:50 PM Changeset in webkit [76655] by
-
- 2 edits in trunk/Tools
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Eric Seidel.
Improve label text in submit-to-ews
https://bugs.webkit.org/show_bug.cgi?id=53130
- QueueStatusServer/templates/submittoews.html:
- 4:39 PM CSS21Results edited by
- (diff)
- 4:36 PM Changeset in webkit [76654] by
-
- 5 edits in trunk/Source/WebKit2
2011-01-25 Chris Marrin <cmarrin@apple.com>
Reviewed by Adam Roben.
Expose WebGL flag set/get in WK2
https://bugs.webkit.org/show_bug.cgi?id=53096
- Shared/WebPreferencesStore.h:
- UIProcess/API/C/WKPreferences.cpp: (WKPreferencesSetWebGLEnabled): (WKPreferencesGetWebGLEnabled):
- UIProcess/API/C/WKPreferencesPrivate.h:
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::updatePreferences):
- 4:23 PM CSS21Results edited by
- (diff)
- 4:18 PM Changeset in webkit [76653] by
-
- 5 edits1 add in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Adam Roben.
Add and implement LayerTreeHost::scheduleLayerFlush
https://bugs.webkit.org/show_bug.cgi?id=53135
- WebKit2.xcodeproj/project.pbxproj: Add LayerTreeHostMac.mm.
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::scheduleCompositingLayerSync): Call LayerTreeHost::scheduleLayerFlush.
- WebProcess/WebPage/LayerTreeHost.cpp: (WebKit::LayerTreeHost::~LayerTreeHost): Call platformInvalidate().
(WebKit::LayerTreeHost::flushPendingLayerChanges):
Rename from syncCompositingLayers.
- WebProcess/WebPage/mac/LayerTreeHostMac.mm: Added. (WebKit::LayerTreeHost::scheduleLayerFlush): Create a run loop observer if needed. This code is copied from LayerBackedDrawingAreaMac.mm
(WebKit::LayerTreeHost::platformInvalidate):
Invalidate the run loop observer.
(WebKit::LayerTreeHost::flushPendingLayerChangesRunLoopObserverCallback):
Call flushPendingChanges() and remove the run loop observer if it succeeded.
- 4:10 PM Changeset in webkit [76652] by
-
- 6 edits2 adds in trunk
2011-01-25 Cris Neckar <cdn@chromium.org>
Reviewed by Adam Barth.
Test for crash when a window's location changes before creating an object URL.
https://bugs.webkit.org/show_bug.cgi?id=53038
- fast/dom/window-domurl-crash-expected.txt: Added.
- fast/dom/window-domurl-crash.html: Added.
2011-01-25 Cris Neckar <cdn@chromium.org>
Reviewed by Adam Barth.
Add a hashset of DOMURLs to ScriptExecutionContext to track back references.
https://bugs.webkit.org/show_bug.cgi?id=53038
Test: fast/dom/window-domurl-crash.html
- dom/ScriptExecutionContext.cpp: (WebCore::ScriptExecutionContext::~ScriptExecutionContext): (WebCore::ScriptExecutionContext::createdDomUrl): (WebCore::ScriptExecutionContext::destroyedDomUrl):
- dom/ScriptExecutionContext.h: (WebCore::ScriptExecutionContext::domUrls):
- html/DOMURL.cpp: (WebCore::DOMURL::DOMURL): (WebCore::DOMURL::~DOMURL): (WebCore::DOMURL::contextDestroyed):
- html/DOMURL.h: (WebCore::DOMURL::scriptExecutionContext):
- 4:07 PM CSS21Results edited by
- (diff)
- 4:04 PM CSS21Results edited by
- (diff)
- 3:59 PM CSS21Results edited by
- (diff)
- 3:47 PM Changeset in webkit [76651] by
-
- 2 edits in tags/Safari-534.16.1/Source/JavaScriptCore
Merge r76650.
- 3:46 PM Changeset in webkit [76650] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows Production build fix
Reviewed by Steve Falkenburg.
- JavaScriptCore.vcproj/JavaScriptCore.make: Set BUILDSTYLE to Release_PGO at the very start
of the file so that ConfigurationBuildDir takes that into account. Also set it the right way
(by redefining the macro) rather than the wrong way (by modifying the environment variable).
- 3:40 PM Changeset in webkit [76649] by
-
- 4 edits2 adds in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Simon Fraser.
Add LayerTreeHost class
https://bugs.webkit.org/show_bug.cgi?id=53132
- WebKit2.xcodeproj/project.pbxproj: Add LayerTreeHost files.
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::DrawingAreaImpl): Initialize m_layerTreeHost.
(WebKit::DrawingAreaImpl::setRootCompositingLayer):
Call the m_layerTreeHost.
- WebProcess/WebPage/LayerTreeHost.cpp: Added. (WebKit::LayerTreeHost::attachRootCompositingLayer): (WebKit::LayerTreeHost::detachRootCompositingLayer): Add stubbed out functions.
(WebKit::LayerTreeHost::syncCompositingLayers):
Sync the compositing layers in the main frame.
- WebProcess/WebPage/LayerTreeHost.h: Added.
- 3:31 PM Changeset in webkit [76648] by
-
- 17 edits in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=52983
Eliminate m_tagHistory pointer from CSSSelector
Reviewed by Darin Adler.
Keep the component selectors in the array in CSSSelectorList instead
of maintaining a linked list between them. This allows eliminating
m_tagHistory pointer, shrinking CSSSelector by 25% (selection performance
seems to improve some too due to better locality).
- WebCore.xcodeproj/project.pbxproj:
Make CSSSelector.h a private header.
- css/CSSGrammar.y:
Use CSSParserSelector during parsing to keep the tag history in
a linked list. This is flattened to an array after parsing.
Use accessors for setting selector values.
Use OwnPtr in selector vector.
- css/CSSPageRule.cpp:
(WebCore::CSSPageRule::CSSPageRule):
- css/CSSPageRule.h:
(WebCore::CSSPageRule::create):
Simplify.
- css/CSSParser.cpp:
(WebCore::CSSParser::~CSSParser):
(WebCore::CSSParser::createFloatingSelector):
(WebCore::CSSParser::sinkFloatingSelector):
(WebCore::CSSParser::createStyleRule):
(WebCore::CSSParser::updateSpecifiersWithElementName):
(WebCore::CSSParser::createPageRule):
- css/CSSParser.h:
(WebCore::CSSParser::reusableSelectorVector):
CSSSelector -> CSSParserSelector.
Use OwnPtr in selector vector.
- css/CSSParserValues.cpp:
(WebCore::CSSParserSelector::CSSParserSelector):
(WebCore::CSSParserSelector::~CSSParserSelector):
- css/CSSParserValues.h:
(WebCore::CSSParserSelector::releaseSelector):
(WebCore::CSSParserSelector::setTag):
(WebCore::CSSParserSelector::setValue):
(WebCore::CSSParserSelector::setAttribute):
(WebCore::CSSParserSelector::setArgument):
(WebCore::CSSParserSelector::setSimpleSelector):
(WebCore::CSSParserSelector::setMatch):
(WebCore::CSSParserSelector::setRelation):
(WebCore::CSSParserSelector::setForPage):
(WebCore::CSSParserSelector::pseudoType):
(WebCore::CSSParserSelector::isUnknownPseudoElement):
(WebCore::CSSParserSelector::isSimple):
(WebCore::CSSParserSelector::tagHistory):
(WebCore::CSSParserSelector::setTagHistory):
Linked list used during parsing.
Avoid recursive destruction.
- css/CSSSelector.cpp:
(WebCore::CSSSelector::extractPseudoType):
(WebCore::CSSSelector::operator==):
(WebCore::CSSSelector::selectorText):
(WebCore::CSSSelector::setSimpleSelector):
- css/CSSSelector.h:
(WebCore::CSSSelector::CSSSelector):
(WebCore::CSSSelector::~CSSSelector):
(WebCore::CSSSelector::tagHistory):
(WebCore::CSSSelector::tag):
(WebCore::CSSSelector::value):
(WebCore::CSSSelector::setTag):
(WebCore::CSSSelector::isLastInTagHistory):
(WebCore::CSSSelector::setNotLastInTagHistory):
(WebCore::CSSSelector::RareData::RareData):
(WebCore::CSSSelector::RareData::~RareData):
(WebCore::CSSSelector::createRareData):
(WebCore::CSSSelector::setValue):
Remove m_tagHistory.
Keep m_value in the union with the rare data pointer instead.
Make m_value and m_tag private, implement accessors.
Add a new bit to indicate end of the tag history (multipart selector).
Eliminate complex destruction. Selectors are now deleted as an array or by a CSSParserSelector chain.
- css/CSSSelectorList.cpp:
(WebCore::CSSSelectorList::adoptSelectorVector):
Flatten everything to an array.
(WebCore::SelectorNeedsNamespaceResolutionFunctor::operator()):
- css/CSSSelectorList.h:
(WebCore::CSSSelectorList::hasOneSelector):
(WebCore::CSSSelectorList::next):
Skip over the subparts of multipart selectors to find the next selector.
- css/CSSStyleRule.h:
(WebCore::CSSStyleRule::adoptSelectorVector):
CSSSelector -> CSSParserSelector.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::SelectorChecker::checkOneSelector):
(WebCore::CSSRuleSet::addRule):
(WebCore::collectIdsAndSiblingRulesFromList):
(WebCore::CSSStyleSelector::matchPageRulesForList):
- dom/Node.cpp:
(WebCore::Node::querySelector):
- dom/SelectorNodeList.cpp:
(WebCore::createSelectorNodeList):
Use accessors.
- 3:25 PM CSS21Results edited by
- (diff)
- 3:23 PM Changeset in webkit [76647] by
-
- 10 edits in tags/Safari-534.16.1/Source
Merge r76638.
- 3:20 PM Changeset in webkit [76646] by
-
- 3 edits in trunk/Tools
2011-01-25 Mansi Mithal <mansi.mithal@nokia.com>
Reviewed by Antonio Gomes.
QtTestBrowser should have a UI Settings to prevent loading images
https://bugs.webkit.org/show_bug.cgi?id=52409
Added a new action item named "DisableAutoLoadImages"
under the "Settings" menu
- QtTestBrowser/launcherwindow.cpp: (LauncherWindow::createChrome): (LauncherWindow::toggleAutoLoadImages):
- QtTestBrowser/launcherwindow.h:
- 3:08 PM Changeset in webkit [76645] by
-
- 2 edits in tags/Safari-534.16.1/Source/JavaScriptCore
Merge r76598.
- 3:07 PM Changeset in webkit [76644] by
-
- 5 edits5 adds in trunk
2011-01-25 James Simonsen <simonjam@chromium.org>
Reviewed by Tony Chang.
[Chromium] Support small caps in complex text on linux
https://bugs.webkit.org/show_bug.cgi?id=53051
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.checksum: Added.
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.png: Added.
- platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.txt: Added.
- platform/chromium-linux/fast/text/atsui-small-caps-punctuation-size-expected.checksum: Added.
- platform/chromium-linux/fast/text/atsui-small-caps-punctuation-size-expected.png: Added.
- platform/chromium/test_expectations.txt: Re-enable 2 tests on linux.
2011-01-25 James Simonsen <simonjam@chromium.org>
Reviewed by Tony Chang.
[Chromium] Support small caps in complex text on linux
https://bugs.webkit.org/show_bug.cgi?id=53051
- platform/graphics/chromium/ComplexTextControllerLinux.cpp: (WebCore::ComplexTextController::nextScriptRun): Break runs at small caps boundaries. (WebCore::ComplexTextController::setupFontForScriptRun): Setup small caps font data if needed.
- platform/graphics/chromium/ComplexTextControllerLinux.h: Store small caps text in separate string.
- 3:02 PM Changeset in webkit [76643] by
-
- 8 edits in tags/Safari-534.16.1/Source
Merge r76546.
- 2:58 PM Applications using WebKit edited by
- added Kadu (diff)
- 2:52 PM Changeset in webkit [76642] by
-
- 10 edits in trunk/Tools
2011-01-25 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
Minor bug fixes and cleanup for filesystem wrappers, port/* test
classes, test_expectations.py. This change adds "test-win" and
"test-mac" variants to the test port so that we can better test
rebaselining, and adds a MockUser() object for reuse in testing.
- Scripts/webkitpy/common/system/filesystem.py:
- Scripts/webkitpy/common/system/filesystem_mock.py:
- Scripts/webkitpy/layout_tests/layout_package/test_expectations.py:
- Scripts/webkitpy/layout_tests/port/factory.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/test.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests_unittest.py:
- Scripts/webkitpy/tool/mocktool.py:
- 2:31 PM Changeset in webkit [76641] by
-
- 5 edits in tags/Safari-534.16.1/Source
Versioning.
- 2:23 PM Changeset in webkit [76640] by
-
- 2 edits in trunk/LayoutTests
Unreviewed build fix: add failing test to gtk/Skipped.
- platform/gtk/Skipped:
- 2:05 PM Changeset in webkit [76639] by
-
- 1 copy in tags/Safari-534.16.1
New tag.
- 1:49 PM Changeset in webkit [76638] by
-
- 10 edits in trunk/Source
Windows production build fix.
Use correct environment variable escaping
Rubber-stamped by Adam Roben.
Source/JavaScriptCore:
- JavaScriptCore.vcproj/JavaScriptCore.make:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCoreGenerated.make:
Source/WebCore:
- WebCore.vcproj/WebCore.make:
Source/WebKit/win:
- WebKit.vcproj/WebKit.make:
Source/WebKit2:
- win/WebKit2.make:
- win/WebKit2Generated.make:
- 1:29 PM Changeset in webkit [76637] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
Empty URLs are never display isolated
https://bugs.webkit.org/show_bug.cgi?id=53053
This check mirrors the check in the local case. There isn't a good way
to test this with a LayoutTest, but it is tested in Chromium (where
this registry is used).
- platform/SchemeRegistry.cpp: (WebCore::SchemeRegistry::shouldTreatURLSchemeAsDisplayIsolated):
- 1:14 PM Changeset in webkit [76636] by
-
- 5 edits in trunk/Source
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Pipe a timestamp down into the PlatformWheelEvent for the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53111
- platform/PlatformWheelEvent.h: (WebCore::PlatformWheelEvent::PlatformWheelEvent): (WebCore::PlatformWheelEvent::timestamp): Add timestamp member.
- platform/mac/WheelEventMac.mm: (WebCore::PlatformWheelEvent::PlatformWheelEvent): Initialize the timestamp from the event.
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Don't inform the UI process about compositing changes when using the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53120
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::changeAcceleratedCompositingMode): Return early if we're using the new drawing area.
(WebKit::WebPage::exitAcceleratedCompositingMode):
Call setRootCompositingLayer(0) so the drawing area knows when we leave accelerated compositing.
- 1:13 PM Changeset in webkit [76635] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Oliver Hunt <oliver@apple.com>
Reviewed by Gavin Barraclough.
JSON.stringify processing time exponentially grows with size of object
https://bugs.webkit.org/show_bug.cgi?id=51922
Remove last use of reserveCapacity from JSON stringification, as it results
in appalling append behaviour when there are a large number of property names
and nothing else.
- runtime/JSONObject.cpp: (JSC::Stringifier::appendQuotedString):
- 1:11 PM Changeset in webkit [76634] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Don't inform the UI process about compositing changes when using the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53120
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::changeAcceleratedCompositingMode): Return early if we're using the new drawing area.
(WebKit::WebPage::exitAcceleratedCompositingMode):
Call setRootCompositingLayer(0) so the drawing area knows when we leave accelerated compositing.
- 1:08 PM Changeset in webkit [76633] by
-
- 5 edits8 deletes in trunk
2011-01-25 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76625.
http://trac.webkit.org/changeset/76625
https://bugs.webkit.org/show_bug.cgi?id=53119
"incorrect pixel test results" (Requested by rniwa on
#webkit).
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
2011-01-25 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76625.
http://trac.webkit.org/changeset/76625
https://bugs.webkit.org/show_bug.cgi?id=53119
"incorrect pixel test results" (Requested by rniwa on
#webkit).
- editing/selection/caret-painting-after-paste-undo-rtl.html: Removed.
- editing/selection/caret-painting-after-paste-undo.html: Removed.
- platform/mac/editing/deleting/5408255-expected.checksum:
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Removed.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Removed.
- 1:05 PM Changeset in webkit [76632] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, debugger-scripts.html is failing on windows too.
- platform/chromium/test_expectations.txt:
- 1:03 PM Changeset in webkit [76631] by
-
- 2 edits2 adds in trunk/LayoutTests
[Chromium] Not reviewed, rebaseline for a test.
The difference is because V8 has different error messages.
- platform/chromium-mac/fast/js/js-continue-break-restrictions-expected.txt: Added.
- platform/chromium-win/fast/js/js-continue-break-restrictions-expected.txt: Added.
- platform/chromium/test_expectations.txt:
- 12:55 PM Changeset in webkit [76630] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 James Robinson <jamesr@chromium.org>
Remove = TEXT PASS lines for tests that consistently pass.
- platform/chromium/test_expectations.txt:
- 12:55 PM Changeset in webkit [76629] by
-
- 2 edits in trunk/Source/WebKit/wince
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Adam Roben.
[WINCE] Ensure layouted frame when painting
https://bugs.webkit.org/show_bug.cgi?id=53108
- WebView.cpp: (WebView::paint):
- 12:52 PM Changeset in webkit [76628] by
-
- 4 edits in trunk/LayoutTests
Unreviewed build fix: rollback untintentional changes in media expected results.
- media/video-source-moved-expected.txt:
- media/video-source-none-supported-expected.txt:
- LayoutTests/platform/win/media/audio-data-url-expected.txt:
- 12:48 PM Changeset in webkit [76627] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, mark inspector/debugger-scripts.html as failing on chromium linux.
- platform/chromium/test_expectations.txt:
- 12:41 PM Changeset in webkit [76626] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Unreviewed WinCE build fix for r76614.
- platform/FileSystem.h:
- 12:23 PM CSS21Results edited by
- (diff)
- 12:18 PM CSS21Results edited by
- Added bug link for containing-block-032 (diff)
- 12:17 PM Changeset in webkit [76625] by
-
- 5 edits8 adds in trunk
2011-01-21 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Adding border and padding to the calculation of the local caret rect for RenderBoxes.
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
Tests: editing/selection/caret-painting-after-paste-undo-rtl.html
editing/selection/caret-painting-after-paste-undo.html
- rendering/RenderBox.cpp: (WebCore::RenderBox::localCaretRect):
2011-01-21 Levi Weintraub <leviw@chromium.org>
Reviewed by Darin Adler.
Updating the expected result for 5408255 and adding tests for caret positioning at the
beginning and end of RenderBoxes.
Undo moves caret to invalid position
https://bugs.webkit.org/show_bug.cgi?id=49744
- editing/selection/caret-painting-after-paste-undo-rtl.html: Added.
- editing/selection/caret-painting-after-paste-undo.html: Added.
- platform/mac/editing/deleting/5408255-expected.checksum:
- platform/mac/editing/deleting/5408255-expected.png:
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-expected.txt: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.checksum: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.png: Added.
- platform/mac/editing/selection/caret-painting-after-paste-undo-rtl-expected.txt: Added.
- 12:03 PM Changeset in webkit [76624] by
-
- 1 edit4 adds in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, add chromium-mac baselines after r76599.
The platform/mac-leopard results were stale which is why the expected
text results aren't updated as well.
- platform/chromium-mac/svg/custom/junk-data-expected.checksum: Added.
- platform/chromium-mac/svg/custom/junk-data-expected.png: Added.
- platform/chromium-mac/svg/custom/missing-xlink-expected.checksum: Added.
- platform/chromium-mac/svg/custom/missing-xlink-expected.png: Added.
- 12:01 PM Changeset in webkit [76623] by
-
- 11 edits3 copies4 adds in trunk/LayoutTests
2011-01-25 James Robinson <jamesr@chromium.org>
Reviewed by Mihai Parparita.
Convert requestAnimationFrame tests to be script-tests
https://bugs.webkit.org/show_bug.cgi?id=53109
This converts the new requestAnimationFrame tests to be proper script-tests using make-script-test-wrapper.
- fast/animation/request-animation-frame-cancel-expected.txt:
- fast/animation/request-animation-frame-cancel.html:
- fast/animation/request-animation-frame-cancel2-expected.txt:
- fast/animation/request-animation-frame-cancel2.html:
- fast/animation/request-animation-frame-display-expected.txt:
- fast/animation/request-animation-frame-display.html:
- fast/animation/request-animation-frame-expected.txt:
- fast/animation/request-animation-frame-within-callback-expected.txt:
- fast/animation/request-animation-frame-within-callback.html:
- fast/animation/request-animation-frame.html:
- fast/animation/script-tests/TEMPLATE.html: Added.
- fast/animation/script-tests/request-animation-frame-cancel.js: Copied from LayoutTests/fast/animation/request-animation-frame-cancel.html.
- fast/animation/script-tests/request-animation-frame-cancel2.js: Copied from LayoutTests/fast/animation/request-animation-frame-cancel2.html. (secondCallbackId):
- fast/animation/script-tests/request-animation-frame-display.js: Added.
- fast/animation/script-tests/request-animation-frame-within-callback.js: Copied from LayoutTests/fast/animation/request-animation-frame-within-callback.html. (window):
- fast/animation/script-tests/request-animation-frame.js: Added.
- 11:54 AM Changeset in webkit [76622] by
-
- 8 edits in trunk/Source
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Add hasPreciseScrollingDeltas bit to PlatformWheelEvent on the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53107
- platform/PlatformWheelEvent.h: (WebCore::PlatformWheelEvent::PlatformWheelEvent): (WebCore::PlatformWheelEvent::hasPreciseScrollingDeltas):
- platform/mac/WheelEventMac.mm: (WebCore::PlatformWheelEvent::PlatformWheelEvent):
2011-01-25 Sam Weinig <sam@webkit.org>
Reviewed by Anders Carlsson.
Add hasPreciseScrollingDeltas bit to PlatformWheelEvent on the Mac.
https://bugs.webkit.org/show_bug.cgi?id=53107
- Shared/WebEvent.h: (WebKit::WebWheelEvent::hasPreciseScrollingDeltas):
- Shared/WebEventConversion.cpp: (WebKit::WebKit2PlatformWheelEvent::WebKit2PlatformWheelEvent):
- Shared/WebWheelEvent.cpp: (WebKit::WebWheelEvent::WebWheelEvent):
- Shared/mac/WebEventFactory.mm: (WebKit::WebEventFactory::createWebWheelEvent):
- 11:52 AM Changeset in webkit [76621] by
-
- 12 edits3 adds in trunk
2011-01-20 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
Test the ability to read audio/m4a files. Disabled this new test
on the chromium and qt platforms, as they do not support M4A/AAC.
- media/audio-mpeg4-supported-expected.txt: Added.
- media/audio-mpeg4-supported.html: Added.
- media/content/silence.m4a: Added.
- platform/chromium/test_expectations.txt:
- platform/qt/Skipped:
2011-01-20 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
QuickTime's eat/m4a movie importer compontent doesn't list audio/m4a as a mime
type which it supports, though it handles .m4a files just fine. Change the way
we build the list of supported MIME Types through a new WebKitSystemInterface
function.
Caused by r72119, which adds system-specific extension->MIME entries to the cache
before global entries, and the system-specific entries include QuickTime's registry
entries which contain the audio/m4a MIME type, while its components do not.
Test: media/audio-mpeg4-supported.html
- WebCore.vcproj/QTMovieWinCommon.vsprops:
- platform/graphics/win/QTMovie.cpp: (getMIMETypeCallBack): (initializeSupportedTypes): (QTMovie::countSupportedTypes): gSupportedTypes is now a CFArrayRef. (QTMovie::getSupportedType): Ditto.
2011-01-24 Jer Noble <jer.noble@apple.com>
Reviewed by Eric Carlson.
REGRESSION (r72119): Audio never plays on Star Wars intro animation
https://bugs.webkit.org/show_bug.cgi?id=52467
Add wkGetQuickTimeMIMETypeList() function.
- win/include/WebKitSystemInterface/WebKitSystemInterface.h:
- win/lib/WebKitSystemInterface.lib:
- 11:39 AM Changeset in webkit [76620] by
-
- 3 edits in trunk/Tools
2011-01-25 Tony Chang <tony@chromium.org>
Reviewed by Dimitri Glazkov.
[chromium] remove unused layoutTestController callback
https://bugs.webkit.org/show_bug.cgi?id=53103
This method is used by a test_shell_test, but not needed by DRT.
- DumpRenderTree/chromium/LayoutTestController.cpp: (LayoutTestController::LayoutTestController):
- DumpRenderTree/chromium/LayoutTestController.h:
- 11:39 AM Changeset in webkit [76619] by
-
- 5 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, rebaseline a test on chromium-win. Part of r76586 rebaselines.
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
- platform/chromium/test_expectations.txt:
- 11:25 AM Changeset in webkit [76618] by
-
- 11 edits in trunk/LayoutTests
2011-01-25 Ryosuke Niwa <rniwa@webkit.org>
Another unreviewed SVG rebaselines for Chromium.
- platform/chromium-linux/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-05-t-expected.png:
- platform/chromium-mac/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-05-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/chromium-win/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-05-t-expected.png:
- platform/chromium-win/svg/text/text-text-05-t-expected.txt:
- platform/chromium/test_expectations.txt:
- 11:14 AM Changeset in webkit [76617] by
-
- 9 edits in trunk/Source/WebKit2
2011-01-25 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
need a way to request the host CALayer render server port
https://bugs.webkit.org/show_bug.cgi?id=53101
<rdar://problem/8913620>
- PluginProcess/PluginControllerProxy.cpp: (WebKit::PluginControllerProxy::compositingRenderServerPort): Get the render server port from the plug-in process.
- PluginProcess/PluginControllerProxy.h:
- WebProcess/Plugins/Netscape/NetscapeBrowserFuncs.cpp: (WebKit::NPN_GetValue): Call NetscapePlugin::compositingRenderServerPort.
- WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm: (WebKit::NetscapePlugin::compositingRenderServerPort): Call PluginController::compositingRenderServerPort.
- WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::compositingRenderServerPort): Get the render server port from the web process.
- WebProcess/Plugins/PluginView.h: Add compositingRenderServerPort.
- 11:07 AM Changeset in webkit [76616] by
-
- 8 edits in trunk/Source
2011-01-25 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove PlatformBridge::idbShutdown()
https://bugs.webkit.org/show_bug.cgi?id=53077
Since Chromium r72157, this is not used anymore. The previous use was
to signal to the embedder that IndexedDB was shutting down, but we
agreed it is better if the embedder keeps track of that itself.
No new tests: this does not change any functionality.
- platform/chromium/PlatformBridge.h:
- storage/IDBFactoryBackendInterface.cpp:
- storage/IDBFactoryBackendInterface.h: (WebCore::IDBFactoryBackendInterface::~IDBFactoryBackendInterface):
- storage/chromium/IDBFactoryBackendInterface.cpp:
2011-01-25 Hans Wennborg <hans@chromium.org>
Reviewed by Jeremy Orlow.
IndexedDB: Remove PlatformBridge::idbShutdown()
https://bugs.webkit.org/show_bug.cgi?id=53077
Since Chromium r72157, this is not used anymore. Chromium keeps track
of when it shuts down IndexedDB itself.
- public/WebKitClient.h:
- src/PlatformBridge.cpp:
- 11:06 AM Changeset in webkit [76615] by
-
- 2 edits in trunk/Source/JavaScriptCore
Not reviewed.
Try to fix windows build.
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
- 11:03 AM Changeset in webkit [76614] by
-
- 11 edits in trunk/Source
2011-01-25 Darin Adler <Darin Adler>
Reviewed by Anders Carlsson.
WebKit is using CSBackupSetItemExcluded incorrectly
https://bugs.webkit.org/show_bug.cgi?id=53095
rdar://problem/8790540
- Misc/WebIconDatabase.mm: (importToWebCoreFormat): Removed code that was calling CSBackupSetItemExcluded. It was incorrect, and this responsibility has been moved to WebCore.
2011-01-25 Darin Adler <Darin Adler>
Reviewed by Anders Carlsson.
WebKit is using CSBackupSetItemExcluded incorrectly
https://bugs.webkit.org/show_bug.cgi?id=53095
rdar://problem/8790540
- loader/icon/IconDatabase.cpp: (WebCore::IconDatabase::performOpenInitialization): Added code to exclude the database from backup one time, and record inside the database that this has been done. (WebCore::IconDatabase::wasExcludedFromBackup): Added. (WebCore::IconDatabase::setWasExcludedFromBackup): Added.
- loader/icon/IconDatabase.h: Added new functions above.
- platform/FileSystem.cpp: (WebCore::canExcludeFromBackup): Added. (WebCore::excludeFromBackup): Added.
- platform/FileSystem.h: Added canExcludeFromBackup, excludeFromBackup, and pathAsURL functions. Cleaned up ifdefs and comments a bit and sorted things alphabetically, particularly platform-specific sections.
- platform/cf/FileSystemCF.cpp: (WebCore::pathAsURL): Added.
- platform/mac/FileSystemMac.mm: (WebCore::canExcludeFromBackup): Added. (WebCore::excludeFromBackup): Added.
- platform/network/cf/FormDataStreamCFNet.cpp: (WebCore::advanceCurrentStream): Changed to call pathAsURL.
- platform/network/mac/FormDataStreamMac.mm: (WebCore::advanceCurrentStream): Ditto.
- 10:56 AM Changeset in webkit [76613] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Maciej Stachowiak <mjs@apple.com>
Reviewed by Darin Adler.
Skip another new test that uses eventSender
https://bugs.webkit.org/show_bug.cgi?id=53094
- platform/mac-wk2/Skipped:
- 10:54 AM Changeset in webkit [76612] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Helder Correia <helder@sencha.com>
Reviewed by Dirk Schulze.
REGRESSION(75139): SVG gradients are not applied to texts
https://bugs.webkit.org/show_bug.cgi?id=52531
CGContextConcatCTM should use the CGLayer context, not the
GraphicsContext. Also, the CTM needs to be adjusted (translated).
This fixes SVG text gradient fill.
Test: svg/css/composite-shadow-text.svg
- platform/graphics/cg/GraphicsContextCG.cpp: (WebCore::GraphicsContext::fillRect):
- 10:46 AM CSS21Results edited by
- (diff)
- 10:44 AM Changeset in webkit [76611] by
-
- 10 edits3 adds in trunk/Source/JavaScriptCore
REGRESSION: Leak in JSParser::Scope::copyCapturedVariablesToVector()
https://bugs.webkit.org/show_bug.cgi?id=53061
Reviewed by Oliver Hunt.
Cache did not know about the subclass so failed to fully delete the items.
Got rid of the subclass and moved the classes to separate files.
- CMakeLists.txt:
- GNUmakefile.am:
- JavaScriptCore.exp:
- JavaScriptCore.gypi:
- JavaScriptCore.pro:
- JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.vcproj:
- JavaScriptCore.xcodeproj/project.pbxproj:
- parser/JSParser.cpp:
(JSC::JSParser::Scope::saveFunctionInfo):
(JSC::JSParser::Scope::restoreFunctionInfo):
(JSC::JSParser::findCachedFunctionInfo):
(JSC::JSParser::parseFunctionInfo):
- parser/SourceProvider.h:
- parser/SourceProviderCache.cpp: Added.
(JSC::SourceProviderCache::~SourceProviderCache):
(JSC::SourceProviderCache::byteSize):
- parser/SourceProviderCache.h: Added.
(JSC::SourceProviderCache::SourceProviderCache):
(JSC::SourceProviderCache::add):
(JSC::SourceProviderCache::get):
- parser/SourceProviderCacheItem.h: Added.
(JSC::SourceProviderCacheItem::SourceProviderCacheItem):
(JSC::SourceProviderCacheItem::approximateByteSize):
(JSC::SourceProviderCacheItem::closeBraceToken):
- 10:42 AM Changeset in webkit [76610] by
-
- 3 edits2 adds in trunk
2011-01-25 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
Cannot extend or modify forward by word over a non-contenteditable region
https://bugs.webkit.org/show_bug.cgi?id=53070
Add regression test.
- editing/selection/extend-forward-by-word-over-non-editable-expected.txt: Added.
- editing/selection/extend-forward-by-word-over-non-editable.html: Added.
2011-01-25 Benjamin Kalman <kalman@chromium.org>
Reviewed by Ryosuke Niwa.
Cannot extend or modify forward by word over a non-contenteditable region
https://bugs.webkit.org/show_bug.cgi?id=53070
Test: editing/selection/extend-forward-by-word-over-non-editable.html
Change all instances of honorEditableBoundaryAtOrAfter to honorEditableBoundaryAtOrBefore and vice versa in the
functions which determine the end/start of words/lines/sentences in visible_units.cpp.
This fixes the bug where moving forwards by a word over a non-contenteditable region would place the cursor
inside that region, and then get moved back to the start of the word due to honorEditableBoundaryAtOrBefore.
The cursor is now moved to the end of the region (which is effectively a noop in this case).
- editing/visible_units.cpp: Change all instances of honorEditableBoundaryAtOrAfter to honorEditableBoundaryAtOrBefore and vice versa. (WebCore::previousWordPosition): (WebCore::nextWordPosition): (WebCore::startOfLine): (WebCore::endOfLine): (WebCore::previousSentencePosition): (WebCore::nextSentencePosition): (WebCore::logicalStartOfLine): (WebCore::logicalEndOfLine):
- 10:28 AM Changeset in webkit [76609] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Marcilio Mendonca <mamendonca@rim.com>
Reviewed by Darin Adler.
Bug 53087: Refactoring: replaced a hanging "else" with a "return"
statement
https://bugs.webkit.org/show_bug.cgi?id=53087.
Refactoring work: Replaced a hanging "else" within an #if PLATFORM(M
with a "return" so that the code is more readable and less error pro
(e.g., "else" doesn't use braces so adding extra lines to the else
block won't have any effect; even worse, code still compiles
successfully.
- wtf/Assertions.cpp:
- 10:26 AM Changeset in webkit [76608] by
-
- 2 edits in trunk/Source/WebKit2
Change some floating point constants from 1.0 to 1.
Rubber stamped by Dan Bernstein.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::dispatchDidCommitLoad):
- 10:19 AM Changeset in webkit [76607] by
-
- 36 edits2 adds2 deletes in trunk/LayoutTests
2011-01-25 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed SVG rebaselines for Chromium.
- platform/chromium-linux/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect-expected.txt: Removed.
- platform/chromium-linux/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.txt: Removed.
- platform/chromium-linux/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-linux/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/chromium-linux/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/chromium-linux/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-06-t-expected.png:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-mac/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-06-t-expected.png: Added.
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect-expected.png:
- platform/chromium-win/svg/batik/text/textEffect-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect3-expected.png:
- platform/chromium-win/svg/batik/text/textEffect3-expected.txt:
- platform/chromium-win/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/chromium-win/svg/text/text-text-06-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-06-t-expected.png:
- platform/chromium-win/svg/text/text-text-06-t-expected.txt:
- platform/chromium/test_expectations.txt:
- 10:18 AM Changeset in webkit [76606] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix.
After r76466, efsrv.lib is used unconditionally.
Don't guard it with ENABLE_NETSCAPE_PLUGIN_API.
- WebCore.pro:
- 10:09 AM Changeset in webkit [76605] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Tony Chang <tony@chromium.org>
Unreviewed, remove passing chromium win tests.
- platform/chromium/test_expectations.txt:
- 9:54 AM Changeset in webkit [76604] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-25 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Improve scale factor resetting
https://bugs.webkit.org/show_bug.cgi?id=53093
Two key changes:
- Don't set the scale factor to what it already is, as this causes an uneeded force layout and scroll
- Don't ever set the scale factor based on a non-main frame committing
This fixes two WebKit2 layout tests.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::dispatchDidCommitLoad):
- 9:47 AM Changeset in webkit [76603] by
-
- 12 edits in trunk/Source/WebCore
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Kenneth Russell.
Style cleanup for WebGLRenderingContext
https://bugs.webkit.org/show_bug.cgi?id=52352
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.h:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::create): (WebCore::WebGLRenderingContext::blendFunc): (WebCore::WebGLRenderingContext::createShader): (WebCore::WebGLRenderingContext::deleteBuffer): (WebCore::WebGLRenderingContext::deleteShader): (WebCore::WebGLRenderingContext::deleteTexture): (WebCore::WebGLRenderingContext::disableVertexAttribArray): (WebCore::WebGLRenderingContext::validateIndexArrayPrecise): (WebCore::WebGLRenderingContext::validateRenderingState): (WebCore::WebGLRenderingContext::enableVertexAttribArray): (WebCore::WebGLRenderingContext::getUniform): (WebCore::WebGLRenderingContext::detachAndRemoveAllObjects):
- html/canvas/WebGLRenderingContext.h:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.h:
- 9:43 AM Changeset in webkit [76602] by
-
- 5 edits in trunk/Source/WebKit/chromium
2011-01-25 Ilya Sherman <isherman@chromium.org>
Reviewed by Darin Fisher.
Chromium WebKit API: Move dispatchFormControlChangeEvent() from WebInputElement to WebFormControlElement
In service of https://code.google.com/p/chromium/issues/detail?id=42716
https://bugs.webkit.org/show_bug.cgi?id=53069
- public/WebFormControlElement.h:
- public/WebInputElement.h:
- src/WebFormControlElement.cpp: (WebKit::WebFormControlElement::dispatchFormControlChangeEvent): Moved from WebInputElement
- src/WebInputElement.cpp:
- 9:34 AM Changeset in webkit [76601] by
-
- 7 edits in trunk/Source/WebCore
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- DerivedSources.cpp:
- GNUmakefile.am:
- WebCore.pro:
- bindings/generic/RuntimeEnabledFeatures.h:
- bindings/js/JSArrayBufferCustom.cpp:
- bindings/js/JSCanvasRenderingContextCustom.cpp: (WebCore::toJS):
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSDataViewCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSFloat32ArrayCustom.cpp:
- bindings/js/JSHTMLCanvasElementCustom.cpp: (WebCore::JSHTMLCanvasElement::getContext):
- bindings/js/JSInt16ArrayCustom.cpp:
- bindings/js/JSInt32ArrayCustom.cpp:
- bindings/js/JSInt8ArrayCustom.cpp:
- bindings/js/JSUint16ArrayCustom.cpp:
- bindings/js/JSUint32ArrayCustom.cpp:
- bindings/js/JSUint8ArrayCustom.cpp:
- bindings/js/JSWebGLRenderingContextCustom.cpp:
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::markChildren): (WebCore::JSXMLHttpRequest::send): (WebCore::JSXMLHttpRequest::response):
- bindings/v8/custom/V8ArrayBufferCustom.cpp:
- bindings/v8/custom/V8ArrayBufferViewCustom.h:
- bindings/v8/custom/V8DataViewCustom.cpp:
- bindings/v8/custom/V8DocumentCustom.cpp: (WebCore::V8Document::getCSSCanvasContextCallback):
- bindings/v8/custom/V8Float32ArrayCustom.cpp:
- bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: (WebCore::V8HTMLCanvasElement::getContextCallback):
- bindings/v8/custom/V8Int16ArrayCustom.cpp:
- bindings/v8/custom/V8Int32ArrayCustom.cpp:
- bindings/v8/custom/V8Int8ArrayCustom.cpp:
- bindings/v8/custom/V8Uint16ArrayCustom.cpp:
- bindings/v8/custom/V8Uint32ArrayCustom.cpp:
- bindings/v8/custom/V8Uint8ArrayCustom.cpp:
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
- bindings/v8/custom/V8XMLHttpRequestCustom.cpp: (WebCore::V8XMLHttpRequest::responseAccessorGetter): (WebCore::V8XMLHttpRequest::sendCallback):
- features.pri:
- html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): (WebCore::HTMLCanvasElement::reset):
- html/HTMLCanvasElement.h:
- html/canvas/ArrayBuffer.cpp:
- html/canvas/ArrayBuffer.idl:
- html/canvas/ArrayBufferView.cpp:
- html/canvas/ArrayBufferView.idl:
- html/canvas/DataView.cpp:
- html/canvas/DataView.idl:
- html/canvas/Float32Array.cpp:
- html/canvas/Float32Array.idl:
- html/canvas/Int16Array.cpp:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.cpp:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.cpp:
- html/canvas/Int8Array.idl:
- html/canvas/OESStandardDerivatives.cpp:
- html/canvas/OESStandardDerivatives.idl:
- html/canvas/OESTextureFloat.cpp:
- html/canvas/OESTextureFloat.idl:
- html/canvas/Uint16Array.cpp:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.cpp:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.cpp:
- html/canvas/Uint8Array.idl:
- html/canvas/WebGLActiveInfo.idl:
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.idl:
- html/canvas/WebGLContextAttributes.cpp:
- html/canvas/WebGLContextAttributes.idl:
- html/canvas/WebGLContextEvent.idl:
- html/canvas/WebGLExtension.cpp:
- html/canvas/WebGLFramebuffer.cpp:
- html/canvas/WebGLFramebuffer.idl:
- html/canvas/WebGLGetInfo.cpp:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLProgram.idl:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderbuffer.idl:
- html/canvas/WebGLRenderingContext.cpp:
- html/canvas/WebGLRenderingContext.idl:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLShader.idl:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLTexture.idl:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.idl:
- html/canvas/WebKitLoseContext.cpp:
- html/canvas/WebKitLoseContext.idl:
- page/DOMWindow.idl:
- platform/graphics/ANGLEWebKitBridge.cpp:
- platform/graphics/GraphicsContext3D.cpp:
- platform/graphics/cg/GraphicsContext3DCG.cpp:
- platform/graphics/gpu/DrawingBuffer.cpp:
- platform/graphics/gpu/mac/DrawingBufferMac.mm:
- platform/graphics/mac/GraphicsContext3DMac.mm:
- platform/graphics/mac/WebGLLayer.mm:
- platform/graphics/opengl/Extensions3DOpenGL.cpp:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/Extensions3DQt.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::paint): (WebCore::GraphicsLayerQtImpl::flushChanges):
- platform/graphics/qt/GraphicsLayerQt.h:
- platform/graphics/skia/GraphicsContext3DSkia.cpp:
- platform/graphics/texmap/GraphicsLayerTextureMapper.h:
- rendering/RenderLayerBacking.cpp: (WebCore::isAcceleratedCanvas): (WebCore::RenderLayerBacking::updateGraphicsLayerConfiguration): (WebCore::RenderLayerBacking::containsPaintedContent): (WebCore::RenderLayerBacking::contentChanged):
- webaudio/AudioBuffer.cpp:
- webaudio/AudioBuffer.idl:
- webaudio/RealtimeAnalyser.cpp:
- webaudio/RealtimeAnalyser.h:
- webaudio/RealtimeAnalyserNode.h:
- webaudio/RealtimeAnalyserNode.idl:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::setResponseType): (WebCore::XMLHttpRequest::clearResponse): (WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
- 9:27 AM Changeset in webkit [76600] by
-
- 130 edits in trunk
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- configure.ac:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- WebKit.gyp:
- features.gypi:
- src/Extensions3DChromium.cpp:
- src/GraphicsContext3DChromium.cpp:
- src/WebRuntimeFeatures.cpp: (WebKit::WebRuntimeFeatures::enableWebGL): (WebKit::WebRuntimeFeatures::isWebGLEnabled):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Api/qwebsettings.cpp: (QWebSettingsPrivate::apply):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- WebView.cpp: (WebView::notifyPreferencesChanged):
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- DerivedSources.cpp:
- GNUmakefile.am:
- WebCore.pro:
- bindings/generic/RuntimeEnabledFeatures.h:
- bindings/js/JSArrayBufferCustom.cpp:
- bindings/js/JSCanvasRenderingContextCustom.cpp: (WebCore::toJS):
- bindings/js/JSDOMWindowCustom.cpp:
- bindings/js/JSDataViewCustom.cpp:
- bindings/js/JSDocumentCustom.cpp:
- bindings/js/JSFloat32ArrayCustom.cpp:
- bindings/js/JSHTMLCanvasElementCustom.cpp: (WebCore::JSHTMLCanvasElement::getContext):
- bindings/js/JSInt16ArrayCustom.cpp:
- bindings/js/JSInt32ArrayCustom.cpp:
- bindings/js/JSInt8ArrayCustom.cpp:
- bindings/js/JSUint16ArrayCustom.cpp:
- bindings/js/JSUint32ArrayCustom.cpp:
- bindings/js/JSUint8ArrayCustom.cpp:
- bindings/js/JSWebGLRenderingContextCustom.cpp:
- bindings/js/JSXMLHttpRequestCustom.cpp: (WebCore::JSXMLHttpRequest::markChildren): (WebCore::JSXMLHttpRequest::send): (WebCore::JSXMLHttpRequest::response):
- bindings/v8/custom/V8ArrayBufferCustom.cpp:
- bindings/v8/custom/V8ArrayBufferViewCustom.h:
- bindings/v8/custom/V8DataViewCustom.cpp:
- bindings/v8/custom/V8DocumentCustom.cpp: (WebCore::V8Document::getCSSCanvasContextCallback):
- bindings/v8/custom/V8Float32ArrayCustom.cpp:
- bindings/v8/custom/V8HTMLCanvasElementCustom.cpp: (WebCore::V8HTMLCanvasElement::getContextCallback):
- bindings/v8/custom/V8Int16ArrayCustom.cpp:
- bindings/v8/custom/V8Int32ArrayCustom.cpp:
- bindings/v8/custom/V8Int8ArrayCustom.cpp:
- bindings/v8/custom/V8Uint16ArrayCustom.cpp:
- bindings/v8/custom/V8Uint32ArrayCustom.cpp:
- bindings/v8/custom/V8Uint8ArrayCustom.cpp:
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
- bindings/v8/custom/V8XMLHttpRequestCustom.cpp: (WebCore::V8XMLHttpRequest::responseAccessorGetter): (WebCore::V8XMLHttpRequest::sendCallback):
- features.pri:
- html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::getContext): (WebCore::HTMLCanvasElement::reset):
- html/HTMLCanvasElement.h:
- html/canvas/ArrayBuffer.cpp:
- html/canvas/ArrayBuffer.idl:
- html/canvas/ArrayBufferView.cpp:
- html/canvas/ArrayBufferView.idl:
- html/canvas/DataView.cpp:
- html/canvas/DataView.idl:
- html/canvas/Float32Array.cpp:
- html/canvas/Float32Array.idl:
- html/canvas/Int16Array.cpp:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.cpp:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.cpp:
- html/canvas/Int8Array.idl:
- html/canvas/OESStandardDerivatives.cpp:
- html/canvas/OESStandardDerivatives.idl:
- html/canvas/OESTextureFloat.cpp:
- html/canvas/OESTextureFloat.idl:
- html/canvas/Uint16Array.cpp:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.cpp:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.cpp:
- html/canvas/Uint8Array.idl:
- html/canvas/WebGLActiveInfo.idl:
- html/canvas/WebGLBuffer.cpp:
- html/canvas/WebGLBuffer.idl:
- html/canvas/WebGLContextAttributes.cpp:
- html/canvas/WebGLContextAttributes.idl:
- html/canvas/WebGLContextEvent.idl:
- html/canvas/WebGLExtension.cpp:
- html/canvas/WebGLFramebuffer.cpp:
- html/canvas/WebGLFramebuffer.idl:
- html/canvas/WebGLGetInfo.cpp:
- html/canvas/WebGLObject.cpp:
- html/canvas/WebGLProgram.cpp:
- html/canvas/WebGLProgram.idl:
- html/canvas/WebGLRenderbuffer.cpp:
- html/canvas/WebGLRenderbuffer.idl:
- html/canvas/WebGLRenderingContext.cpp:
- html/canvas/WebGLRenderingContext.idl:
- html/canvas/WebGLShader.cpp:
- html/canvas/WebGLShader.idl:
- html/canvas/WebGLTexture.cpp:
- html/canvas/WebGLTexture.idl:
- html/canvas/WebGLUniformLocation.cpp:
- html/canvas/WebGLUniformLocation.idl:
- html/canvas/WebKitLoseContext.cpp:
- html/canvas/WebKitLoseContext.idl:
- page/DOMWindow.idl:
- platform/graphics/ANGLEWebKitBridge.cpp:
- platform/graphics/GraphicsContext3D.cpp:
- platform/graphics/cg/GraphicsContext3DCG.cpp:
- platform/graphics/gpu/DrawingBuffer.cpp:
- platform/graphics/gpu/mac/DrawingBufferMac.mm:
- platform/graphics/mac/GraphicsContext3DMac.mm:
- platform/graphics/mac/WebGLLayer.mm:
- platform/graphics/opengl/Extensions3DOpenGL.cpp:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/Extensions3DQt.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- platform/graphics/qt/GraphicsLayerQt.cpp: (WebCore::GraphicsLayerQtImpl::GraphicsLayerQtImpl): (WebCore::GraphicsLayerQtImpl::paint): (WebCore::GraphicsLayerQtImpl::flushChanges):
- platform/graphics/qt/GraphicsLayerQt.h:
- platform/graphics/skia/GraphicsContext3DSkia.cpp:
- platform/graphics/texmap/GraphicsLayerTextureMapper.h:
- rendering/RenderLayerBacking.cpp: (WebCore::isAcceleratedCanvas): (WebCore::RenderLayerBacking::updateGraphicsLayerConfiguration): (WebCore::RenderLayerBacking::containsPaintedContent): (WebCore::RenderLayerBacking::contentChanged):
- webaudio/AudioBuffer.cpp:
- webaudio/AudioBuffer.idl:
- webaudio/RealtimeAnalyser.cpp:
- webaudio/RealtimeAnalyser.h:
- webaudio/RealtimeAnalyserNode.h:
- webaudio/RealtimeAnalyserNode.idl:
- xml/XMLHttpRequest.cpp: (WebCore::XMLHttpRequest::setResponseType): (WebCore::XMLHttpRequest::clearResponse): (WebCore::XMLHttpRequest::didReceiveData):
- xml/XMLHttpRequest.h:
2011-01-24 Chris Marrin <cmarrin@apple.com>
Reviewed by Eric Seidel.
Change ENABLE_3D_CANVAS to ENABLE_WEBGL
https://bugs.webkit.org/show_bug.cgi?id=53041
- Configurations/FeatureDefines.xcconfig:
- 9:22 AM Changeset in webkit [76599] by
-
- 13 edits12 adds in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Update Leopard svg/ pixel test baselines, to make run-webkit-tests -p pass again with --tolerance 0.
Contains only marginal differences, or updates pixel test results that were forgotten to update.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum:
- platform/mac-leopard/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-image-07-t-expected.png: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.checksum: Added.
- platform/mac-leopard/svg/W3C-SVG-1.1/struct-use-01-t-expected.png: Added.
- platform/mac-leopard/svg/css/text-gradient-shadow-expected.checksum: Added.
- platform/mac-leopard/svg/css/text-gradient-shadow-expected.png: Added.
- platform/mac-leopard/svg/custom/image-rescale-clip-expected.checksum:
- platform/mac-leopard/svg/custom/image-rescale-clip-expected.png:
- platform/mac-leopard/svg/custom/image-rescale-scroll-expected.checksum: Added.
- platform/mac-leopard/svg/custom/image-rescale-scroll-expected.png: Added.
- platform/mac-leopard/svg/custom/junk-data-expected.checksum:
- platform/mac-leopard/svg/custom/junk-data-expected.png:
- platform/mac-leopard/svg/custom/missing-xlink-expected.checksum:
- platform/mac-leopard/svg/custom/missing-xlink-expected.png:
- platform/mac-leopard/svg/filters/feComposite-expected.checksum:
- platform/mac-leopard/svg/filters/feComposite-expected.png:
- platform/mac-leopard/svg/filters/filter-rounding-issues-expected.checksum: Added.
- platform/mac-leopard/svg/filters/filter-rounding-issues-expected.png: Added.
- platform/mac-leopard/svg/repaint/filter-repaint-expected.checksum:
- platform/mac-leopard/svg/repaint/filter-repaint-expected.png:
- 9:14 AM Changeset in webkit [76598] by
-
- 2 edits in trunk/Source/JavaScriptCore
Windows Production build fix
- JavaScriptCore.vcproj/JavaScriptCore.make: Added a missing "set".
- 9:11 AM Changeset in webkit [76597] by
-
- 17 edits2 adds in trunk/Source
2011-01-25 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Prepare for landing of detailed heap snapshots.
- Introduce Preferences.detailedHeapProfiles flag for controlling querying of detailed heap snapshots.
- Add boilerplate code for the new view.
- Factor out common code.
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- bindings/js/ScriptProfiler.h: (WebCore::ScriptProfiler::HeapSnapshotControl::~HeapSnapshotControl): (WebCore::ScriptProfiler::takeHeapSnapshot):
- bindings/v8/ScriptProfiler.cpp: (WebCore::ScriptProfiler::takeHeapSnapshot):
- bindings/v8/ScriptProfiler.h: (WebCore::ScriptProfiler::HeapSnapshotControl::~HeapSnapshotControl):
- inspector/Inspector.idl:
- inspector/InspectorProfilerAgent.cpp: (WebCore::InspectorProfilerAgent::takeHeapSnapshot):
- inspector/InspectorProfilerAgent.h:
- inspector/front-end/DetailedHeapshotView.js: Added. (WebInspector.DetailedHeapshotView): (WebInspector.DetailedHeapshotView.prototype.get statusBarItems): (WebInspector.DetailedHeapshotView.prototype.get profile): (WebInspector.DetailedHeapshotView.prototype.set profile): (WebInspector.DetailedHeapshotView.prototype.show): (WebInspector.DetailedHeapshotView.prototype.hide): (WebInspector.DetailedHeapshotProfileType): (WebInspector.DetailedHeapshotProfileType.prototype.get buttonTooltip): (WebInspector.DetailedHeapshotProfileType.prototype.get buttonStyle): (WebInspector.DetailedHeapshotProfileType.prototype.buttonClicked): (WebInspector.DetailedHeapshotProfileType.prototype.get welcomeMessage): (WebInspector.DetailedHeapshotProfileType.prototype.createSidebarTreeElementForProfile): (WebInspector.DetailedHeapshotProfileType.prototype.createView):
- inspector/front-end/HeapSnapshot.js: Added. (WebInspector.HeapSnapshotEdgesIterator): (WebInspector.HeapSnapshotEdgesIterator.prototype.get done): (WebInspector.HeapSnapshotEdgesIterator.prototype.get isElement): (WebInspector.HeapSnapshotEdgesIterator.prototype.get isHidden): (WebInspector.HeapSnapshotEdgesIterator.prototype.get name): (WebInspector.HeapSnapshotEdgesIterator.prototype.next): (WebInspector.HeapSnapshotEdgesIterator.prototype.get node): (WebInspector.HeapSnapshotEdgesIterator.prototype.get nodeIndex): (WebInspector.HeapSnapshotEdgesIterator.prototype._getNameOrIndex): (WebInspector.HeapSnapshotEdgesIterator.prototype._getType): (WebInspector.HeapSnapshotNodeWrapper): (WebInspector.HeapSnapshotNodeWrapper.prototype.get edges): (WebInspector.HeapSnapshotNodeWrapper.prototype.get edgesCount): (WebInspector.HeapSnapshotNodeWrapper.prototype.get instancesCount): (WebInspector.HeapSnapshotNodeWrapper.prototype.get isHidden): (WebInspector.HeapSnapshotNodeWrapper.prototype.get name): (WebInspector.HeapSnapshotNodeWrapper.prototype.get selfSize): (WebInspector.HeapSnapshotNodeWrapper.prototype._getName): (WebInspector.HeapSnapshotNodeWrapper.prototype._getEdges): (WebInspector.HeapSnapshotNodeWrapper.prototype._getType): (WebInspector.HeapSnapshot): (WebInspector.HeapSnapshot.prototype._init): (WebInspector.HeapSnapshot.prototype.get rootEdges):
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotProfileType.prototype.buttonClicked):
- inspector/front-end/ProfilesPanel.js: (WebInspector.ProfilesPanel.prototype._setRecordingProfile): (WebInspector.ProfilesPanel.prototype._reportHeapSnapshotProgress): (WebInspector.ProfilerDispatcher.prototype.setRecordingProfile): (WebInspector.ProfilerDispatcher.prototype.reportHeapSnapshotProgress):
- inspector/front-end/Settings.js:
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- inspector/front-end/inspector.js: (WebInspector._createPanels):
- src/js/DevTools.js: ():
- 9:10 AM Changeset in webkit [76596] by
-
- 67 edits in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Not reviewed.
Update Snow Leopard svg/ pixel test baselines, to make run-webkit-tests -p pass again with --tolerance 0.
Contains only marginal differences, or updates pixel test results that were forgotten to update.
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png:
- platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-06-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-image-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-image-07-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.checksum:
- platform/mac/svg/W3C-SVG-1.1/struct-use-01-t-expected.png:
- platform/mac/svg/batik/text/textEffect-expected.checksum:
- platform/mac/svg/batik/text/textEffect-expected.png:
- platform/mac/svg/batik/text/textEffect3-expected.checksum:
- platform/mac/svg/batik/text/textEffect3-expected.png:
- platform/mac/svg/custom/baseval-animval-equality-expected.checksum:
- platform/mac/svg/custom/baseval-animval-equality-expected.png:
- platform/mac/svg/custom/foreign-object-skew-expected.checksum:
- platform/mac/svg/custom/foreign-object-skew-expected.png:
- platform/mac/svg/custom/image-rescale-expected.checksum:
- platform/mac/svg/custom/image-rescale-expected.png:
- platform/mac/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/mac/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-in2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k1-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k2-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k3-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-k4-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-dom-operator-attr-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-in2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k1-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k2-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k3-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-k4-prop-expected.png:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.checksum:
- platform/mac/svg/dynamic-updates/SVGFECompositeElement-svgdom-operator-prop-expected.png:
- platform/mac/svg/filters/feComposite-expected.checksum:
- platform/mac/svg/filters/feComposite-expected.png:
- platform/mac/svg/filters/filter-rounding-issues-expected.checksum:
- platform/mac/svg/filters/filter-rounding-issues-expected.png:
- platform/mac/svg/filters/filteredImage-expected.checksum:
- platform/mac/svg/filters/filteredImage-expected.png:
- platform/mac/svg/repaint/filter-repaint-expected.checksum:
- platform/mac/svg/repaint/filter-repaint-expected.png:
- platform/mac/svg/text/text-text-05-t-expected.checksum:
- platform/mac/svg/text/text-text-05-t-expected.png:
- platform/mac/svg/text/text-text-06-t-expected.checksum:
- platform/mac/svg/text/text-text-06-t-expected.png:
- 8:48 AM Changeset in webkit [76595] by
-
- 2 edits in trunk/Source/JavaScriptCore
2011-01-25 Patrick Gansterer <Patrick Gansterer>
Reviewed by Eric Seidel.
Add missing defines for COMPILER(RVCT) && CPU(ARM_THUMB2)
https://bugs.webkit.org/show_bug.cgi?id=52949
- jit/JITStubs.cpp:
- 8:09 AM Changeset in webkit [76594] by
-
- 15 edits in trunk/Source
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCore.exp.in:
- inspector/InspectorAgent.cpp:
- inspector/InspectorAgent.h:
- inspector/InspectorFrontendClientLocal.cpp: (WebCore::InspectorFrontendClientLocal::changeAttachedWindowHeight): (WebCore::InspectorFrontendClientLocal::restoreAttachedWindowHeight):
- inspector/InspectorSettings.cpp: (WebCore::InspectorSettings::InspectorSettings):
- inspector/InspectorSettings.h:
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClientCF.cpp: (WebInspectorClient::sendMessageToFrontend): (WebInspectorClient::inspectorStartsAttached): (WebInspectorClient::setInspectorStartsAttached): (WebInspectorClient::releaseFrontendPage):
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClient.h:
- WebCoreSupport/WebInspectorClient.mm: (-[WebInspectorWindowController showWindow:]): (-[WebInspectorWindowController attach]): (-[WebInspectorWindowController detach]):
2011-01-25 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: remove "attached" state related methods from InspectorAgent
https://bugs.webkit.org/show_bug.cgi?id=53086
- WebCoreSupport/WebInspectorClient.cpp: (WebInspectorFrontendClient::attachWindow): (WebInspectorFrontendClient::detachWindow): (WebInspectorFrontendClient::showWindowWithoutNotifications):
- WebCoreSupport/WebInspectorClient.h:
- 7:46 AM Changeset in webkit [76593] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Unreviewed, add bug url for failing test on GTK.
[cairo] Fix LayoutTests/fast/canvas/patternfill-repeat.html
https://bugs.webkit.org/show_bug.cgi?id=53085
- platform/gtk/Skipped:
- 7:24 AM Changeset in webkit [76592] by
-
- 6 edits in trunk/Source/WebCore
2011-01-25 Qi Zhang <qi.2.zhang@nokia.com>
Reviewed by Laszlo Gombos.
[Symbian] RVCT fails to compile [U|I]nt[8|16|32]Array.h
https://bugs.webkit.org/show_bug.cgi?id=51873
Replace the using declaration, because it doesn't compile on RVCT, and WINSCW has the same issue.
No new functionality so no new tests.
- html/canvas/Int32Array.h: (WebCore::Int32Array::set):
- html/canvas/Int8Array.h: (WebCore::Int8Array::set):
- html/canvas/Uint16Array.h: (WebCore::Uint16Array::set):
- html/canvas/Uint32Array.h: (WebCore::Uint32Array::set):
- html/canvas/Uint8Array.h: (WebCore::Uint8Array::set):
- 7:15 AM Changeset in webkit [76591] by
-
- 3 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Reviewed by Antonio Gomes.
fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53073
Make the two steps in the flaky test to be executed sequentially.
- fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html: Fix flaky test by chaining its two steps up.
- platform/gtk/Skipped: Unskip test.
- 7:10 AM Changeset in webkit [76590] by
-
- 14 edits in trunk/Source/WebCore
Repaint SVG elements with filter instead of relayout where possible
https://bugs.webkit.org/show_bug.cgi?id=52200
Reviewed by Dirk Schulze.
This patch allows repainting of filters, when their
attribute changes does not require relayout.
Existing dynamic-update tests cover this feature.
- platform/graphics/filters/FilterEffect.cpp:
(WebCore::FilterEffect::clearResult): Clearing the currently stored image
before repainting.
- platform/graphics/filters/FilterEffect.h:
- rendering/RenderObject.h:
(WebCore::RenderObject::isSVGResourceFilter): Not only the filter primitives,
but filters should also be detected to allow safe testing and casting.
- rendering/svg/RenderSVGResourceFilter.cpp:
(WebCore::RenderSVGResourceFilter::buildPrimitives): Passing the renderer.
(WebCore::RenderSVGResourceFilter::applyResource):
determineFilterPrimitiveSubregion does not require the filter anymore.
(WebCore::RenderSVGResourceFilter::postApplyResource): Repaint
if lastEffect->hasResult() is false.
(WebCore::RenderSVGResourceFilter::primitiveAttributeChanged):
Searching for all FilterEffects, whose created by the current FilterElement,
and clearing all resulting images depending on those FilterEffects.
- rendering/svg/RenderSVGResourceFilter.h:
(WebCore::RenderSVGResourceFilter::isSVGResourceFilter):
- rendering/svg/RenderSVGResourceFilterPrimitive.cpp:
(WebCore::RenderSVGResourceFilterPrimitive::determineFilterPrimitiveSubregion):
The filter argument is unnecessary anymore. But is is still kept as a static
member, since the primitive renderer still does not know about the
FilterEffect objects.
- rendering/svg/RenderSVGResourceFilterPrimitive.h:
(WebCore::RenderSVGResourceFilterPrimitive::RenderSVGResourceFilterPrimitive):
(WebCore::RenderSVGResourceFilterPrimitive::primitiveAttributeChanged):
Calls RenderSVGResourceFilter::primitiveAttributeChanged.
- svg/SVGFEDiffuseLightingElement.cpp:
(WebCore::SVGFEDiffuseLightingElement::setFilterEffectAttribute):
Setting the new attribute value for each FilterEffect.
(WebCore::SVGFEDiffuseLightingElement::svgAttributeChanged):
- svg/SVGFEDiffuseLightingElement.h:
Calling primitiveAttributeChanged.
- svg/SVGFilterPrimitiveStandardAttributes.cpp:
(WebCore::SVGFilterPrimitiveStandardAttributes::setFilterEffectAttribute):
This function will be removed when all FilterElement implements
their setFilterEffectAttribute
- svg/SVGFilterPrimitiveStandardAttributes.h:
(WebCore::SVGFilterPrimitiveStandardAttributes::primitiveAttributeChanged):
- svg/graphics/filters/SVGFilterBuilder.cpp:
(WebCore::SVGFilterBuilder::appendEffectToEffectReferences): The
renderers are assigned to the filter effects.
(WebCore::SVGFilterBuilder::clearEffects):
(WebCore::SVGFilterBuilder::clearResultsRecursive): Recursively
clearing the result images for those filters, whose depend on
the starting filter.
- svg/graphics/filters/SVGFilterBuilder.h:
(WebCore::SVGFilterBuilder::effectReferences): 'get' is unnecessary
(WebCore::SVGFilterBuilder::effectByRenderer): returns the
FilterEffect belongs to this RenderObject.
- 5:46 AM Changeset in webkit [76589] by
-
- 4 edits3 adds in trunk
2011-01-25 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG is missing to-animation support for Path
https://bugs.webkit.org/show_bug.cgi?id=52982
Added an animation test to check 'to' animations in combination with SVG paths.
- svg/animations/animate-path-to-animation-expected.txt: Added.
- svg/animations/animate-path-to-animation.html: Added.
- svg/animations/script-tests/animate-path-to-animation.js: Added. (sample1): (sample2): (sample3): (executeTest):
2011-01-25 Dirk Schulze <krit@webkit.org>
Reviewed by Nikolas Zimmermann.
SVG is missing to-animation support for Path
https://bugs.webkit.org/show_bug.cgi?id=52982
SVG was missing 'to' animation support for SVG paths. Even the fallback to discrete
animation did not work and an assert was thrown, because of the missing m_fromPath.
This also influences a test of the W3C test suite. Subtest 2 of animate-elem-83-t.svg passes now.
Test: svg/animations/animate-path-to-animation.html
- svg/SVGAnimateElement.cpp: (WebCore::SVGAnimateElement::calculateAnimatedValue): Take the value of the last SVGAnimateElement for m_fromPath, since 'to' animations are accumulative. (WebCore::SVGAnimateElement::calculateFromAndToValues): Added support for 'to' animations. (WebCore::SVGAnimateElement::resetToBaseValue): Set m_animatedPath on the first animation element to baseVal.
- svg/SVGPathByteStream.h: (WebCore::SVGPathByteStream::copySVGPathByteStream): Return copy of current byte stream.
- 5:34 AM Changeset in webkit [76588] by
-
- 22 edits in trunk/LayoutTests
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Update gtk/qt baseline.
- platform/gtk/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/gtk/svg/text/text-hkern-expected.txt:
- platform/gtk/svg/text/text-hkern-on-vertical-text-expected.txt:
- platform/gtk/svg/text/text-vkern-expected.txt:
- platform/gtk/svg/text/text-vkern-on-horizontal-text-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/qt/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/qt/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
- platform/qt/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/qt/svg/text/text-hkern-expected.txt:
- platform/qt/svg/text/text-hkern-on-vertical-text-expected.txt:
- platform/qt/svg/text/text-vkern-expected.txt:
- platform/qt/svg/text/text-vkern-on-horizontal-text-expected.txt:
- platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.txt:
- 5:32 AM Changeset in webkit [76587] by
-
- 11 edits in trunk
2011-01-25 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: bind resources to URLs upon adding them into the tree.
https://bugs.webkit.org/show_bug.cgi?id=53013
- inspector/debugger-scripts-expected.txt:
- inspector/debugger-scripts.html:
2011-01-25 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: bind resources to URLs upon adding them into the tree.
https://bugs.webkit.org/show_bug.cgi?id=53013
- inspector/front-end/AuditRules.js: (WebInspector.AuditRules.UnusedCssRule.prototype.doRun.evalCallback.selectorsCallback):
- inspector/front-end/CSSStyleModel.js: (WebInspector.CSSStyleModel.prototype._styleSheetChanged.callback): (WebInspector.CSSStyleModel.prototype._styleSheetChanged):
- inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype._parsedScriptSource):
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager.prototype._processCachedResources): (WebInspector.NetworkManager.prototype.inflightResourceForURL): (WebInspector.NetworkDispatcher): (WebInspector.NetworkDispatcher.prototype.willSendRequest): (WebInspector.NetworkDispatcher.prototype.markResourceAsCached): (WebInspector.NetworkDispatcher.prototype.didReceiveResponse): (WebInspector.NetworkDispatcher.prototype.didReceiveContentLength): (WebInspector.NetworkDispatcher.prototype.didFinishLoading): (WebInspector.NetworkDispatcher.prototype.didFailLoading): (WebInspector.NetworkDispatcher.prototype.willSendWebSocketHandshakeRequest): (WebInspector.NetworkDispatcher.prototype.didReceiveWebSocketHandshakeResponse): (WebInspector.NetworkDispatcher.prototype.didCloseWebSocket): (WebInspector.NetworkDispatcher.prototype._appendRedirect): (WebInspector.NetworkDispatcher.prototype._startResource): (WebInspector.NetworkDispatcher.prototype._finishResource): (WebInspector.NetworkDispatcher.prototype._createResource):
- inspector/front-end/ResourceTreeModel.js: (WebInspector.ResourceTreeModel.prototype.addResourceToFrame): (WebInspector.ResourceTreeModel.prototype._bindResourceURL): (WebInspector.ResourceTreeModel.prototype._clearResources): (WebInspector.ResourceTreeModel.prototype._unbindResourceURL):
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.canShowSourceLine): (WebInspector.ResourcesPanel.prototype.showSourceLine):
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._parsedScriptSource): (WebInspector.ScriptsPanel.prototype._addScript):
- 4:47 AM Changeset in webkit [76586] by
-
- 42 edits in trunk
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Use accurate floating-point metrics for SVG Font calculations instead of casting float -> integer.
This hopefully fixes differences between 32/64 bit bots.
Needs new layout test results for several platforms, which need to be taken from the bots landing afterwards.
- platform/graphics/SimpleFontData.cpp: (WebCore::SimpleFontData::SimpleFontData): (WebCore::SimpleFontData::initCharWidths):
2011-01-25 Nikolas Zimmermann <nzimmermann@rim.com>
Reviewed by Dirk Schulze.
Introduce FontMetrics abstraction
https://bugs.webkit.org/show_bug.cgi?id=51456
Update mac/mac-leopard pixel baseline after removing the float -> int truncation in the SVG Fonts ascent/descent calculation code.
- platform/gtk/Skipped: Unskip several tests.
- platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum:
- platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png:
- platform/mac-leopard/svg/batik/text/textEffect-expected.checksum:
- platform/mac-leopard/svg/batik/text/textEffect-expected.png:
- platform/mac-leopard/svg/batik/text/textEffect3-expected.checksum:
- platform/mac-leopard/svg/batik/text/textEffect3-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.checksum:
- platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.png:
- platform/mac-leopard/svg/text/text-text-05-t-expected.checksum:
- platform/mac-leopard/svg/text/text-text-05-t-expected.png:
- platform/mac-leopard/svg/text/text-text-06-t-expected.checksum:
- platform/mac-leopard/svg/text/text-text-06-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png:
- platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
- platform/mac/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
- platform/mac/svg/batik/text/textEffect-expected.txt:
- platform/mac/svg/batik/text/textEffect3-expected.txt:
- platform/mac/svg/batik/text/textPosition2-expected.png:
- platform/mac/svg/batik/text/textPosition2-expected.txt:
- platform/mac/svg/custom/svg-fonts-in-html-expected.txt:
- platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt:
- platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt:
- platform/mac/svg/text/text-text-05-t-expected.txt:
- platform/mac/svg/text/text-text-06-t-expected.txt:
- svg/custom/glyph-transformation-with-hkern-expected.txt:
-This line, and those below, will be ignored--
M LayoutTests/platform/mac-leopard/svg/text/text-text-05-t-expected.checksum
M LayoutTests/platform/mac-leopard/svg/text/text-text-06-t-expected.checksum
M LayoutTests/platform/mac-leopard/svg/text/text-text-05-t-expected.png
M LayoutTests/platform/mac-leopard/svg/text/text-text-06-t-expected.png
M LayoutTests/platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png
M LayoutTests/platform/mac-leopard/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect3-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect-expected.checksum
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect-expected.png
M LayoutTests/platform/mac-leopard/svg/batik/text/textEffect3-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.checksum
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-with-no-element-reference-expected.png
M LayoutTests/platform/mac-leopard/svg/custom/svg-fonts-in-html-expected.png
M LayoutTests/platform/mac/svg/text/text-text-06-t-expected.txt
M LayoutTests/platform/mac/svg/text/text-text-05-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/text-text-06-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/animate-elem-24-t-expected.png
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.png
M LayoutTests/platform/mac/svg/batik/text/textEffect3-expected.txt
M LayoutTests/platform/mac/svg/batik/text/textPosition2-expected.png
M LayoutTests/platform/mac/svg/batik/text/textEffect-expected.txt
M LayoutTests/platform/mac/svg/batik/text/textPosition2-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt
M LayoutTests/platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-in-html-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt
M LayoutTests/platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt
M LayoutTests/platform/gtk/Skipped
M LayoutTests/ChangeLog
M LayoutTests/svg/custom/glyph-transformation-with-hkern-expected.txt
M Source/WebCore/ChangeLog
M Source/WebCore/platform/graphics/SimpleFontData.cpp
- 4:43 AM Changeset in webkit [76585] by
-
- 4 edits in trunk/Source/WebKit2
2011-01-25 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt][WK2] Add QWKPage::processCrashed() signal
https://bugs.webkit.org/show_bug.cgi?id=53076
- UIProcess/API/qt/qwkpage.cpp: (QWKPagePrivate::processDidCrash):
- UIProcess/API/qt/qwkpage.h:
- UIProcess/API/qt/qwkpage_p.h:
- 3:43 AM Changeset in webkit [76584] by
-
- 2 edits in trunk/Tools
2011-01-25 Gustavo Noronha Silva <gustavo.noronha@collabora.co.uk>
Reviewed by Andreas Kling.
[GTK] Remove 64 bits release bot from the buildbot master
https://bugs.webkit.org/show_bug.cgi?id=52899
Removes the 64 bits release slave from the buildbot configuration,
so that we can use it as an EWS.
- BuildSlaveSupport/build.webkit.org-config/config.json:
- 3:38 AM Changeset in webkit [76583] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Unreviewed, skipping flaky test on GTK debug bots.
editing/selection/extend-selection-bidi.html test is flaky
https://bugs.webkit.org/show_bug.cgi?id=53074
- platform/gtk/Skipped: Skipped test.
- 3:09 AM Changeset in webkit [76582] by
-
- 2 edits in trunk/LayoutTests
2011-01-25 Mario Sanchez Prada <msanchez@igalia.com>
Unreviewed, skipping flaky test on GTK debug bots.
fast/spatial-navigation/snav-unit-overflow-and-scroll-in-direction.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=53073
- platform/gtk/Skipped: Skipped test.
- 1:44 AM Changeset in webkit [76581] by
-
- 11 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: debugger and browser debugger agents should manage sticky breakpoints independently.
https://bugs.webkit.org/show_bug.cgi?id=52999
- inspector/Inspector.idl:
- inspector/InspectorAgent.cpp: (WebCore::InspectorAgent::didCommitLoad): (WebCore::InspectorAgent::enableDebugger): (WebCore::InspectorAgent::inspectedURLWithoutFragment):
- inspector/InspectorAgent.h:
- inspector/InspectorBrowserDebuggerAgent.cpp: (WebCore::InspectorBrowserDebuggerAgent::setAllBrowserBreakpoints): (WebCore::InspectorBrowserDebuggerAgent::inspectedURLChanged): (WebCore::InspectorBrowserDebuggerAgent::restoreStickyBreakpoint):
- inspector/InspectorBrowserDebuggerAgent.h:
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::InspectorDebuggerAgent): (WebCore::InspectorDebuggerAgent::setAllJavaScriptBreakpoints): (WebCore::InspectorDebuggerAgent::inspectedURLChanged): (WebCore::InspectorDebuggerAgent::restoreBreakpoints):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorState.cpp: (WebCore::InspectorState::InspectorState):
- inspector/InspectorState.h:
- inspector/front-end/BreakpointManager.js: (WebInspector.BreakpointManager): (WebInspector.BreakpointManager.prototype._projectChanged): (WebInspector.BreakpointManager.prototype._saveBreakpoints): (WebInspector.BreakpointManager.prototype._pushBreakpointsToBackend):
- 1:19 AM Changeset in webkit [76580] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Nikolas Zimmermann.
Skip some new tests for WebKit2 that use eventSender
https://bugs.webkit.org/show_bug.cgi?id=53068
- platform/mac-wk2/Skipped:
- 1:15 AM Changeset in webkit [76579] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-25 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, trivial debugger test fix.
- src/js/Tests.js:
- 12:43 AM Changeset in webkit [76578] by
-
- 2 edits in trunk/Source/WebCore
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Crash in some pages containing flash
https://bugs.webkit.org/show_bug.cgi?id=53016
Flash plugin can produce X errors that are handled by the GDK X
error handler, which exits the process. Since we don't want to
crash due to flash bugs, we install a custom error handler to show
a warning when a X error happens without aborting.
- plugins/gtk/PluginPackageGtk.cpp: (WebCore::webkitgtkXError): (WebCore::PluginPackage::load):
- 12:33 AM Changeset in webkit [76577] by
-
- 4 edits in trunk/Source/WebCore
2011-01-25 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
[GTK] Implement spin buttons in RenderThemeGtk
https://bugs.webkit.org/show_bug.cgi?id=51454
Paint inner up/down buttons for spin button elements when building
with GTK+ 3.x.
Test results will land with the GTK+ 2.x version of this patch.
- platform/gtk/RenderThemeGtk.h:
- platform/gtk/RenderThemeGtk2.cpp: (WebCore::RenderThemeGtk::adjustInnerSpinButtonStyle): (WebCore::RenderThemeGtk::paintInnerSpinButton):
- platform/gtk/RenderThemeGtk3.cpp: (WebCore::spinButtonArrowSize): (WebCore::RenderThemeGtk::adjustInnerSpinButtonStyle): (WebCore::paintSpinArrowButton): (WebCore::RenderThemeGtk::paintInnerSpinButton):
Jan 24, 2011:
- 10:44 PM Changeset in webkit [76576] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Mihai Parparita <mihaip@chromium.org>
Unreviewed. Missed move of one m_deleted use to be outside NDEBUG block
in r76575.
- loader/cache/CachedResource.cpp: (WebCore::CachedResource::~CachedResource):
- 10:17 PM Changeset in webkit [76575] by
-
- 4 edits in trunk/Source/WebCore
2011-01-24 Mihai Parparita <mihaip@chromium.org>
Reviewed by Tony Chang.
Add runtime checks for invariants in memory cache
https://bugs.webkit.org/show_bug.cgi?id=53059
To help track down bug 53045, add some CRASH calls in addition to
ASSERTs, so that we can track down failures in reliability bots.
Just some checks, no new tests necessary.
- css/CSSImageValue.cpp: (WebCore::CSSImageValue::cachedImage):
- loader/cache/CachedResource.h:
- loader/cache/CachedResource.cpp: (WebCore::CachedResource::~CachedResource):
- 10:15 PM Changeset in webkit [76574] by
-
- 2 edits in trunk/Tools
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Dan Bernstein.
Implement database quota callback to fix storage tests on WebKit2 bot
https://bugs.webkit.org/show_bug.cgi?id=53064
- WebKitTestRunner/TestController.cpp: (WTR::exceededDatabaseQuota): (WTR::TestController::createOtherPage): (WTR::TestController::initialize):
- 10:09 PM Changeset in webkit [76573] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Dan Bernstein.
Leaking CSSRuleDataList objects
https://bugs.webkit.org/show_bug.cgi?id=53062
Fix leaked CSSRuleDataLists added to the m_pseudoRules hash.
- css/CSSStyleSelector.cpp: (WebCore::CSSRuleSet::~CSSRuleSet):
- 10:05 PM Changeset in webkit [76572] by
-
- 8 edits in trunk/LayoutTests
2011-01-24 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
Chromium-Linux rebaseline for r76567.
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.checksum:
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.png:
- platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.checksum:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.png:
- platform/chromium-linux/fast/speech/input-appearance-numberandspeech-expected.txt:
- platform/chromium/test_expectations.txt:
- 9:52 PM Changeset in webkit [76571] by
-
- 18 edits in trunk/Source/WebCore
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Eric Seidel.
Refcount Images used in rendering code
https://bugs.webkit.org/show_bug.cgi?id=52701
Change StyleImage::image(RenderObject*, const IntSize&) and
CSSImageGeneratorValue::image(RenderObject*, const IntSize&) to
return PassRefPtr<Image>, and adjust other code accordingly.
This allows us to return one-time images, for example for CSS gradients
whose appearance may change depending on factors other than the renderer
and the destination size.
- css/CSSCanvasValue.cpp: (WebCore::CSSCanvasValue::image):
- css/CSSCanvasValue.h:
- css/CSSGradientValue.cpp: (WebCore::CSSGradientValue::image):
- css/CSSGradientValue.h:
- css/CSSImageGeneratorValue.h:
- rendering/RenderBoxModelObject.cpp: (WebCore::RenderBoxModelObject::paintFillLayerExtended): (WebCore::RenderBoxModelObject::paintNinePieceImage):
- rendering/RenderImage.cpp: (WebCore::RenderImage::paintReplaced): (WebCore::RenderImage::paintIntoRect):
- rendering/RenderImageResource.h: (WebCore::RenderImageResource::image):
- rendering/RenderImageResourceStyleImage.h: (WebCore::RenderImageResourceStyleImage::image):
- rendering/RenderListMarker.cpp: (WebCore::RenderListMarker::paint):
- rendering/style/StyleCachedImage.cpp: (WebCore::StyleCachedImage::image):
- rendering/style/StyleCachedImage.h:
- rendering/style/StyleGeneratedImage.cpp: (WebCore::StyleGeneratedImage::image):
- rendering/style/StyleGeneratedImage.h:
- rendering/style/StyleImage.h:
- rendering/style/StylePendingImage.h: (WebCore::StylePendingImage::image):
- rendering/svg/RenderSVGImage.cpp: (WebCore::RenderSVGImage::paint):
- 9:38 PM Changeset in webkit [76570] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skip a slightly different set of tests after r76555. Seems that some of these
failures are cascading.
- platform/gtk/Skipped: Update the skipped list.
- 9:17 PM Changeset in webkit [76569] by
-
- 44 edits7 adds36 deletes in trunk
2011-01-24 Tony Chang <tony@chromium.org>
Unreviewed, reverting 5 changes of baselines that are incorrect for Linux.
Mark win tests as failing for now.
- platform/chromium-linux/fast/css/acid2-expected.txt: Removed.
- platform/chromium-linux/fast/css/acid2-pixel-expected.checksum:
- platform/chromium-linux/fast/css/acid2-pixel-expected.png:
- platform/chromium-linux/fast/css/acid2-pixel-expected.txt: Removed.
- platform/chromium-linux/fast/forms/button-sizes-expected.checksum:
- platform/chromium-linux/fast/forms/button-sizes-expected.png:
- platform/chromium-linux/fast/forms/button-sizes-expected.txt:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.checksum:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.png:
- platform/chromium-linux/fast/forms/input-button-sizes-expected.txt:
- platform/chromium-linux/http/tests/misc/acid2-expected.txt: Removed.
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.checksum:
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.png:
- platform/chromium-linux/http/tests/misc/acid2-pixel-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Removed.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Removed.
- platform/chromium-linux/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: Removed.
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Removed.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Removed.
- platform/chromium-linux/svg/hixie/perf/003-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/004-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/005-expected.txt: Added.
- platform/chromium-linux/svg/hixie/perf/006-expected.txt: Added.
- platform/chromium-linux/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: Added.
- platform/chromium-linux/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.checksum: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.png: Removed.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-text-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-text-01-b-expected.png:
- platform/chromium-linux/svg/text/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/text/text-text-04-t-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-vkern-expected.checksum: Removed.
- platform/chromium-linux/svg/text/text-vkern-expected.txt: Removed.
- platform/chromium-linux/svg/text/text-vkern-on-horizontal-text-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Removed.
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
- platform/chromium-win/svg/batik/text/xmlSpace-expected.txt:
- platform/chromium-win/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-in-html-expected.txt:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.checksum:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.png:
- platform/chromium-win/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Removed.
- platform/chromium-win/svg/text/text-hkern-expected.txt: Removed.
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.checksum:
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.png:
- platform/chromium-win/svg/text/text-hkern-on-vertical-text-expected.txt: Removed.
- platform/chromium-win/svg/text/text-text-04-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-04-t-expected.png:
- platform/chromium-win/svg/text/text-text-04-t-expected.txt:
- platform/chromium-win/svg/text/text-vkern-expected.checksum:
- platform/chromium-win/svg/text/text-vkern-expected.png:
- platform/chromium-win/svg/text/text-vkern-expected.txt: Removed.
- platform/chromium-win/svg/text/text-vkern-on-horizontal-text-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
2011-01-24 Tony Chang <tony@chromium.org>
Unreviewed, round ascent and descent to match old code.
- platform/graphics/chromium/SimpleFontDataLinux.cpp: (WebCore::SimpleFontData::platformInit):
- 9:15 PM Changeset in webkit [76568] by
-
- 8 edits2 adds in trunk
2011-01-24 Simon Fraser <Simon Fraser>
Reviewed by Chris Marrin.
perspective() transform function should take lengths
https://bugs.webkit.org/show_bug.cgi?id=52683
The argument to the perspective() transform function should
be a Length, rather than a bare number. Bare numbers are still
accepted (and treated as px), but this behavior is deprecated.
Test: animations/3d/transform-perspective.html
transforms/3d/general/3dtransform-values.html
- css/CSSParser.cpp: (WebCore::CSSParser::parseTransform): Check the units for the perspective() function. Allow bare numbers for backwards compatibility.
- css/CSSStyleSelector.cpp: (WebCore::CSSStyleSelector::createTransformOperations): Convert value to Length.
- platform/graphics/transforms/PerspectiveTransformOperation.cpp: (WebCore::clampToPostiveInteger): Helper. (WebCore::PerspectiveTransformOperation::blend): Blend via Lengths.
- platform/graphics/transforms/PerspectiveTransformOperation.h: (WebCore::PerspectiveTransformOperation::create): double -> Length. (WebCore::PerspectiveTransformOperation::perspective): Ditto. (WebCore::PerspectiveTransformOperation::isIdentity): Ditto. (WebCore::PerspectiveTransformOperation::apply): Ditto. (WebCore::PerspectiveTransformOperation::PerspectiveTransformOperation): Assert that the Length is a fixed type.
- 8:38 PM Changeset in webkit [76567] by
-
- 4 edits2 adds in trunk
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
[Windows] Textfield <input>s have different widths.
https://bugs.webkit.org/show_bug.cgi?id=48405
- fast/forms/input-widths-expected.txt: Added.
- fast/forms/input-widths.html: Added.
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
[Windows] Textfield <input>s have different widths.
https://bugs.webkit.org/show_bug.cgi?id=48405
- Apply the padding override for type=text to other textfield types too.
- Reset margin value of outer spin button, which is not used in Windows.
- Don't add inner spin button width to the preferred text field width. Text fields should have the identical widths regardless of the existence of spin buttons.
Test: fast/forms/input-widths.html
- css/themeWin.css: (input[type="week"]): (input[type="week"]:disabled): (input[type="search"]::-webkit-search-cancel-button): (input::-webkit-outer-spin-button):
- rendering/RenderTextControlSingleLine.cpp: (WebCore::RenderTextControlSingleLine::preferredContentWidth): Don't add inner spin button width to the preferred width.
- 8:36 PM Changeset in webkit [76566] by
-
- 4 edits4 adds in trunk
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Some bugs of search cancel button and spin button about state change in
an event handler.
https://bugs.webkit.org/show_bug.cgi?id=46950
- fast/forms/input-number-change-type-on-focus-expected.txt: Added.
- fast/forms/input-number-change-type-on-focus.html: Added.
- fast/forms/search-hide-cancel-on-cancel-expected.txt: Added.
- fast/forms/search-hide-cancel-on-cancel.html: Added.
2011-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Some bugs of search cancel button and spin button about state change in
an event handler.
https://bugs.webkit.org/show_bug.cgi?id=46950
Fix the following problems:
- Type=search field didn't release event capturing
- Assertion failure when an input field with spin buttons was changed to another type on focus event.
- A input field with spin button didn't release event capturing when it was changed to another type on focus event.
Tests: fast/forms/input-number-change-type-on-focus.html
fast/forms/search-hide-cancel-on-cancel.html
- rendering/TextControlInnerElements.cpp:
(WebCore::SearchFieldCancelButtonElement::defaultEventHandler):
- Make the variable 'input' RefPtr. It makes the code simpler.
- Remove visibility check on mouseup event. We should release capturing anyway because the cancel button may be invisible if JavaScript code called by the focus event removes the input value.
(WebCore::SpinButtonElement::detach):
- Release capturing on detach because it is possible that a spin button node is detached while it is capturing events.
(WebCore::SpinButtonElement::defaultEventHandler):
Take a reference to this and check renderer() after some functions which
may run JavaScript code.
(WebCore::InputFieldSpeechButtonElement::defaultEventHandler):
Make the variable 'input' RefPtr to align other functions in this file.
(WebCore::InputFieldSpeechButtonElement::setRecognitionResult): ditto.
- rendering/TextControlInnerElements.h: Declare SpinButtonElement::detach().
- 7:27 PM Changeset in webkit [76565] by
-
- 7 edits in trunk
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Ojan Vafai.
Inserting multiple whitespace using text composition (IME) should insert interleaved nbsp and whitespace.
https://bugs.webkit.org/show_bug.cgi?id=52781
The test was rebaselined to have interleaved space and non-breaking space.
- editing/inserting/insert-composition-whitespace-expected.txt:
- editing/inserting/insert-composition-whitespace.html:
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Ojan Vafai.
Inserting multiple whitespace using text composition (IME) should insert interleaved nbsp and whitespace.
https://bugs.webkit.org/show_bug.cgi?id=52781
The bug was caused by stringWithRebalancedWhitespace's replacing the space at the beginning of a paragraph
and the end of a paragraph by a non-breaking space after it replaced two consecutive spaces by a space and
non-breaking space pattern, thereby replacing more spaces by non-breaking spaces than needed.
Rewrote the function using Vector<UChar> to fix the bug. New function no longer calls String::replace
multiple times but instead it traverses through the string and replaces a space that immediately follows
another space or appears at the beginning of a paragraph or at the end of a paragraph by a non-break space.
- editing/CompositeEditCommand.cpp:
- editing/htmlediting.cpp: (WebCore::stringWithRebalancedWhitespace): Written.
- editing/htmlediting.h: (WebCore::isWhitespace): Removed from CompositeEditCommand.cpp
- 6:56 PM Changeset in webkit [76564] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skip one more crashing test.
- platform/gtk/Skipped: Skip a test.
- 6:48 PM Changeset in webkit [76563] by
-
- 2 edits in trunk/Source/WebKit2
Fix build.
- WebProcess/mac/WebProcessMac.mm:
(WebKit::initializeSandbox):
- 6:39 PM Changeset in webkit [76562] by
-
- 4 edits2 adds in trunk/Source/WebCore
2011-01-24 Kenneth Russell <kbr@google.com>
Reviewed by James Robinson.
Web Audio API: port FFTFrame to FFTW
https://bugs.webkit.org/show_bug.cgi?id=52989
Ported FFTFrame class to the open-source FFTW library. Tested with
unit tests from Chris Rogers. Made preliminary changes to GYP
files for conditional compilation of these files; will need to be
adjusted once FFTW is integrated as third-party source.
- WebCore.gyp/WebCore.gyp:
- WebCore.gypi:
- platform/audio/FFTFrame.h:
- platform/audio/fftw: Added.
- platform/audio/fftw/FFTFrameFFTW.cpp: Added. (WebCore::FFTFrame::FFTFrame): (WebCore::FFTFrame::~FFTFrame): (WebCore::FFTFrame::multiply): (WebCore::FFTFrame::doFFT): (WebCore::FFTFrame::doInverseFFT): (WebCore::FFTFrame::cleanup): (WebCore::FFTFrame::realData): (WebCore::FFTFrame::imagData): (WebCore::FFTFrame::fftwPlanForSize):
- 6:38 PM Changeset in webkit [76561] by
-
- 9 edits in trunk/Source
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Reset the page scale factor on standard frame loads
https://bugs.webkit.org/show_bug.cgi?id=53058
<rdar://problem/8908844>
Add a symbol needed by WebKit2.
- WebCore.exp.in:
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Dan Bernstein.
Reset the page scale factor on standard frame loads
https://bugs.webkit.org/show_bug.cgi?id=53058
<rdar://problem/8908844>
- UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::scaleWebView): Don't set m_viewScaleFactor here. It will be set in viewScaleFactorDidChange.
(WebKit::WebPageProxy::viewScaleFactorDidChange):
Update m_viewScaleFactor.
- UIProcess/WebPageProxy.h: Add viewScaleFactorDidChange.
- UIProcess/WebPageProxy.messages.in: Add ViewScaleFactorDidChange message.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp: (WebKit::WebFrameLoaderClient::dispatchDidCommitLoad): Set the scale factor.
(WebKit::WebFrameLoaderClient::restoreViewState):
Inform the UI process about the new view scale factor.
- WebProcess/WebPage/WebPage.cpp: (WebKit::WebPage::scaleWebView): Send a ViewScaleFactorDidChange message.
- 6:21 PM Changeset in webkit [76560] by
-
- 8 edits in trunk/Source/WebCore
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Reviewed by Eric Seidel.
Stop instantiating legacy editing positions in InsertTextCommand, MoveSelectionCommand,
ReplaceSelectionCommand, SelectionController, SpellChecker, TypingCommand, and markup.cpp
https://bugs.webkit.org/show_bug.cgi?id=52676
Stop instantiating legacy editing positions in the following files.
- editing/InsertTextCommand.cpp: (WebCore::InsertTextCommand::prepareForTextInsertion): (WebCore::InsertTextCommand::performTrivialReplace): (WebCore::InsertTextCommand::input): (WebCore::InsertTextCommand::insertTab):
- editing/MoveSelectionCommand.cpp: (WebCore::MoveSelectionCommand::doApply):
- editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::removeUnrenderedTextNodesAtEnds): (WebCore::ReplaceSelectionCommand::mergeEndIfNeeded): (WebCore::ReplaceSelectionCommand::doApply): (WebCore::ReplaceSelectionCommand::shouldRemoveEndBR): (WebCore::ReplaceSelectionCommand::performTrivialReplace):
- editing/SelectionController.cpp: (WebCore::SelectionController::setSelectionFromNone):
- editing/SpellChecker.cpp: (WebCore::SpellChecker::didCheck):
- editing/TypingCommand.cpp: (WebCore::TypingCommand::makeEditableRootEmpty): (WebCore::TypingCommand::deleteKeyPressed): (WebCore::TypingCommand::forwardDeleteKeyPressed):
- editing/markup.cpp: (WebCore::StyledMarkupAccumulator::appendText): (WebCore::StyledMarkupAccumulator::serializeNodes): (WebCore::highestAncestorToWrapMarkup): (WebCore::createMarkup):
- 6:08 PM Changeset in webkit [76559] by
-
- 25 edits4 deletes in trunk
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Use designated temp directory for the database for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=53052
Adopt the new WK2 API for this.
- WebKitTestRunner/TestController.cpp: (WTR::TestController::libraryPathForTesting): (WTR::TestController::initialize):
- WebKitTestRunner/TestController.h:
- WebKitTestRunner/mac/TestControllerMac.mm: (WTR::TestController::platformLibraryPathForTesting):
- WebKitTestRunner/qt/TestControllerQt.cpp: (WTR::TestController::platformLibraryPathForTesting):
- WebKitTestRunner/win/TestControllerWin.cpp: (WTR::TestController::platformLibraryPathForTesting):
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Anders Carlsson.
Use designated temp directory for the database for WebKit2
https://bugs.webkit.org/show_bug.cgi?id=53052
Add the API necessary to support this. Database path is now
determined on the UI process side and passed to the Web process.
Reviewed by Anders Carlsson.
- GNUmakefile.am:
- Shared/WebProcessCreationParameters.cpp: (WebKit::WebProcessCreationParameters::encode): (WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h:
- UIProcess/API/C/WKContext.cpp: (WKContextSetDatabaseDirectory):
- UIProcess/API/C/WKContextPrivate.h:
- UIProcess/WebContext.cpp: (WebKit::WebContext::ensureWebProcess): (WebKit::WebContext::databaseDirectory):
- UIProcess/WebContext.h: (WebKit::WebContext::setDatabaseDirectory):
- UIProcess/mac/WebContextMac.mm: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- UIProcess/qt/WebContextQt.cpp: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- UIProcess/win/WebContextWin.cpp: (WebKit::WebContext::platformDefaultDatabaseDirectory):
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/WebCoreSupport/WebDatabaseManager.cpp: (WebKit::WebDatabaseManager::initialize): (WebKit::WebDatabaseManager::WebDatabaseManager):
- WebProcess/WebCoreSupport/WebDatabaseManager.h:
- WebProcess/WebCoreSupport/gtk/WebDatabaseManagerGtk.cpp: Removed.
- WebProcess/WebCoreSupport/mac/WebDatabaseManagerMac.mm: Removed.
- WebProcess/WebCoreSupport/qt/WebDatabaseManagerQt.cpp: Removed.
- WebProcess/WebCoreSupport/win/WebDatabaseManagerWin.cpp: Removed.
- WebProcess/WebProcess.cpp: (WebKit::WebProcess::WebProcess): (WebKit::WebProcess::initializeWebProcess):
- WebProcess/com.apple.WebProcess.sb:
- WebProcess/mac/WebProcessMac.mm: (WebKit::initializeSandbox):
- win/WebKit2.vcproj:
- 6:05 PM Changeset in webkit [76558] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Skipping failing tests after r76555.
- platform/gtk/Skipped: Skip failing tests.
- 5:36 PM Changeset in webkit [76557] by
-
- 7 edits in trunk
2011-01-24 Peter Kasting <pkasting@google.com>
Reviewed by Darin Adler.
Roll back r67261 ("Don't fire onclick on middle clicks") due to
regressions.
https://bugs.webkit.org/show_bug.cgi?id=46733
- fast/events/mouse-click-events-expected.txt:
- fast/events/script-tests/mouse-click-events.js:
2011-01-24 Peter Kasting <pkasting@google.com>
Reviewed by Darin Adler.
Roll back r67261 ("Don't fire onclick on middle clicks") due to
regressions.
https://bugs.webkit.org/show_bug.cgi?id=46733
- html/HTMLAnchorElement.cpp: (WebCore::isLinkClick):
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::preDispatchEventHandler): (WebCore::HTMLInputElement::postDispatchEventHandler): (WebCore::HTMLInputElement::defaultEventHandler):
- page/EventHandler.cpp: (WebCore::EventHandler::handleMouseDoubleClickEvent): (WebCore::EventHandler::handleMouseReleaseEvent):
- 4:58 PM Changeset in webkit [76556] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Xiaomei Ji <xji@chromium.org>
Unreviewed.
Skip cjk-segmentation.html (introduced in r76548) in QT.
QT skipped range-expand.html, skip cjk-segmentation as well.
- platform/qt/Skipped:
- 4:47 PM Changeset in webkit [76555] by
-
- 4 edits in trunk
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Reviewed by Eric Seidel.
[GTK] Many DOM XHTML tests time out
https://bugs.webkit.org/show_bug.cgi?id=52553
- platform/gtk/Skipped: Unskip tests which are no longer timing out.
2011-01-24 Martin Robinson <mrobinson@igalia.com>
Reviewed by Eric Seidel.
[GTK] Many DOM XHTML tests time out
https://bugs.webkit.org/show_bug.cgi?id=52553
Properly handle the situation where a synchronous load fails before the inner
event loop has started. In this case, we simply do not run the inner event loop,
or else it will block indefinitely (since no GIO or libsoup callbacks will fire).
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::ResourceHandle::loadResourceSynchronously): Bail out of a synchronous load if it fails up front.
- 4:46 PM Changeset in webkit [76554] by
-
- 2 edits in trunk/Tools
Add a new Leopard test bot.
Reviewed by Stephanie Lewis.
- BuildSlaveSupport/build.webkit.org-config/config.json:
- 4:35 PM Changeset in webkit [76553] by
-
- 3 edits in trunk/Tools
2011-01-24 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Adam Barth.
Add EFL Builder to core waterfall
https://bugs.webkit.org/show_bug.cgi?id=52704
Add EFL Builder to the core waterfall again.
- Scripts/webkitpy/common/net/buildbot/buildbot.py:
- Scripts/webkitpy/common/net/buildbot/buildbot_unittest.py:
- 4:09 PM Changeset in webkit [76552] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Ryosuke Niwa <rniwa@webkit.org>
Unreviewed Chromium test expectation update for r76548.
- platform/chromium/test_expectations.txt:
- 3:40 PM Changeset in webkit [76551] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed build fix.
- win/WebKit2.vcproj: Don't build the CG Utilities when building
without CG support.
- 3:16 PM Changeset in webkit [76550] by
-
- 3 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by John Sullivan.
Don't use the timeout checker for non-user-interaction messages
https://bugs.webkit.org/show_bug.cgi?id=53046
- UIProcess/ChunkedUpdateDrawingAreaProxy.cpp: (WebKit::ChunkedUpdateDrawingAreaProxy::didSetSize): (WebKit::ChunkedUpdateDrawingAreaProxy::sendSetSize):
- UIProcess/LayerBackedDrawingAreaProxy.cpp: (WebKit::LayerBackedDrawingAreaProxy::sizeDidChange): (WebKit::LayerBackedDrawingAreaProxy::didSetSize):
- 2:42 PM Changeset in webkit [76549] by
-
- 8 edits in trunk/Source
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Darin Adler.
Remove sizeInBytes from GraphicsContext3D's various implementations
https://bugs.webkit.org/show_bug.cgi?id=52339
- src/GraphicsContext3DChromium.cpp:
- src/GraphicsContext3DInternal.h:
2011-01-24 Zhenyao Mo <zmo@google.com>
Reviewed by Darin Adler.
Remove sizeInBytes from GraphicsContext3D's various implementations
https://bugs.webkit.org/show_bug.cgi?id=52339
- html/canvas/WebGLRenderingContext.cpp: (WebCore::WebGLRenderingContext::sizeInBytes):
- platform/graphics/GraphicsContext3D.h:
- platform/graphics/opengl/GraphicsContext3DOpenGL.cpp:
- platform/graphics/qt/GraphicsContext3DQt.cpp:
- 2:25 PM Changeset in webkit [76548] by
-
- 1 edit4 adds in trunk/LayoutTests
2011-01-24 Xiaomei Ji <xji@chromium.org>
Reviewed by Ryosuke Niwa.
Add test for Chinese Segmentation.
https://bugs.webkit.org/show_bug.cgi?id=52926
The CJK segmentation currently does not work in other ports except Chromium.
Please refer to https://bugs.webkit.org/show_bug.cgi?id=53044 for detail.
- fast/text/international/cjk-segmentation-expected.txt: Added.
- fast/text/international/cjk-segmentation.html: Added.
- platform/chromium/fast/text/international: Added.
- platform/chromium/fast/text/international/cjk-segmentation-expected.txt: Added.
- 2:22 PM Changeset in webkit [76547] by
-
- 3 edits in trunk/Tools
2011-01-24 Xianzhu Wang <wangxianzhu@google.com>
Reviewed by Tony Chang.
new-run-webkit-tests fails to start HTTP server if there are proxy settings
https://bugs.webkit.org/show_bug.cgi?id=52872
Force disabling proxy to resolve the problem.
- Scripts/webkitpy/layout_tests/port/http_server_base.py:
- Scripts/webkitpy/layout_tests/port/websocket_server.py:
- 2:17 PM Changeset in webkit [76546] by
-
- 8 edits in trunk/Source
Windows Production build fix
Source/JavaScriptCore:
- JavaScriptCore.vcproj/JavaScriptCore.make: Update for move of JavaScriptCore into Source.
Source/WebCore:
- WebCore.vcproj/WebCore.make: Update for move of WebCore into Source.
Source/WebKit/win:
- WebKit.vcproj/WebKit.make: Update for move of WebKit into Source.
Source/WebKit2:
- win/WebKit2.make: Update for move of WebKit2 into Source.
- 2:01 PM Changeset in webkit [76545] by
-
- 4 edits in trunk/Websites/bugs.webkit.org
2011-01-24 William Siegrist <wsiegrist@apple.com>
Apply fix for https://bugzilla.mozilla.org/show_bug.cgi?id=621591
- 1:33 PM Changeset in webkit [76544] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Maciej Stachowiak <mjs@apple.com>
Reviewed by Eric Seidel.
Skip a newly added test that uses textInputController
https://bugs.webkit.org/show_bug.cgi?id=53027
- platform/mac-wk2/Skipped:
- 1:02 PM Changeset in webkit [76543] by
-
- 2 edits in trunk/Source/WebKit2
WebKit2: LayoutTests: The UNIMPLEMENTED warnings in TextCheckerWin should be disabled
https://bugs.webkit.org/show_bug.cgi?id=53029
Reviewed by Adam Roben.
- UIProcess/win/TextCheckerWin.cpp:
Disable the warnings for this file.
- 12:31 PM Changeset in webkit [76542] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Andrei Popescu <andreip@google.com>
Unreviewed, build fix.
LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
https://bugs.webkit.org/show_bug.cgi?id=53032
Fix the expected output, which still had an error.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- 12:22 PM Changeset in webkit [76541] by
-
- 5 edits1 add in trunk/Source/WebCore
2011-01-24 Anton Muhin <antonm@chromium.org>
Reviewed by Nate Chapin.
[v8] Refactoring: extract IntrusiveDOMWrapperMap into a seprate class and files.
https://bugs.webkit.org/show_bug.cgi?id=52911
Plain refactoring, covered by the existing tests.
- WebCore.gypi: IntrusiveDOMWrapperMap.h added.
- bindings/v8/DOMDataStore.cpp: IntrusiveDOMWrapperMap is moved out of DOMDataStore class.
- bindings/v8/DOMDataStore.h: IntrusiveDOMWrapperMap is moved out of DOMDataStore class.
- bindings/v8/IntrusiveDOMWrapperMap.h: Added. (WebCore::ChunkedTable::ChunkedTable): (WebCore::ChunkedTable::add): (WebCore::ChunkedTable::remove): (WebCore::ChunkedTable::clear): (WebCore::ChunkedTable::visit): (WebCore::ChunkedTable::Chunk::Chunk): (WebCore::ChunkedTable::clearEntries): (WebCore::ChunkedTable::visitEntries): (WebCore::IntrusiveDOMWrapperMap::IntrusiveDOMWrapperMap): (WebCore::IntrusiveDOMWrapperMap::get): (WebCore::IntrusiveDOMWrapperMap::set): (WebCore::IntrusiveDOMWrapperMap::contains): (WebCore::IntrusiveDOMWrapperMap::visit): (WebCore::IntrusiveDOMWrapperMap::removeIfPresent): (WebCore::IntrusiveDOMWrapperMap::clear): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::move): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::clear): (WebCore::IntrusiveDOMWrapperMap::ChunkedTableTraits::visit):
- bindings/v8/StaticDOMDataStore.h: include added.
- 12:11 PM Changeset in webkit [76540] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Kenji Imasaki <imasaki@chromium.org>
Reviewed by Jian Li.
[chromium] Remove non-flaky tests from test expectation file
https://bugs.webkit.org/show_bug.cgi?id=53022
- platform/chromium/test_expectations.txt:
- 12:07 PM Changeset in webkit [76539] by
-
- 3 edits in branches/chromium/648/Source/WebKit/chromium
Merge 76455 - 2011-01-22 John Abd-El-Malek <jam@chromium.org>
Reviewed by Adam Barth.
[chromium]: Fix WebScrollbarImpl not getting scroll events after recent scrollbar refactoring
https://bugs.webkit.org/show_bug.cgi?id=52967
- src/WebScrollbarImpl.cpp: (WebKit::WebScrollbarImpl::horizontalScrollbar): (WebKit::WebScrollbarImpl::verticalScrollbar):
- src/WebScrollbarImpl.h:
TBR=jam@chromium.org
Review URL: http://codereview.chromium.org/6392001
- 11:43 AM Changeset in webkit [76538] by
-
- 3 edits in trunk/LayoutTests
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Jeremy Orlow.
LayoutTest/storage/indexeddb/objectstore-autoincrement.html is failing after r76533
https://bugs.webkit.org/show_bug.cgi?id=53032
This fixes the layout test by modifying the arguments to IDBDatabase::transaction.
- storage/indexeddb/objectstore-autoincrement-expected.txt:
- storage/indexeddb/objectstore-autoincrement.html:
- 11:42 AM Changeset in webkit [76537] by
-
- 14 edits in trunk/Source/WebCore
2011-01-24 Shane Stephens <shanestephens@google.com>
Reviewed by Chris Marrin.
TransformationMatrix multiply operations apply operands in wrong order.
https://bugs.webkit.org/show_bug.cgi?id=52780
Rename TranformationMatrix::multLeft into multiply (the method does a multRight,
not a multLeft).
Remove TransformationMatrix::multiply, which was actually doing a multLeft.
Fix TransformationMatrix::operator* and operator*= such that the operand is
applied to the right-hand side of the matrix that the method is called on.
i.e., previously "a * b" used to compute "b * a", and "a *= b" used to store
"b * a" in "a". This has now been fixed so "a * b" computes "a * b" and
"a *= b" stores "a * b" in "a".
Convert all call sites for these methods to provide operands in the correct order.
No new tests as patch adds no new functionality.
- css/WebKitCSSMatrix.cpp: (WebCore::WebKitCSSMatrix::multiply):
- platform/graphics/transforms/Matrix3DTransformOperation.h: (WebCore::Matrix3DTransformOperation::apply):
- platform/graphics/transforms/MatrixTransformOperation.h: (WebCore::MatrixTransformOperation::apply):
- platform/graphics/transforms/TransformationMatrix.cpp: (WebCore::TransformationMatrix::scaleNonUniform): (WebCore::TransformationMatrix::scale3d): (WebCore::TransformationMatrix::rotate3d): (WebCore::TransformationMatrix::skew): (WebCore::TransformationMatrix::applyPerspective): (WebCore::TransformationMatrix::multiply): (WebCore::TransformationMatrix::recompose):
- platform/graphics/transforms/TransformationMatrix.h: (WebCore::TransformationMatrix::operator*=): (WebCore::TransformationMatrix::operator*):
- rendering/RenderLayer.cpp: (WebCore::transparencyClipBox):
- rendering/RenderObject.cpp: (WebCore::RenderObject::getTransformFromContainer):
- rendering/TransformState.cpp: (WebCore::TransformState::applyTransform): (WebCore::HitTestingTransformState::applyTransform):
- 11:33 AM Changeset in webkit [76536] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Wait for half a second if we're asked to paint when receiving a DidSetSize message
https://bugs.webkit.org/show_bug.cgi?id=53028
- UIProcess/DrawingAreaProxyImpl.cpp: (WebKit::DrawingAreaProxyImpl::paint):
- 11:18 AM Changeset in webkit [76535] by
-
- 3 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Implement forceRedisplay in the new drawing area
https://bugs.webkit.org/show_bug.cgi?id=53026
- WebProcess/WebPage/DrawingAreaImpl.cpp: (WebKit::DrawingAreaImpl::forceRepaint):
- WebProcess/WebPage/DrawingAreaImpl.h:
- 11:16 AM Changeset in webkit [76534] by
-
- 1 add in branches/chromium/648/codereview.settings
Added codereview.settings file.
- 11:11 AM Changeset in webkit [76533] by
-
- 2 edits in trunk/Source/WebKit2
2011-01-24 Anders Carlsson <andersca@apple.com>
Reviewed by Sam Weinig.
Fill unpainted rects with the background color.
https://bugs.webkit.org/show_bug.cgi?id=53025
- UIProcess/API/mac/WKView.mm: (drawPageBackground): Add new helper function.
(-[WKView drawRect:]):
Iterate over the unpainted rects and fill them with the background color.
- 11:10 AM Changeset in webkit [76532] by
-
- 1 copy in branches/chromium/648
Branching Chromium 648.
- 11:01 AM Changeset in webkit [76531] by
-
- 33 edits in trunk
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Nate Chapin.
IndexedDatabase methods should not take arguments of type OptionsObject
https://bugs.webkit.org/show_bug.cgi?id=53012
- storage/indexeddb/create-object-store-options-expected.txt:
- storage/indexeddb/create-object-store-options.html:
- storage/indexeddb/cursor-delete-expected.txt:
- storage/indexeddb/cursor-delete.html:
- storage/indexeddb/cursor-index-delete-expected.txt:
- storage/indexeddb/cursor-index-delete.html:
- storage/indexeddb/data-corruption-expected.txt:
- storage/indexeddb/data-corruption.html:
- storage/indexeddb/database-quota-expected.txt:
- storage/indexeddb/database-quota.html:
- storage/indexeddb/index-cursor.html:
- storage/indexeddb/objectstore-basics-expected.txt:
- storage/indexeddb/objectstore-basics.html:
- storage/indexeddb/objectstore-cursor.html:
- storage/indexeddb/open-cursor-expected.txt:
- storage/indexeddb/open-cursor.html:
- storage/indexeddb/transaction-and-objectstore-calls-expected.txt:
- storage/indexeddb/transaction-and-objectstore-calls.html:
- storage/indexeddb/tutorial.html:
2011-01-24 Andrei Popescu <andreip@google.com>
Reviewed by Nate Chapin.
IndexedDatabase methods should not take arguments of type OptionsObject
https://bugs.webkit.org/show_bug.cgi?id=53012
This patch reverts all IDB methods, except IDBDatabase::createObjectStore and
IDBObjectStore::createIndex, to using a plain list of arguments instead of
grouping the various parameters inside a single OptionsObject argument.
This decision was made on public-webapps@w3.org mailing list.
We also add support (v8 only for now) for passing DOMStringList objects as arguments to native
methods. The code for obtaining a DOMStringList object from a JS array of strings existed already
in OptionsObject.cpp, I just copied it to V8Bindings.cpp and taught the v8 code generator how to
use it.
- bindings/scripts/CodeGeneratorV8.pm:
- bindings/v8/V8Binding.cpp: (WebCore::v8ValueToWebCoreDOMStringList):
- bindings/v8/V8Binding.h:
- storage/IDBDatabase.cpp: (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.h: (WebCore::IDBDatabase::transaction):
- storage/IDBDatabase.idl:
- storage/IDBIndex.cpp: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor):
- storage/IDBIndex.h: (WebCore::IDBIndex::openCursor): (WebCore::IDBIndex::openKeyCursor):
- storage/IDBIndex.idl:
- storage/IDBObjectStore.cpp: (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.h: (WebCore::IDBObjectStore::openCursor):
- storage/IDBObjectStore.idl:
- 10:33 AM Changeset in webkit [76530] by
-
- 3 edits in trunk/Tools
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Darin Adler.
check-webkit-style: Update exemptions following Source/ move.
https://bugs.webkit.org/show_bug.cgi?id=53017
- Scripts/webkitpy/style/checker.py:
- Scripts/webkitpy/style/checker_unittest.py:
- 9:54 AM Changeset in webkit [76529] by
-
- 2 edits in trunk/Source/WebKit2
WebKit2 version of <rdar://problem/6097826> Mail's cursor does not become a resize cursor when moving mouse from scrolled email to the horizontal splitter
Reviewed by John Sullivan.
- UIProcess/API/mac/PageClientImpl.mm:
(WebKit::PageClientImpl::setCursor): If the current cursor comes from a cursor rect, do not override it.
- 9:40 AM Changeset in webkit [76528] by
-
- 1 edit30 moves in trunk/LayoutTests
2011-01-24 Chang Shu <chang.shu@nokia.com>
Reviewed by Darin Adler.
Move contentEditable related test cases to the right place as they are DOM
related instead of editing related.
https://bugs.webkit.org/show_bug.cgi?id=53010
- editing/editability: Removed.
- editing/editability/attr-empty-string-expected.txt: Removed.
- editing/editability/attr-empty-string.html: Removed.
- editing/editability/attr-false-string-expected.txt: Removed.
- editing/editability/attr-false-string.html: Removed.
- editing/editability/attr-invalid-string-expected.txt: Removed.
- editing/editability/attr-invalid-string.html: Removed.
- editing/editability/attr-missing-ancestor-false-expected.txt: Removed.
- editing/editability/attr-missing-ancestor-false.html: Removed.
- editing/editability/attr-missing-ancestor-true-expected.txt: Removed.
- editing/editability/attr-missing-ancestor-true.html: Removed.
- editing/editability/attr-missing-parent-ancestor-missing-expected.txt: Removed.
- editing/editability/attr-missing-parent-ancestor-missing.html: Removed.
- editing/editability/attr-missing-parent-false-expected.txt: Removed.
- editing/editability/attr-missing-parent-false.html: Removed.
- editing/editability/attr-missing-parent-true-expected.txt: Removed.
- editing/editability/attr-missing-parent-true.html: Removed.
- editing/editability/attr-true-string-expected.txt: Removed.
- editing/editability/attr-true-string.html: Removed.
- editing/editability/set-false-expected.txt: Removed.
- editing/editability/set-false.html: Removed.
- editing/editability/set-inherit-parent-false-expected.txt: Removed.
- editing/editability/set-inherit-parent-false.html: Removed.
- editing/editability/set-inherit-parent-true-expected.txt: Removed.
- editing/editability/set-inherit-parent-true.html: Removed.
- editing/editability/set-invalid-value-expected.txt: Removed.
- editing/editability/set-invalid-value.html: Removed.
- editing/editability/set-true-expected.txt: Removed.
- editing/editability/set-true.html: Removed.
- editing/editability/set-value-caseinsensitive-expected.txt: Removed.
- editing/editability/set-value-caseinsensitive.html: Removed.
- fast/dom/HTMLElement/attr-empty-string-expected.txt: Copied from LayoutTests/editing/editability/attr-empty-string-expected.txt.
- fast/dom/HTMLElement/attr-empty-string.html: Copied from LayoutTests/editing/editability/attr-empty-string.html.
- fast/dom/HTMLElement/attr-false-string-expected.txt: Copied from LayoutTests/editing/editability/attr-false-string-expected.txt.
- fast/dom/HTMLElement/attr-false-string.html: Copied from LayoutTests/editing/editability/attr-false-string.html.
- fast/dom/HTMLElement/attr-invalid-string-expected.txt: Copied from LayoutTests/editing/editability/attr-invalid-string-expected.txt.
- fast/dom/HTMLElement/attr-invalid-string.html: Copied from LayoutTests/editing/editability/attr-invalid-string.html.
- fast/dom/HTMLElement/attr-missing-ancestor-false-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-ancestor-false-expected.txt.
- fast/dom/HTMLElement/attr-missing-ancestor-false.html: Copied from LayoutTests/editing/editability/attr-missing-ancestor-false.html.
- fast/dom/HTMLElement/attr-missing-ancestor-true-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-ancestor-true-expected.txt.
- fast/dom/HTMLElement/attr-missing-ancestor-true.html: Copied from LayoutTests/editing/editability/attr-missing-ancestor-true.html.
- fast/dom/HTMLElement/attr-missing-parent-ancestor-missing-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-ancestor-missing-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-ancestor-missing.html: Copied from LayoutTests/editing/editability/attr-missing-parent-ancestor-missing.html.
- fast/dom/HTMLElement/attr-missing-parent-false-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-false-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-false.html: Copied from LayoutTests/editing/editability/attr-missing-parent-false.html.
- fast/dom/HTMLElement/attr-missing-parent-true-expected.txt: Copied from LayoutTests/editing/editability/attr-missing-parent-true-expected.txt.
- fast/dom/HTMLElement/attr-missing-parent-true.html: Copied from LayoutTests/editing/editability/attr-missing-parent-true.html.
- fast/dom/HTMLElement/attr-true-string-expected.txt: Copied from LayoutTests/editing/editability/attr-true-string-expected.txt.
- fast/dom/HTMLElement/attr-true-string.html: Copied from LayoutTests/editing/editability/attr-true-string.html.
- fast/dom/HTMLElement/set-false-expected.txt: Copied from LayoutTests/editing/editability/set-false-expected.txt.
- fast/dom/HTMLElement/set-false.html: Copied from LayoutTests/editing/editability/set-false.html.
- fast/dom/HTMLElement/set-inherit-parent-false-expected.txt: Copied from LayoutTests/editing/editability/set-inherit-parent-false-expected.txt.
- fast/dom/HTMLElement/set-inherit-parent-false.html: Copied from LayoutTests/editing/editability/set-inherit-parent-false.html.
- fast/dom/HTMLElement/set-inherit-parent-true-expected.txt: Copied from LayoutTests/editing/editability/set-inherit-parent-true-expected.txt.
- fast/dom/HTMLElement/set-inherit-parent-true.html: Copied from LayoutTests/editing/editability/set-inherit-parent-true.html.
- fast/dom/HTMLElement/set-invalid-value-expected.txt: Copied from LayoutTests/editing/editability/set-invalid-value-expected.txt.
- fast/dom/HTMLElement/set-invalid-value.html: Copied from LayoutTests/editing/editability/set-invalid-value.html.
- fast/dom/HTMLElement/set-true-expected.txt: Copied from LayoutTests/editing/editability/set-true-expected.txt.
- fast/dom/HTMLElement/set-true.html: Copied from LayoutTests/editing/editability/set-true.html.
- fast/dom/HTMLElement/set-value-caseinsensitive-expected.txt: Copied from LayoutTests/editing/editability/set-value-caseinsensitive-expected.txt.
- fast/dom/HTMLElement/set-value-caseinsensitive.html: Copied from LayoutTests/editing/editability/set-value-caseinsensitive.html.
- 9:37 AM Changeset in webkit [76527] by
-
- 3 edits in trunk/Source/WebKit/chromium
2011-01-24 Tony Chang <tony@chromium.org>
Reviewed by James Robinson.
[chromium] turn off gyp circular dependency checking and roll chromium deps
https://bugs.webkit.org/show_bug.cgi?id=52935
- DEPS:
- gyp_webkit: Turn off gyp circular dependency checking on Linux
and Win since we don't do these checks in gyp_chromium. It's
just making it harder for us to roll DEPS and have something
explode.
- 9:35 AM Changeset in webkit [76526] by
-
- 2 edits in trunk/Source/WebKit/chromium
2011-01-24 Satish Sampath <satish@chromium.org>
Reviewed by Csaba Osztrogonác.
Remove obsolete public/API method in chromium port
https://bugs.webkit.org/show_bug.cgi?id=53015
- public/WebSpeechInputController.h: (WebKit::WebSpeechInputController::startRecognition): Removed obsolete method
- 9:29 AM Changeset in webkit [76525] by
-
- 2 edits in trunk/Tools
2011-01-24 Andras Becsi <abecsi@webkit.org>
Rubber-stamped by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DumpRenderTree/qt/ImageDiff.pro: Add missing "Source" to WebKit.pri path
- 9:25 AM Changeset in webkit [76524] by
-
- 2 edits in trunk/LayoutTests
Add editing/inserting/insert-composition-whitespace.html to the windows
skipped list.
- platform/win/Skipped:
- 8:56 AM Changeset in webkit [76523] by
-
- 42 edits115 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 3)
- platform/qt/editing/selection/ [...]:
- 8:50 AM Changeset in webkit [76522] by
-
- 10 edits72 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 2)
- platform/qt/editing/selection/ [...]:
- 8:37 AM Changeset in webkit [76521] by
-
- 55 edits240 adds in trunk/LayoutTests
Unreviewed.
Add Qt specific expected results for passing editing/selections tests.
Compared to Mac png files and Mac expected files. (part 1)
- platform/qt/editing/selection/ [...]:
- 8:20 AM Changeset in webkit [76520] by
-
- 2 edits in trunk/Source/WebKit2
Typo fix.
Rubber-stamped by Csaba Osztrogonác.
- UIProcess/Launcher/qt/ProcessLauncherQt.cpp:
(WebKit::ProcessLauncher::launchProcess): Move the bracket to the right place.
- 7:28 AM Changeset in webkit [76519] by
-
- 5 edits in trunk/Source/WebCore
2011-01-24 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: extract dispatch API from network manager.
https://bugs.webkit.org/show_bug.cgi?id=53009
- WebCore.xcodeproj/project.pbxproj:
- inspector/front-end/NetworkManager.js: (WebInspector.NetworkManager): (WebInspector.NetworkManager.prototype.reset): (WebInspector.NetworkManager.prototype.requestContent): (WebInspector.NetworkManager.prototype._processCachedResources): (WebInspector.NetworkDispatcher): (WebInspector.NetworkDispatcher.prototype._updateResourceWithRequest): (WebInspector.NetworkDispatcher.prototype._updateResourceWithResponse): (WebInspector.NetworkDispatcher.prototype._updateResourceWithCachedResource): (WebInspector.NetworkDispatcher.prototype.identifierForInitialRequest): (WebInspector.NetworkDispatcher.prototype.willSendRequest): (WebInspector.NetworkDispatcher.prototype.didReceiveResponse): (WebInspector.NetworkDispatcher.prototype.didLoadResourceFromMemoryCache): (WebInspector.NetworkDispatcher.prototype.didCommitLoadForFrame): (WebInspector.NetworkDispatcher.prototype.didCreateWebSocket): (WebInspector.NetworkDispatcher.prototype._appendRedirect): (WebInspector.NetworkDispatcher.prototype._startResource): (WebInspector.NetworkDispatcher.prototype._updateResource): (WebInspector.NetworkDispatcher.prototype._finishResource): (WebInspector.NetworkDispatcher.prototype._addFramesRecursively): (WebInspector.NetworkDispatcher.prototype._dispatchEventToListeners): (WebInspector.NetworkDispatcher.prototype._createResource):
- inspector/front-end/Resource.js: (WebInspector.Resource.prototype._innerRequestContent):
- inspector/front-end/ResourceTreeModel.js: (WebInspector.ResourceTreeModel): (WebInspector.ResourceTreeModel.prototype.reset): (WebInspector.ResourceTreeModel.prototype.unbindResourceURL):
- 7:20 AM Changeset in webkit [76518] by
-
- 4 edits in trunk/Source/WebCore
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [JSC] remove ScriptDebugServer::pageCreated
https://bugs.webkit.org/show_bug.cgi?id=53007
It's impossible to create "provisional" inspector for pages which are
not yet created so there is no need to listen for page creation in ScriptDebugServer.
- bindings/js/ScriptDebugServer.cpp:
- bindings/js/ScriptDebugServer.h:
- page/Page.cpp: (WebCore::Page::Page):
- 7:11 AM Changeset in webkit [76517] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [REGRESSION] AppCache view on resources panel is broken.
https://bugs.webkit.org/show_bug.cgi?id=53002
- inspector/front-end/ApplicationCacheItemsView.js: (WebInspector.ApplicationCacheItemsView.prototype._update):
- inspector/front-end/DOMAgent.js: (WebInspector.ApplicationCacheDispatcher.getApplicationCachesAsync):
- 7:01 AM Changeset in webkit [76516] by
-
- 2 edits in trunk/Source/WebKit/qt
[Qt] QWebFramePrivate::renderRelativeCoords() calls QPainter::save/restore more than necessary
https://bugs.webkit.org/show_bug.cgi?id=49915
Reviewed by Andreas Kling.
In the first loop of renderRelativeCoords() the call of QPainter::save/restore is useless, because
the context is saved/stored within the loop.
In the second loop the calls are also avoidable by using inverse translation on context.
- Api/qwebframe.cpp:
(QWebFramePrivate::renderRelativeCoords):
- 6:46 AM Changeset in webkit [76515] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Fix warnings about unregistering an invalid timer
https://bugs.webkit.org/show_bug.cgi?id=53006
The ShadowBuffer's purge timer ID was initialized with 0 which lead
to us calling QObject::killTimer(0), causing some qWarnings.
- platform/graphics/qt/ContextShadowQt.cpp: (WebCore::ShadowBuffer::ShadowBuffer): (WebCore::ShadowBuffer::schedulePurge):
- 6:39 AM Changeset in webkit [76514] by
-
- 2 edits in trunk/Source/WebCore
2011-01-21 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: [Chromium] Fix heap snapshot table sorting.
Fix table sorting to avoid qsort instability artefacts.
- inspector/front-end/HeapSnapshotView.js: (WebInspector.HeapSnapshotView.prototype._sortData): (WebInspector.HeapSnapshotDataGridList.propertyComparator.comparator): (WebInspector.HeapSnapshotDataGridList.propertyComparator):
- 6:24 AM Changeset in webkit [76513] by
-
- 2 edits1 delete in trunk/LayoutTests
Unreviewed.
RTL: selection.modify("move", "forward", "line") when cursor is at start of a line does not move down a line
https://bugs.webkit.org/show_bug.cgi?id=51517
- platform/qt-linux/editing: Removed.
- platform/qt-linux/editing/selection: Removed.
- platform/qt-linux/editing/selection/extend-to-line-boundary-expected.txt: Removed.
- platform/qt/Skipped: Add editing/selection/extend-to-line-boundary.html until fix.
- 6:16 AM Changeset in webkit [76512] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, build fix for r76509.
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::setBreakpoint):
- 6:06 AM Changeset in webkit [76511] by
-
- 4 edits in trunk
2011-01-24 Mikhail Naganov <mnaganov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: Find duplicate strings in localizedStrings.js, update it.
- English.lproj/localizedStrings.js:
- Scripts/check-inspector-strings:
- 6:05 AM Changeset in webkit [76510] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, build fix for r76509.
- bindings/js/ScriptDebugServer.h:
- 5:55 AM Changeset in webkit [76509] by
-
- 20 edits1 delete in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: set breakpoints by line:column.
https://bugs.webkit.org/show_bug.cgi?id=52615
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setBreakpoint): (WebCore::ScriptDebugServer::removeBreakpoint): (WebCore::ScriptDebugServer::hasBreakpoint): (WebCore::ScriptDebugServer::clearBreakpoints):
- bindings/js/ScriptDebugServer.h:
- bindings/v8/DebuggerScript.js: ():
- bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setBreakpoint):
- bindings/v8/ScriptDebugServer.h:
- inspector/Inspector.idl:
- inspector/InspectorBrowserDebuggerAgent.cpp: (WebCore::InspectorBrowserDebuggerAgent::restoreStickyBreakpoint):
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::setStickyBreakpoint): (WebCore::InspectorDebuggerAgent::setBreakpoint): (WebCore::InspectorDebuggerAgent::restoreBreakpoint): (WebCore::InspectorDebuggerAgent::didParseSource):
- inspector/InspectorDebuggerAgent.h:
- inspector/ScriptBreakpoint.cpp: Removed.
- inspector/ScriptBreakpoint.h: (WebCore::ScriptBreakpoint::ScriptBreakpoint):
- inspector/front-end/Breakpoint.js: (WebInspector.Breakpoint): (WebInspector.Breakpoint.prototype.get url):
- inspector/front-end/BreakpointManager.js: (WebInspector.JavaScriptBreakpoint.prototype._serializeToJSON):
- inspector/front-end/DebuggerModel.js: (WebInspector.DebuggerModel.prototype.continueToLine): (WebInspector.DebuggerModel.prototype.setBreakpoint): (WebInspector.DebuggerModel.prototype._breakpointSetOnBackend): (WebInspector.DebuggerDispatcher.prototype.breakpointResolved):
- 5:05 AM Changeset in webkit [76508] by
-
- 1 edit1 delete in trunk
- runtime: Removed. It was accidentally created by r76457.
Rubber-stamped by Csaba Osztrogonác.
Patch by Peter Gal <galpater@inf.u-szeged.hu> on 2011-01-24
- 4:58 AM Changeset in webkit [76507] by
-
- 19 edits1 copy2 deletes in trunk/Source/WebKit2
2011-01-24 Kimmo Kinnunen <kimmo.t.kinnunen@nokia.com>
Reviewed by Kenneth Rohde Christiansen.
[Qt] Remove CleanupHandler by passing file descriptors.
Deleting files in signal handler of UI process is not a good idea,
because the memory where filenames are stored might not be valid
after a crash.
To avoid the need of using signal handlers for cleanup,
change following:
1) Avoid passing filenames between processes, pass fds
2) When mmap'ing files, delete them immediately after
opening and mmap'ing them.
3) Pass sockets with fds during fork+exec instead of
passing them via the filesystem.
4) Use mmap'ed files for implementation of SharedMemory.
QSharedMemory does not support cleanup correctly.
Consquences:
- Move MappedMemory to SharedMemory, make UpdateChunk use this.
- Implement CoreIPC::Attachment using mmaped files.
- Send messages using datagram socket. This solution works similiarly to Mach ports on Mac.
- Send big messages out-of-line and thus avoid increasing the receive buffer.
- Remove MemoryMappedPool and rely on libc/kernel caching of mmapped areas.
- Unmap memory areas after use.
- When UI process crashes, kill the web process using SIGKILL. This is possible again because cleanup handler is not needed.
[WK2][Qt] Multiple problems with MemoryMappedPool
https://bugs.webkit.org/show_bug.cgi?id=51984
- Platform/CoreIPC/Attachment.cpp: (CoreIPC::Attachment::Attachment):
- Platform/CoreIPC/Attachment.h: (CoreIPC::Attachment::size): (CoreIPC::Attachment::releaseFileDescriptor): (CoreIPC::Attachment::fileDescriptor):
- Platform/CoreIPC/Connection.h:
- Platform/CoreIPC/qt/ConnectionQt.cpp: (CoreIPC::MessageInfo::MessageInfo): (CoreIPC::MessageInfo::setMessageBodyOOL): (CoreIPC::MessageInfo::isMessageBodyOOL): (CoreIPC::MessageInfo::bodySize): (CoreIPC::MessageInfo::messageID): (CoreIPC::MessageInfo::attachmentCount): (CoreIPC::Connection::platformInitialize): (CoreIPC::Connection::platformInvalidate): (CoreIPC::SocketNotifierDisableGuard::SocketNotifierDisableGuard): (CoreIPC::SocketNotifierDisableGuard::~SocketNotifierDisableGuard): (CoreIPC::Connection::readyReadHandler): (CoreIPC::Connection::open): (CoreIPC::Connection::platformCanSendOutgoingMessages): (CoreIPC::Connection::sendOutgoingMessage):
- Platform/SharedMemory.h:
- Platform/WorkQueue.h:
- Platform/qt/MappedMemoryPool.cpp: Removed.
- Platform/qt/MappedMemoryPool.h: Removed.
- Platform/qt/SharedMemoryQt.cpp: (WebKit::SharedMemory::Handle::Handle): (WebKit::SharedMemory::Handle::~Handle): (WebKit::SharedMemory::Handle::isNull): (WebKit::SharedMemory::Handle::encode): (WebKit::SharedMemory::Handle::decode): (WebKit::SharedMemory::Handle::releaseToAttachment): (WebKit::SharedMemory::Handle::adoptFromAttachment): (WebKit::SharedMemory::create): (WebKit::accessModeMMap): (WebKit::SharedMemory::~SharedMemory): (WebKit::accessModeFile): (WebKit::SharedMemory::createHandle):
- Platform/qt/WorkQueueQt.cpp: (WorkQueue::registerSocketEventHandler):
- Shared/qt/UpdateChunk.cpp: (WebKit::UpdateChunk::UpdateChunk): (WebKit::UpdateChunk::~UpdateChunk): (WebKit::UpdateChunk::encode): (WebKit::UpdateChunk::decode): (WebKit::UpdateChunk::createImage):
- Shared/qt/UpdateChunk.h:
- UIProcess/Launcher/ProcessLauncher.h:
- UIProcess/Launcher/qt/ProcessLauncherQt.cpp: (WebKit::QtWebProcess::QtWebProcess): (WebKit::QtWebProcess::setupChildProcess): (WebKit::ProcessLauncher::launchProcess): (WebKit::ProcessLauncher::platformInvalidate):
- UIProcess/Launcher/qt/ThreadLauncherQt.cpp: (WebKit::webThreadBody): (WebKit::ThreadLauncher::createWebThread):
- WebKit2.pro:
- WebProcess/qt/WebProcessMainQt.cpp: (WebKit::WebProcessMainQt):
- 4:56 AM Changeset in webkit [76506] by
-
- 5 edits in trunk/LayoutTests
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Unreviewed. Update Chromium test expectations.
- platform/chromium-mac/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-document-write-expected.txt:
- platform/chromium-mac/http/tests/security/aboutBlank/xss-DENIED-navigate-opener-javascript-url-expected.txt:
- platform/chromium-mac/http/tests/security/xss-DENIED-frame-name-expected.txt:
- platform/chromium/test_expectations.txt:
- 4:46 AM Changeset in webkit [76505] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Peter Beverloo <peter@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: recognize application/x-font-woff as a valid mime-type.
https://bugs.webkit.org/show_bug.cgi?id=52977
No new tests.
- inspector/front-end/inspector.js:
- 3:55 AM Changeset in webkit [76504] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, fix for r76497.
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.show):
- 3:53 AM Changeset in webkit [76503] by
-
- 3 edits in trunk/Tools
[Qt] Regroup MiniBrowser's menubar and add open file action
https://bugs.webkit.org/show_bug.cgi?id=53000
Reviewed by Andreas Kling.
Add File and Develop menu to MiniBrowser's menubar and add open file action to File menu.
- MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
(BrowserWindow::openFile):
(BrowserWindow::~BrowserWindow):
- MiniBrowser/qt/BrowserWindow.h:
- 3:52 AM Changeset in webkit [76502] by
-
- 5 edits in trunk
2011-01-24 Peter Varga <pvarga@inf.u-szeged.hu>
Reviewed by Oliver Hunt.
Optimize regex patterns which contain empty alternatives
https://bugs.webkit.org/show_bug.cgi?id=51395
Eliminate the empty alternatives from the regex pattern and convert it to do
the matching in an easier way.
- fast/regex/script-tests/slow.js:
- fast/regex/slow-expected.txt:
2011-01-24 Peter Varga <pvarga@webkit.org>
Reviewed by Oliver Hunt.
Optimize regex patterns which contain empty alternatives
https://bugs.webkit.org/show_bug.cgi?id=51395
Eliminate the empty alternatives from the regex pattern and convert it to do
the matching in an easier way.
- yarr/YarrPattern.cpp: (JSC::Yarr::YarrPatternConstructor::atomParenthesesEnd):
- 3:51 AM Changeset in webkit [76501] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Andreas Kling <kling@webkit.org>
Reviewed by Tor Arne Vestbø.
[Qt] Use rad2deg() from WTF instead of rolling our own.
https://bugs.webkit.org/show_bug.cgi?id=52993
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::rotate):
- platform/graphics/qt/PathQt.cpp: (WebCore::Path::addArc):
- 3:35 AM Changeset in webkit [76500] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, test fix for r76497.
- http/tests/inspector/debugger-test2.js: (initialize_DebuggerTest.InspectorTest.setBreakpointInVisibleView): (initialize_DebuggerTest.InspectorTest._showScriptSource):
- 3:22 AM Changeset in webkit [76499] by
-
- 4 edits in trunk/Tools
Unreviewed fix after r76496
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- BuildSlaveSupport/build.webkit.org-config/master.cfg: Remove unnecessary "Source" from the path.
- BuildSlaveSupport/built-product-archive: Remove unnecessary "Source" from the path.
- Scripts/webkitdirs.pm: Add the accidentally removed slash to the path.
- 2:57 AM Changeset in webkit [76498] by
-
- 2 edits in trunk/Source/WebCore
2011-01-24 Sergio Villar Senin <svillar@igalia.com>
Reviewed by Martin Robinson.
[Gtk] ResourceHandleSoup: do not wait for streams to close to issue didFinishLoading
https://bugs.webkit.org/show_bug.cgi?id=52885
No new tests as it does not change functionality. We will not wait for
the the input stream to close to issue didFinishLoading to
WebCore. We expect a subtle performance improvement with this
patch when loading complex web pages, as we wouldn't have to wait
for the stream to close (which involves creating a thread among
other things).
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::closeCallback): (WebCore::readCallback):
- 2:38 AM Changeset in webkit [76497] by
-
- 10 edits2 deletes in trunk/Source/WebCore
2011-01-21 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: eliminate SourceView and ScriptView classes.
https://bugs.webkit.org/show_bug.cgi?id=52896
SourceView and ScriptView delegate everything to SourceFrame and should be eliminated.
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
- inspector/front-end/GoToLineDialog.js: (WebInspector.GoToLineDialog.prototype._highlightSelectedLine):
- inspector/front-end/ResourceView.js: (WebInspector.ResourceView.createResourceView): (WebInspector.ResourceView.resourceViewTypeMatchesResource): (WebInspector.SourceFrameContentProviderForResource): Moved from SourceView.
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.show): (WebInspector.ResourcesPanel.prototype._applyDiffMarkup): (WebInspector.FrameResourceTreeElement.prototype._errorsWarningsUpdated):
- inspector/front-end/ScriptView.js: Removed.
- inspector/front-end/ScriptsPanel.js: (WebInspector.ScriptsPanel.prototype._scriptSourceChanged): (WebInspector.ScriptsPanel.prototype._sourceFrameForScriptOrResource): (WebInspector.ScriptsPanel.prototype._showScriptOrResource): (WebInspector.ScriptsPanel.prototype._setPauseOnExceptions): (WebInspector.ScriptsPanel.prototype._formatScript): (WebInspector.SourceFrameContentProviderForScript): Moved from ScriptView.
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame): (WebInspector.SourceFrame.prototype.show): (WebInspector.SourceFrame.prototype.hide): (WebInspector.SourceFrame.prototype.hasContent): (WebInspector.SourceFrame.prototype._createTextViewer): (WebInspector.SourceFrame.prototype.performSearch.doFindSearchMatches): (WebInspector.SourceFrame.prototype.performSearch):
- inspector/front-end/SourceView.js: Removed.
- inspector/front-end/WebKit.qrc:
- inspector/front-end/inspector.html:
- 2:36 AM Changeset in webkit [76496] by
-
- 26 edits1 copy3 moves2 adds1 delete in trunk
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- Source/DerivedSources.pro: Copied from DerivedSources.pro.
- Source/WebKit.pri: Renamed from WebKit.pri.
- Source/WebKit.pro: Added.
- Source/common.pri: Renamed from common.pri.
- WebKit.pro: Removed.
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- JavaScriptCore.pri:
- JavaScriptCore.pro:
- jsc.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
No new tests needed.
- WebCore.pri:
- WebCore.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- declarative/declarative.pro:
- docs/docs.pri:
- tests/tests.pri:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DerivedSources.pro:
- WebKit2.pro:
- WebProcess.pro:
2011-01-24 Andras Becsi <abecsi@webkit.org>
Reviewed by Csaba Osztrogonác.
[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891
- DerivedSources.pro: Renamed from DerivedSources.pro.
- DumpRenderTree/qt/DumpRenderTree.pro:
- DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
- MiniBrowser/DerivedSources.pro:
- MiniBrowser/qt/MiniBrowser.pro:
- QtTestBrowser/QtTestBrowser.pro:
- Scripts/webkitdirs.pm:
- Tools.pro: Added.
- WebKitTestRunner/DerivedSources.pro:
- WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
- WebKitTestRunner/qt/WebKitTestRunner.pro:
- 2:32 AM Changeset in webkit [76495] by
-
- 3 edits in trunk/Source/WebCore
Unreviewed, trivial fix.
Fix a Chromium-only assertion failure by r76491.
https://bugs.webkit.org/show_bug.cgi?id=38982
Separate icon loading from the FileChooser constructor in order to avoid
ref() before adoptRef().
- platform/FileChooser.cpp:
(WebCore::FileChooser::FileChooser):
(WebCore::FileChooser::initialize):
(WebCore::FileChooser::create):
- platform/FileChooser.h:
- 2:27 AM Changeset in webkit [76494] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 MORITA Hajime <morrita@google.com>
Reviewed by Kent Tamura.
TextControlInnerElement::m_shadowParent should be removed.
https://bugs.webkit.org/show_bug.cgi?id=52998
No new tests. No behavioral change.
- rendering/TextControlInnerElements.cpp: (WebCore::TextControlInnerElement::TextControlInnerElement):
- rendering/TextControlInnerElements.h:
- 2:20 AM Changeset in webkit [76493] by
-
- 10 edits2 adds in trunk/Source/WebCore
2011-01-24 Yury Semikhatsky <yurys@chromium.org>
Reviewed by Pavel Feldman.
REGRESSION (r72895): console.trace crashes
https://bugs.webkit.org/show_bug.cgi?id=52981
- Use local RefPtr variable for accessing PassRefPtr arguments to make sure the PassRefPtr has non-null value.
- Use PassRefPtr for objects whos ownership is passed to the inspector.
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- inspector/InspectorConsoleInstrumentation.h: Added. Extract inline methods called from the console into their own header to reduce compilation time of other classes that depend on the inspector instrumentation. (WebCore::InspectorInstrumentation::addMessageToConsole): (WebCore::InspectorInstrumentation::consoleCount): (WebCore::InspectorInstrumentation::startConsoleTiming): (WebCore::InspectorInstrumentation::stopConsoleTiming): (WebCore::InspectorInstrumentation::consoleMarkTimeline): (WebCore::InspectorInstrumentation::addStartProfilingMessageToConsole): (WebCore::InspectorInstrumentation::addProfile): (WebCore::InspectorInstrumentation::profilerEnabled): (WebCore::InspectorInstrumentation::getCurrentUserInitiatedProfileName):
- inspector/InspectorDatabaseInstrumentation.h: Added. Extract inline methods called from the datanase code into their own header to reduce compilation time of other classes that depend on the inspector instrumentation. (WebCore::InspectorInstrumentation::didOpenDatabase):
- inspector/InspectorInstrumentation.cpp: (WebCore::InspectorInstrumentation::addMessageToConsoleImpl): (WebCore::InspectorInstrumentation::consoleCountImpl): (WebCore::InspectorInstrumentation::stopConsoleTimingImpl): (WebCore::InspectorInstrumentation::consoleMarkTimelineImpl): (WebCore::InspectorInstrumentation::addProfileImpl): (WebCore::InspectorInstrumentation::didOpenDatabaseImpl):
- inspector/InspectorInstrumentation.h:
- page/Console.cpp: use RefPtr local variable instead of accessing PassRefPtr argument directly. (WebCore::Console::addMessage): (WebCore::Console::trace): (WebCore::Console::count): (WebCore::Console::markTimeline): (WebCore::Console::profileEnd): (WebCore::Console::timeEnd): (WebCore::Console::group): (WebCore::Console::groupCollapsed):
- storage/Database.cpp: (WebCore::Database::openDatabase):
- 1:16 AM Changeset in webkit [76492] by
-
- 1 edit10 adds in trunk/LayoutTests
2011-01-24 Yuzo Fujishima <yuzo@google.com>
Unreviewed Chromium test expectation change.
Update Chromim test expectations (LINUX/SVG) in response to r76442, again.
- platform/chromium-linux/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-in-html-expected.txt: Added.
- platform/chromium-linux/svg/custom/svg-fonts-with-no-element-reference-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.checksum: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.png: Added.
- platform/chromium-linux/svg/text/text-hkern-on-vertical-text-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-04-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-vkern-expected.checksum: Added.
- platform/chromium-linux/svg/text/text-vkern-expected.txt: Added.
- 1:15 AM Changeset in webkit [76491] by
-
- 8 edits1 copy3 moves in trunk/Source
2010-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Fisher.
[Chromium] Support icon loading for <input type=file>
https://bugs.webkit.org/show_bug.cgi?id=38982
An icon data in Chromium port is represented as WebCore::Image. We
don't need OS-specific code anymore.
- WebCore.gypi:
- platform/graphics/Icon.h: (WebCore::Icon::create): Add Chromium-specific factory.
- platform/graphics/chromium/IconChromium.cpp: Added.
- platform/graphics/chromium/IconChromiumLinux.cpp: Removed.
- platform/graphics/chromium/IconChromiumMac.cpp: Removed.
- platform/graphics/chromium/IconChromiumWin.cpp: Removed.
- platform/graphics/chromium/PlatformIcon.h:
2010-01-24 Kent Tamura <tkent@chromium.org>
Reviewed by Darin Fisher.
[Chromium] Support icon loading for <input type=file>
https://bugs.webkit.org/show_bug.cgi?id=38982
Implement ChromeClientImpl::chooseIconForFiles(). It delegates loading
to WebViewClient::queryIconForFiles(), and an implementation of
WebViewClient::queryIconForFiles() loads an icon and passes it to a
FileChooser through WebIconLoadingCompletion.
- WebKit.gyp:
- public/WebIconLoadingCompletion.h: Added. (WebKit::WebIconLoadingCompletion::~WebIconLoadingCompletion):
- public/WebViewClient.h: (WebKit::WebViewClient::queryIconForFiles):
- src/ChromeClientImpl.cpp: (WebKit::ChromeClientImpl::chooseIconForFiles):
- src/WebIconLoadingCompletionImpl.cpp: Added. (WebKit::WebIconLoadingCompletionImpl::WebIconLoadingCompletionImpl): (WebKit::WebIconLoadingCompletionImpl::~WebIconLoadingCompletionImpl): (WebKit::WebIconLoadingCompletionImpl::didLoadIcon):
- src/WebIconLoadingCompletionImpl.h: Added.
- 1:10 AM Changeset in webkit [76490] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Alejandro G. Castro <alex@igalia.com>
Unreviewed, GTK still does not have TestInputController support. Opened
a bug to follow the issue:
https://bugs.webkit.org/show_bug.cgi?id=52997
- platform/gtk/Skipped:
- 1:05 AM Changeset in webkit [76489] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 MORITA Hajime <morrita@google.com>
Unreviewed, skipped insert-composition-whitespace.html due to missing DRT feature.
- platform/gtk/Skipped:
- 12:44 AM Changeset in webkit [76488] by
-
- 3 edits in trunk/Source/WebCore
2011-01-21 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: move search functions from SourceView to SourceFrame.
https://bugs.webkit.org/show_bug.cgi?id=52895
This is the last step before eliminating SourceView and ScriptView since
this classes just delegate everything to SourceFrame.
- inspector/front-end/SourceFrame.js: (WebInspector.SourceFrame.prototype.set visible): (WebInspector.SourceFrame.prototype._clearLineHighlight): (WebInspector.SourceFrame.prototype._createTextViewer): (WebInspector.SourceFrame.prototype.performSearch.doFindSearchMatches): (WebInspector.SourceFrame.prototype.performSearch): (WebInspector.SourceFrame.prototype.searchCanceled): (WebInspector.SourceFrame.prototype.jumpToFirstSearchResult): (WebInspector.SourceFrame.prototype.jumpToLastSearchResult): (WebInspector.SourceFrame.prototype.jumpToNextSearchResult): (WebInspector.SourceFrame.prototype.jumpToPreviousSearchResult): (WebInspector.SourceFrame.prototype.showingFirstSearchResult): (WebInspector.SourceFrame.prototype.showingLastSearchResult): (WebInspector.SourceFrame.prototype._jumpToSearchResult):
- inspector/front-end/SourceView.js: (WebInspector.SourceView.prototype.hide): (WebInspector.SourceView.prototype.searchCanceled): (WebInspector.SourceView.prototype.performSearch): (WebInspector.SourceView.prototype.jumpToFirstSearchResult): (WebInspector.SourceView.prototype.jumpToLastSearchResult): (WebInspector.SourceView.prototype.jumpToNextSearchResult): (WebInspector.SourceView.prototype.jumpToPreviousSearchResult): (WebInspector.SourceView.prototype.showingFirstSearchResult): (WebInspector.SourceView.prototype.showingLastSearchResult): (WebInspector.SourceView.prototype.clearMessages):
- 12:33 AM Changeset in webkit [76487] by
-
- 3 edits in trunk/Source/WebCore
2011-01-24 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r76463.
http://trac.webkit.org/changeset/76463
https://bugs.webkit.org/show_bug.cgi?id=52993
It broke canvas/philip/tests/2d.path.stroke.skew.html
(Requested by Ossy on #webkit).
- platform/graphics/qt/GraphicsContextQt.cpp: (WebCore::GraphicsContext::rotate):
- platform/graphics/qt/PathQt.cpp: (WebCore::Path::addArc):
- 12:33 AM Changeset in webkit [76486] by
-
- 2 edits in trunk/LayoutTests
2011-01-24 Alejandro G. Castro <alex@igalia.com>
Unreviewed, skipped tests failing the 64bits bot and passing in the
32bits bots. Bug following the issue:
https://bugs.webkit.org/show_bug.cgi?id=52996
- platform/gtk/Skipped: