Timeline



Oct 23, 2011:

11:59 PM Changeset in webkit [98219] by Darin Adler
  • 10 edits
    2 deletes in trunk/Source/WebCore

Eliminate OptionElement (second and final part)
https://bugs.webkit.org/show_bug.cgi?id=70710

Reviewed by Kent Tamura.

  • CMakeLists.txt: Removed OptionElement.h and OptionElement.cpp.
  • GNUmakefile.list.am: Ditto.
  • WebCore.gypi: Ditto.
  • WebCore.pro: Ditto.
  • WebCore.vcproj/WebCore.vcproj: Ditto.
  • WebCore.xcodeproj/project.pbxproj: Ditto.
  • dom/DOMAllInOne.cpp: Ditto.
  • dom/OptionElement.cpp: Removed.
  • dom/OptionElement.h: Removed.
  • html/HTMLSelectElement.cpp:

(WebCore::HTMLSelectElement::saveLastSelection): Eliminate use of the
toOptionElement function. Use hasTagName and toHTMLOptionElement instead.
(WebCore::HTMLSelectElement::setActiveSelectionAnchorIndex): Ditto.
(WebCore::HTMLSelectElement::updateListBoxSelection): Ditto.
(WebCore::HTMLSelectElement::listBoxOnChange): Ditto.
(WebCore::HTMLSelectElement::recalcListItems): Ditto.
(WebCore::HTMLSelectElement::selectedIndex): Ditto.
(WebCore::HTMLSelectElement::setSelectedIndex): Ditto.
(WebCore::HTMLSelectElement::deselectItemsWithoutValidation): Ditto.
(WebCore::HTMLSelectElement::saveFormControlState): Ditto.
(WebCore::HTMLSelectElement::restoreFormControlState): Ditto.
(WebCore::HTMLSelectElement::appendFormData): Ditto.
(WebCore::HTMLSelectElement::reset): Ditto.
(WebCore::HTMLSelectElement::updateSelectedState): Ditto.
(WebCore::HTMLSelectElement::lastSelectedListIndex): Ditto.
(WebCore::HTMLSelectElement::typeAheadFind): Ditto.
(WebCore::HTMLSelectElement::accessKeySetSelectedIndex): Ditto.

  • html/HTMLSelectElement.h: Changed the argument type of the

deselectItemsWithoutValidation function to HTMLElement* since that's
the type of an item in our items vector now.

11:54 PM Changeset in webkit [98218] by yuzo@google.com
  • 2 edits in trunk/Source/WebCore

[chromium] Attempt to fix compilation error for Chromium OS.

Unreviewed.

  • mediastream/MediaStreamTrack.cpp:

(WebCore::MediaStreamTrack::kind):

10:53 PM Changeset in webkit [98217] by ggaren@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Fixed a typo Darin spotted.

  • wtf/StringHasher.h:

(WTF::StringHasher::hash): Expelliarmus!

10:51 PM Changeset in webkit [98216] by ggaren@apple.com
  • 4 edits in trunk/Source/JavaScriptCore

Removed StringImpl::createStrippingNullCharacters
https://bugs.webkit.org/show_bug.cgi?id=70700

Reviewed by David Levin.

It was unused.

9:36 PM Changeset in webkit [98215] by abarth@webkit.org
  • 3 edits
    2 adds in trunk

<img crossorigin> should fail to load when CORS check fails
https://bugs.webkit.org/show_bug.cgi?id=69732

Reviewed by Darin Adler.

Source/WebCore:

When loading an image with the crossorigin attribute, the spec says
that we're not supposed to load the image if the CORS check fails.
This "fails fast" behavior is intended to help developers understand
whether they've configured CORS correctly (instead of only catching the
error later when trying to read back the canvas).

Our new behavior matches the spec and Firefox.

Test: http/tests/security/img-with-failed-cors-check-fails-to-load.html

  • loader/ImageLoader.cpp:

(WebCore::ImageLoader::notifyFinished):

LayoutTests:

Test that images loaded with the crossorigin attribute fail to load if
the CORS access check doesn't pass.

  • http/tests/security/img-with-failed-cors-check-fails-to-load-expected.txt: Added.
  • http/tests/security/img-with-failed-cors-check-fails-to-load.html: Added.
8:58 PM Changeset in webkit [98214] by fpizlo@apple.com
  • 9 edits
    3 adds in trunk

DFG should inline constructors
https://bugs.webkit.org/show_bug.cgi?id=70675

Source/JavaScriptCore:

Reviewed by Oliver Hunt.

Adds support for inlining constructors. Also fixes two pathologies
uncovered along the way: CheckMethod claimed that it never returned a
result (causing CheckMethod -> SetLocal -> GetLocal sequences to
result in the GetLocal doing OSR exit), and get_by_id parsing never
checked if it was hot in slow path. Also fiddled with inlining
heuristics; it appears that for now, the more inlining, the happier
V8 is. Finally, a bug was uncovered where a silent spill of a boxed
integer that had previously been spilled unboxed causes the silent
fill to forget to unbox.

This appears to be a 4% speed-up on V8 in their harness, or a 1%
speed-up in my harness. The difference is due to warm-up: in my
harness we see significant amounts of time spent in compilation, but
in V8's harness compilation gets amortizes. Profiling indicates that
we have the potential for a 5% win from basic optimizations like
generating OSR exits lazily and holding onto bytecode longer.

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::execute):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleCall):
(JSC::DFG::ByteCodeParser::handleInlining):
(JSC::DFG::ByteCodeParser::handleMinMax):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry):
(JSC::DFG::ByteCodeParser::parse):

  • dfg/DFGCapabilities.h:

(JSC::DFG::mightInlineFunctionForConstruct):
(JSC::DFG::canInlineOpcode):
(JSC::DFG::mightInlineFunctionFor):
(JSC::DFG::canInlineFunctionFor):

  • dfg/DFGJITCodeGenerator.h:

(JSC::DFG::JITCodeGenerator::silentFillGPR):

  • runtime/Executable.h:

(JSC::isCall):
(JSC::ExecutableBase::intrinsicFor):

  • runtime/Heuristics.cpp:

(JSC::Heuristics::initializeHeuristics):

  • runtime/Heuristics.h:

LayoutTests:

Reviewed by Oliver Hunt.

Adds test that asserts that register pressure induced by inlining doesn't
result in spilling corrupting values.

  • fast/js/dfg-inlining-reg-alloc-expected.txt: Added.
  • fast/js/dfg-inlining-reg-alloc.html: Added.
  • fast/js/script-tests/dfg-inlining-reg-alloc.js: Added.

(foo):
(bar):
(baz):

8:40 PM Changeset in webkit [98213] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expecation change. inspector/elements/edit-dom-actions.html times out since around r98120:98133 (chromium 106751:106770).

Unreviewed.

  • platform/chromium/test_expectations.txt:
7:57 PM Changeset in webkit [98212] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[EFL] Remove unused code from EWebLauncher
https://bugs.webkit.org/show_bug.cgi?id=70590

Patch by Tomasz Morawski <t.morawski@samsung.com> on 2011-10-23
Reviewed by Andreas Kling.

Removed unused function on_closeWindow from EWebLauncher

  • EWebLauncher/main.c:
7:54 PM Changeset in webkit [98211] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expectation change for "r98183 causes 4 snowleopard tests to fail".
https://bugs.webkit.org/show_bug.cgi?id=70704

Unreviewed.

  • platform/chromium/test_expectations.txt:
7:23 PM Changeset in webkit [98210] by noel.gordon@gmail.com
  • 2 edits in trunk/Source/JavaScriptCore

[chromium] Remove RopeImpl.{h,cpp} from the gyp projects
https://bugs.webkit.org/show_bug.cgi?id=70703

Reviewed by Kent Tamura.

runtime/RopeImpl.{h,cpp} were removed in r97872, remove references
to these files from the gyp project files.

7:18 PM Changeset in webkit [98209] by noel.gordon@gmail.com
  • 2 edits in trunk/Source/WebCore

[chromium] Remove GeolocationServiceGtk.{h,cpp} from the gyp projects
https://bugs.webkit.org/show_bug.cgi?id=70702

Reviewed by Kent Tamura.

platform/gtk/GeolocationServiceGtk.{h,cpp} were removed in r97746, so
remove references to these files from the gyp files.

  • WebCore.gypi:
6:49 PM Changeset in webkit [98208] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Move StyleSheet::addSubresourceStyleURLs() to CSSStyleSheet.
https://bugs.webkit.org/show_bug.cgi?id=70690

Patch by Andreas Kling <kling@webkit.org> on 2011-10-23
Reviewed by Antti Koivisto.

This method isn't part of the StyleSheet DOM interface, nor is it used by
XSLStyleSheet, so move it down to CSSStyleSheet and make it non-virtual.
Also remove some nearby unneeded casts from CSSStyleSheet* to StyleSheet*.

  • css/CSSStyleSheet.h:
  • css/StyleSheet.h:
  • html/HTMLLinkElement.cpp:

(WebCore::HTMLLinkElement::isLoading):
(WebCore::HTMLLinkElement::addSubresourceAttributeURLs):

  • html/HTMLStyleElement.cpp:

(WebCore::HTMLStyleElement::addSubresourceAttributeURLs):
(WebCore::HTMLStyleElement::disabled):
(WebCore::HTMLStyleElement::setDisabled):

6:42 PM Changeset in webkit [98207] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Remove style sheet constructors that take a style sheet parent.
https://bugs.webkit.org/show_bug.cgi?id=70692

Patch by Andreas Kling <kling@webkit.org> on 2011-10-23
Reviewed by Antti Koivisto.

Style sheets are never directly parented by other style sheets, they always
go via a rule (such as @import.)

  • css/CSSStyleSheet.cpp:
  • css/CSSStyleSheet.h:

(WebCore::CSSStyleSheet::create):

  • css/StyleSheet.cpp:
  • css/StyleSheet.h:
5:37 PM Changeset in webkit [98206] by macpherson@chromium.org
  • 2 edits in trunk/Tools

Add watchlist for WebCore/css and put myself on it.
https://bugs.webkit.org/show_bug.cgi?id=70701

Reviewed by Adam Barth.

  • Scripts/webkitpy/common/config/watchlist:

Add watchlist for WebCore/css and put myself on it.

5:21 PM Changeset in webkit [98205] by mhahnenberg@apple.com
  • 6 edits in trunk/Source

Add deleteProperty to the MethodTable
https://bugs.webkit.org/show_bug.cgi?id=70162

Reviewed by Sam Weinig.

Source/JavaScriptCore:

  • JavaScriptCore.exp:
  • runtime/ClassInfo.h: Added both versions of deleteProperty to the MethodTable.
  • runtime/JSFunction.h: Changed JSFunction::deleteProperty to

be protected rather than private for subclasses who don't provide their own
implementation.

Source/WebCore:

No new tests.

  • WebCore.exp.in:
5:11 PM Changeset in webkit [98204] by abarth@webkit.org
  • 4 edits in trunk/Source/WebCore

Update baselines for run-bindings-tests.

  • bindings/scripts/test/JS/JSTestInterface.cpp:
  • bindings/scripts/test/JS/JSTestInterface.h:
  • bindings/scripts/test/JS/JSTestObj.cpp:
2:14 PM Changeset in webkit [98203] by mhahnenberg@apple.com
  • 54 edits in trunk/Source

Remove getConstructDataVirtual
https://bugs.webkit.org/show_bug.cgi?id=70638

Reviewed by Darin Adler.

Source/JavaScriptCore:

Removed all declarations and definitions of getConstructDataVirtual.
Also replaced all call sites to getConstructDataVirtual with a
corresponding lookup in the MethodTable.

  • API/JSCallbackConstructor.cpp:
  • API/JSCallbackConstructor.h:
  • API/JSCallbackObject.h:
  • API/JSCallbackObjectFunctions.h:
  • API/JSObjectRef.cpp:

(JSObjectIsConstructor):
(JSObjectCallAsConstructor):

(JSC::Interpreter::privateExecute):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/ArrayConstructor.cpp:
  • runtime/ArrayConstructor.h:
  • runtime/BooleanConstructor.cpp:
  • runtime/BooleanConstructor.h:
  • runtime/DateConstructor.cpp:
  • runtime/DateConstructor.h:
  • runtime/Error.h:

(JSC::StrictModeTypeErrorFunction::getConstructData):

  • runtime/ErrorConstructor.cpp:
  • runtime/ErrorConstructor.h:
  • runtime/FunctionConstructor.cpp:
  • runtime/FunctionConstructor.h:
  • runtime/JSCell.cpp:
  • runtime/JSCell.h:
  • runtime/JSFunction.cpp:
  • runtime/JSFunction.h:
  • runtime/JSObject.h:

(JSC::getConstructData):

  • runtime/NativeErrorConstructor.cpp:
  • runtime/NativeErrorConstructor.h:
  • runtime/NumberConstructor.cpp:
  • runtime/NumberConstructor.h:
  • runtime/ObjectConstructor.cpp:
  • runtime/ObjectConstructor.h:
  • runtime/RegExpConstructor.cpp:
  • runtime/RegExpConstructor.h:
  • runtime/StringConstructor.cpp:
  • runtime/StringConstructor.h:

Source/WebCore:

No new tests.

Removed all declarations and definitions of getConstructDataVirtual.
Also replaced all call sites to getConstructDataVirtual with a
corresponding lookup in the MethodTable.

  • WebCore.exp.in:
  • bindings/js/JSAudioConstructor.cpp:
  • bindings/js/JSAudioConstructor.h:
  • bindings/js/JSImageConstructor.cpp:
  • bindings/js/JSImageConstructor.h:
  • bindings/js/JSOptionConstructor.cpp:
  • bindings/js/JSOptionConstructor.h:
  • bindings/js/ScriptFunctionCall.cpp:

(WebCore::ScriptFunctionCall::construct):

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateConstructorDeclaration):
(GenerateConstructorDefinition):

  • bridge/runtime_object.cpp:
  • bridge/runtime_object.h:

Source/WebKit/mac:

Removed all declarations and definitions of getConstructDataVirtual.
Also replaced all call sites to getConstructDataVirtual with a
corresponding lookup in the MethodTable.

  • Plugins/Hosted/NetscapePluginInstanceProxy.mm:

(WebKit::NetscapePluginInstanceProxy::construct):

Source/WebKit2:

Removed all declarations and definitions of getConstructDataVirtual.
Also replaced all call sites to getConstructDataVirtual with a
corresponding lookup in the MethodTable.

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:
  • WebProcess/Plugins/Netscape/JSNPObject.h:
11:01 AM Changeset in webkit [98202] by ggaren@apple.com
  • 3 edits in trunk/LayoutTests

Not reviewed.

Updated two test results I missed in my last check-in.

These tests depended on non-deterministic effects of hash order, so I
had to update them:

  • http/tests/inspector/search/search-in-resources-expected.txt:
  • platform/mac/fast/dom/prototype-inheritance-2-expected.txt:
12:34 AM Changeset in webkit [98201] by ggaren@apple.com
  • 2 edits in trunk/Source/JavaScriptCore

Try to fix the SL build.

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry): Cast
away int vs unisgned warning.

12:27 AM Changeset in webkit [98200] by commit-queue@webkit.org
  • 5 edits
    1 add in trunk

[GTK] Implement KeyDown function for WebKit2 EventSender.
https://bugs.webkit.org/show_bug.cgi?id=69410

Tools:

Patch by Kaustubh Atrawalkar <Kaustubh Atrawalkar> on 2011-10-23
Reviewed by Martin Robinson.

Implement the KeyDown function on Gtk platform.

  • WebKitTestRunner/GNUmakefile.am:
  • WebKitTestRunner/TestController.cpp:

(WTR::TestController::TestController):
(WTR::TestController::didReceiveSynchronousMessageFromInjectedBundle):

  • WebKitTestRunner/gtk/EventSenderProxyGtk.cpp: Added.

(WTR::EventSenderProxy::EventSenderProxy):
(WTR::dispatchEvent):
(WTR::getModifiers):
(WTR::getGDKKeySymForKeyRef):
(WTR::EventSenderProxy::keyDown):

LayoutTests:

Unskip passed tests.

Patch by Kaustubh Atrawalkar <Kaustubh Atrawalkar> on 2011-10-23
Reviewed by Martin Robinson.

  • platform/gtk-wk2/Skipped:
12:21 AM Changeset in webkit [98199] by ggaren@apple.com
  • 13 edits in trunk

Separated string lifetime bits from character buffer state bits
https://bugs.webkit.org/show_bug.cgi?id=70673

Source/JavaScriptCore:

Reviewed by Anders Carlsson.

Moved the static/immortal bit into the bottom bit of the refcount, and
moved all other bits into the high bits of the hash code.

This is the first step toward a new Characters/PassString class, and it
makes ref/deref slightly more efficient.

  • create_hash_table:
  • wtf/StringHasher.h:

(WTF::StringHasher::hash): Tweaked the string hashing function to leave
the top bits clear, so they can be used as flags.

Fixed some small differences between the PERL copy of this function and
the C++ copy of this function, which could have in theory caused subtle
crashes.

  • wtf/text/StringImpl.cpp:

(WTF::StringImpl::sharedBuffer):
(WTF::StringImpl::createWithTerminatingNullCharacter):

  • wtf/text/StringImpl.h:

(WTF::StringImpl::StringImpl):
(WTF::StringImpl::cost): Renamed s_refCountFlagShouldReportedCost to
s_didReportExtraCost, since the original name was both self-contradictory
and used as a double-negative.

(WTF::StringImpl::isIdentifier):
(WTF::StringImpl::setIsIdentifier):
(WTF::StringImpl::hasTerminatingNullCharacter):
(WTF::StringImpl::isAtomic):
(WTF::StringImpl::setIsAtomic):
(WTF::StringImpl::setHash):
(WTF::StringImpl::rawHash):
(WTF::StringImpl::hasHash):
(WTF::StringImpl::existingHash):
(WTF::StringImpl::hash):
(WTF::StringImpl::hasOneRef):
(WTF::StringImpl::ref):
(WTF::StringImpl::deref):
(WTF::StringImpl::bufferOwnership):
(WTF::StringImpl::isStatic): Moved the static/immortal bit into the bottom
bit of the refcount. Now, all lifetime information lives in the refcount
field. Moved the other bits into the hash code field.

Source/WebCore:

Reviewed by Anders Carlsson.

  • bindings/scripts/CodeGeneratorJS.pm:

(GenerateHashValue): Updated for string hashing changes in JavaScriptCore.

LayoutTests:

Reviewed by Anders Carlsson.

These tests depended on non-deterministic effects of hash order, so I
had to update them:

  • fast/dom/prototype-inheritance-2-expected.txt: Updated for slightly

different order of discovering properties.

  • fast/js/delete-syntax-expected.txt:
  • fast/js/script-tests/delete-syntax.js: Updated not to depend on iteration

order, since that's not what this test is about.

  • http/tests/inspector/inspector-test.js: Updated not to depend on

global function iteration order. This test setup is pretty spaghetti.
I think I avoided making it even more spaghetti.

  • inspector/storage-panel-dom-storage-expected.txt: Updated for changed

iteration order.

Oct 22, 2011:

10:03 PM Changeset in webkit [98198] by psolanki@apple.com
  • 2 edits in trunk/Source/WebCore

HTTPBodyStream in NSURLRequest gets lost when using CFNetwork loader
https://bugs.webkit.org/show_bug.cgi?id=70583
<rdar://problem/10281227>

Reviewed by Darin Adler.

Call WebCore::setHTTPBody() only if we actually have a FormData. Unconditionally calling it
results in us passing 0 to wkCFURLRequestSetHTTPRequestBodyParts() which resets any input
stream specified by the user on the NSURLRequest. This code matches the behavior in the
Foundation version of doUpdatePlatformRequest().

  • platform/network/cf/ResourceRequestCFNet.cpp:

(WebCore::ResourceRequest::doUpdatePlatformRequest):

5:40 PM Changeset in webkit [98197] by benjamin@webkit.org
  • 3 edits in trunk/LayoutTests

Make relayout-nested-positioned-elements-crash.html more reliable
https://bugs.webkit.org/show_bug.cgi?id=70672

Reviewed by Kenneth Rohde Christiansen.

The test relayout-nested-positioned-elements-crash relies on implementation
details of the test runner. If the function runTest() is run
during the test, the result will be different than the expected results.

Change the test to use the Javascript test framework.
Ensure the element has the correct style in the final state.

  • fast/block/positioning/relayout-nested-positioned-elements-crash-expected.txt:
  • fast/block/positioning/relayout-nested-positioned-elements-crash.html:
4:46 PM Changeset in webkit [98196] by commit-queue@webkit.org
  • 19 edits
    30 moves
    1 add
    1 delete in trunk/Source/WebCore

Move all MediaStream and PeerConnection related non-platform files to WebCore/mediastream
https://bugs.webkit.org/show_bug.cgi?id=70233

Patch by Adam Bergkvist <adam.bergkvist@ericsson.com> on 2011-10-22
Reviewed by Adam Barth.

Removed affected files from build systems that don't have a MEDIA_STREAM build flag.

No new tests since we're just moving files.

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.cpp:
  • DerivedSources.make:
  • GNUmakefile.am:
  • GNUmakefile.list.am:
  • UseJSC.cmake:
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSBindingsAllInOne.cpp:
  • dom/DOMAllInOne.cpp:
  • dom/DispatchTask.h: Removed unused file.
  • dom/ScriptExecutionContext.cpp:
  • mediastream/LocalMediaStream.cpp: Renamed from Source/WebCore/dom/LocalMediaStream.cpp.

(WebCore::LocalMediaStream::create):
(WebCore::LocalMediaStream::LocalMediaStream):
(WebCore::LocalMediaStream::stop):
(WebCore::LocalMediaStream::stopTimerFired):
(WebCore::LocalMediaStream::~LocalMediaStream):
(WebCore::LocalMediaStream::toLocalMediaStream):

  • mediastream/LocalMediaStream.h: Renamed from Source/WebCore/dom/LocalMediaStream.h.
  • mediastream/LocalMediaStream.idl: Renamed from Source/WebCore/dom/LocalMediaStream.idl.
  • mediastream/MediaStream.cpp: Renamed from Source/WebCore/dom/MediaStream.cpp.

(WebCore::MediaStream::create):
(WebCore::MediaStream::MediaStream):
(WebCore::MediaStream::~MediaStream):
(WebCore::MediaStream::readyState):
(WebCore::MediaStream::toMediaStream):
(WebCore::MediaStream::streamEnded):
(WebCore::MediaStream::scriptExecutionContext):
(WebCore::MediaStream::eventTargetData):
(WebCore::MediaStream::ensureEventTargetData):

  • mediastream/MediaStream.h: Renamed from Source/WebCore/dom/MediaStream.h.

(WebCore::MediaStream::label):
(WebCore::MediaStream::tracks):
(WebCore::MediaStream::descriptor):
(WebCore::MediaStream::refEventTarget):
(WebCore::MediaStream::derefEventTarget):

  • mediastream/MediaStream.idl: Renamed from Source/WebCore/dom/MediaStream.idl.
  • mediastream/MediaStreamClient.h: Renamed from Source/WebCore/page/MediaStreamClient.h.

(WebCore::MediaStreamClient::~MediaStreamClient):

  • mediastream/MediaStreamController.cpp: Renamed from Source/WebCore/page/MediaStreamController.cpp.

(WebCore::MediaStreamController::Request::Request):
(WebCore::MediaStreamController::Request::localId):
(WebCore::MediaStreamController::Request::frameController):
(WebCore::MediaStreamController::MediaStreamController):
(WebCore::MediaStreamController::~MediaStreamController):
(WebCore::MediaStreamController::isClientAvailable):
(WebCore::MediaStreamController::unregisterFrameController):
(WebCore::MediaStreamController::registerRequest):
(WebCore::MediaStreamController::generateStream):
(WebCore::MediaStreamController::streamGenerated):
(WebCore::MediaStreamController::streamGenerationFailed):

  • mediastream/MediaStreamController.h: Renamed from Source/WebCore/page/MediaStreamController.h.
  • mediastream/MediaStreamEvent.cpp: Renamed from Source/WebCore/p2p/MediaStreamEvent.cpp.

(WebCore::MediaStreamEvent::create):
(WebCore::MediaStreamEvent::MediaStreamEvent):
(WebCore::MediaStreamEvent::~MediaStreamEvent):
(WebCore::MediaStreamEvent::initMediaStreamEvent):
(WebCore::MediaStreamEvent::stream):

  • mediastream/MediaStreamEvent.h: Renamed from Source/WebCore/p2p/MediaStreamEvent.h.

(WebCore::MediaStreamEvent::isMediaStreamEvent):

  • mediastream/MediaStreamEvent.idl: Renamed from Source/WebCore/p2p/MediaStreamEvent.idl.
  • mediastream/MediaStreamFrameController.cpp: Renamed from Source/WebCore/page/MediaStreamFrameController.cpp.

(WebCore::MediaStreamFrameController::Request::~Request):
(WebCore::MediaStreamFrameController::Request::scriptExecutionContext):
(WebCore::MediaStreamFrameController::Request::isGenerateStreamRequest):
(WebCore::MediaStreamFrameController::Request::Request):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::create):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::~GenerateStreamRequest):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::isGenerateStreamRequest):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::abort):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::successCallback):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::errorCallback):
(WebCore::MediaStreamFrameController::GenerateStreamRequest::GenerateStreamRequest):
(WebCore::MediaStreamFrameController::RequestMap::abort):
(WebCore::MediaStreamFrameController::RequestMap::abortAll):
(WebCore::MediaStreamFrameController::MediaStreamFrameController):
(WebCore::MediaStreamFrameController::~MediaStreamFrameController):
(WebCore::MediaStreamFrameController::securityOrigin):
(WebCore::MediaStreamFrameController::scriptExecutionContext):
(WebCore::MediaStreamFrameController::pageController):
(WebCore::MediaStreamFrameController::enterDetachedState):
(WebCore::MediaStreamFrameController::isClientAvailable):
(WebCore::MediaStreamFrameController::disconnectPage):
(WebCore::MediaStreamFrameController::disconnectFrame):
(WebCore::MediaStreamFrameController::transferToNewPage):
(WebCore::MediaStreamFrameController::parseGenerateStreamOptions):
(WebCore::MediaStreamFrameController::generateStream):
(WebCore::MediaStreamFrameController::streamGenerated):
(WebCore::MediaStreamFrameController::streamGenerationFailed):

  • mediastream/MediaStreamFrameController.h: Renamed from Source/WebCore/page/MediaStreamFrameController.h.

(WebCore::MediaStreamFrameController::IdGenerator::IdGenerator):
(WebCore::MediaStreamFrameController::IdGenerator::getNextId):

  • mediastream/MediaStreamList.cpp: Renamed from Source/WebCore/dom/MediaStreamList.cpp.

(WebCore::MediaStreamList::create):
(WebCore::MediaStreamList::MediaStreamList):
(WebCore::MediaStreamList::~MediaStreamList):
(WebCore::MediaStreamList::length):
(WebCore::MediaStreamList::item):
(WebCore::MediaStreamList::append):
(WebCore::MediaStreamList::remove):
(WebCore::MediaStreamList::contains):

  • mediastream/MediaStreamList.h: Renamed from Source/WebCore/dom/MediaStreamList.h.
  • mediastream/MediaStreamList.idl: Renamed from Source/WebCore/dom/MediaStreamList.idl.
  • mediastream/MediaStreamRegistry.cpp: Renamed from Source/WebCore/platform/MediaStreamRegistry.cpp.

(WebCore::MediaStreamRegistry::registry):
(WebCore::MediaStreamRegistry::registerMediaStreamURL):
(WebCore::MediaStreamRegistry::unregisterMediaStreamURL):
(WebCore::MediaStreamRegistry::mediaStream):

  • mediastream/MediaStreamRegistry.h: Renamed from Source/WebCore/platform/MediaStreamRegistry.h.
  • mediastream/MediaStreamTrack.cpp: Renamed from Source/WebCore/dom/MediaStreamTrack.cpp.

(WebCore::MediaStreamTrack::create):
(WebCore::MediaStreamTrack::MediaStreamTrack):
(WebCore::MediaStreamTrack::~MediaStreamTrack):
(WebCore::MediaStreamTrack::kind):
(WebCore::MediaStreamTrack::label):
(WebCore::MediaStreamTrack::enabled):
(WebCore::MediaStreamTrack::setEnabled):

  • mediastream/MediaStreamTrack.h: Renamed from Source/WebCore/dom/MediaStreamTrack.h.
  • mediastream/MediaStreamTrack.idl: Renamed from Source/WebCore/dom/MediaStreamTrack.idl.
  • mediastream/MediaStreamTrackList.cpp: Renamed from Source/WebCore/dom/MediaStreamTrackList.cpp.

(WebCore::MediaStreamTrackList::create):
(WebCore::MediaStreamTrackList::MediaStreamTrackList):
(WebCore::MediaStreamTrackList::~MediaStreamTrackList):
(WebCore::MediaStreamTrackList::length):
(WebCore::MediaStreamTrackList::item):

  • mediastream/MediaStreamTrackList.h: Renamed from Source/WebCore/dom/MediaStreamTrackList.h.
  • mediastream/MediaStreamTrackList.idl: Renamed from Source/WebCore/dom/MediaStreamTrackList.idl.
  • mediastream/PeerConnection.cpp: Renamed from Source/WebCore/p2p/PeerConnection.cpp.

(WebCore::PeerConnection::create):
(WebCore::PeerConnection::PeerConnection):
(WebCore::PeerConnection::~PeerConnection):
(WebCore::PeerConnection::processSignalingMessage):
(WebCore::PeerConnection::readyState):
(WebCore::PeerConnection::send):
(WebCore::PeerConnection::addStream):
(WebCore::PeerConnection::removeStream):
(WebCore::PeerConnection::localStreams):
(WebCore::PeerConnection::remoteStreams):
(WebCore::PeerConnection::close):
(WebCore::PeerConnection::iceProcessingCompleted):
(WebCore::PeerConnection::sdpGenerated):
(WebCore::PeerConnection::dataStreamMessageReceived):
(WebCore::PeerConnection::remoteStreamAdded):
(WebCore::PeerConnection::remoteStreamRemoved):
(WebCore::PeerConnection::toPeerConnection):
(WebCore::PeerConnection::scriptExecutionContext):
(WebCore::PeerConnection::stop):
(WebCore::PeerConnection::eventTargetData):
(WebCore::PeerConnection::ensureEventTargetData):
(WebCore::PeerConnection::scheduleInitialNegotiation):
(WebCore::PeerConnection::initialNegotiationTimerFired):
(WebCore::PeerConnection::ensureStreamChangeScheduled):
(WebCore::PeerConnection::streamChangeTimerFired):
(WebCore::PeerConnection::scheduleReadyStateChange):
(WebCore::PeerConnection::readyStateChangeTimerFired):
(WebCore::PeerConnection::changeReadyState):

  • mediastream/PeerConnection.h: Renamed from Source/WebCore/p2p/PeerConnection.h.

(WebCore::PeerConnection::refEventTarget):
(WebCore::PeerConnection::derefEventTarget):

  • mediastream/PeerConnection.idl: Renamed from Source/WebCore/p2p/PeerConnection.idl.
  • mediastream/SignalingCallback.h: Renamed from Source/WebCore/p2p/SignalingCallback.h.

(WebCore::SignalingCallback::~SignalingCallback):

  • mediastream/SignalingCallback.idl: Renamed from Source/WebCore/p2p/SignalingCallback.idl.
  • page/Frame.cpp:
  • page/Navigator.cpp:
  • page/Page.cpp:
3:38 PM Changeset in webkit [98195] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[WK2][GTK] run-launcher script fails after testing WK2 tests
https://bugs.webkit.org/show_bug.cgi?id=70676

Patch by Zan Dobersek <zandobersek@gmail.com> on 2011-10-22
Reviewed by Andreas Kling.

Pass the '-2' flag instead of '--webkit-test-runner' when executing
run-launcher script after testing with WebKitTestRunner.

  • Scripts/webkitpy/layout_tests/port/gtk.py:
12:31 PM Changeset in webkit [98194] by pfeldman@chromium.org
  • 40 edits in trunk

Source/WebCore: Web Inspector: get rid of View::hide, View::set visible, View::attach,
View::set visible.
https://bugs.webkit.org/show_bug.cgi?id=70523

This change also introduces assetions that forces view attach / detach operations
to be performed explicitly.

Patch by Pavel Feldman <pfeldman@google.com> on 2011-10-20
Reviewed by Yury Semikhatsky.

  • inspector/front-end/ApplicationCacheItemsView.js:

(WebInspector.ApplicationCacheItemsView.prototype.wasShown):
(WebInspector.ApplicationCacheItemsView.prototype.willHide):
(WebInspector.ApplicationCacheItemsView.prototype._updateCallback):

  • inspector/front-end/AuditsPanel.js:

(WebInspector.AuditsPanel.prototype.wasShown):

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.wasShown):
(WebInspector.ConsolePanel.prototype.willHide):

  • inspector/front-end/ConsoleView.js:

(WebInspector.ConsoleView.prototype.wasShown):

  • inspector/front-end/CookieItemsView.js:

(WebInspector.CookieItemsView.prototype.wasShown):
(WebInspector.CookieItemsView.prototype.willHide):
(WebInspector.CookieItemsView.prototype._updateWithCookies):

  • inspector/front-end/DOMStorageItemsView.js:

(WebInspector.DOMStorageItemsView.prototype.wasShown):
(WebInspector.DOMStorageItemsView.prototype.willHide):

  • inspector/front-end/DatabaseQueryView.js:
  • inspector/front-end/DatabaseTableView.js:

(WebInspector.DatabaseTableView.prototype.wasShown):

  • inspector/front-end/DetailedHeapshotView.js:

(WebInspector.DetailedHeapshotView.prototype.willHide):
(WebInspector.DetailedHeapshotView.prototype._changeView):

  • inspector/front-end/Drawer.js:

(WebInspector.Drawer.prototype.hide):

  • inspector/front-end/ElementsPanel.js:

(WebInspector.ElementsPanel.prototype.wasShown):
(WebInspector.ElementsPanel.prototype.willHide):

  • inspector/front-end/EmptyView.js:

(WebInspector.EmptyView.prototype.wasShown):

  • inspector/front-end/FontView.js:

(WebInspector.FontView.prototype.wasShown):

  • inspector/front-end/IFrameView.js:

(WebInspector.IFrameView):

  • inspector/front-end/ImageView.js:

(WebInspector.ImageView.prototype.wasShown):

  • inspector/front-end/NetworkItemView.js:

(WebInspector.NetworkItemView.prototype.wasShown):
(WebInspector.ResourceContentView.prototype.wasShown):

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype.wasShown):
(WebInspector.NetworkLogView.prototype.willHide):
(WebInspector.NetworkPanel.prototype.wasShown):

  • inspector/front-end/Panel.js:

(WebInspector.Panel):
(WebInspector.Panel.prototype.show):
(WebInspector.Panel.prototype.wasShown):
(WebInspector.Panel.prototype.willHide):

  • inspector/front-end/PanelEnablerView.js:
  • inspector/front-end/ProfileView.js:

(WebInspector.CPUProfileView.prototype.willHide):

  • inspector/front-end/ProfilesPanel.js:

(WebInspector.ProfilesPanel.prototype.wasShown):
(WebInspector.ProfilesPanel.prototype._addProfileHeader):
(WebInspector.ProfilesPanel.prototype._updateInterface):
(WebInspector.ProfilesPanel.prototype._enableDetailedHeapProfiles):

  • inspector/front-end/ResourceCookiesView.js:

(WebInspector.ResourceCookiesView.prototype.wasShown):

  • inspector/front-end/ResourceHTMLView.js:

(WebInspector.ResourceHTMLView.prototype.wasShown):
(WebInspector.ResourceHTMLView.prototype.willHide):

  • inspector/front-end/ResourceJSONView.js:

(WebInspector.ResourceJSONView.parseJSON.WebInspector.ResourceJSONView.prototype.wasShown):

  • inspector/front-end/ResourceTimingView.js:

(WebInspector.ResourceTimingView.prototype.wasShown):

  • inspector/front-end/ResourcesPanel.js:

(WebInspector.ResourcesPanel.prototype.wasShown):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype.wasShown):
(WebInspector.ScriptsPanel.prototype._updateDebuggerButtons):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.prototype.wasShown):

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype.wasShown):
(WebInspector.TimelinePanel.prototype.willHide):

  • inspector/front-end/View.js:

(WebInspector.View):
(WebInspector.View.prototype.get visible):
(WebInspector.View.prototype.setHideOnDetach):
(WebInspector.View.prototype._wasShown):
(WebInspector.View.prototype._willHide):
(WebInspector.View.prototype._onResize):
(WebInspector.View.prototype.wasShown):
(WebInspector.View.prototype.willHide):
(WebInspector.View.prototype.onResize):
(WebInspector.View.prototype.show):
(WebInspector.View.prototype.detach):
(WebInspector.View.prototype.doResize):
(WebInspector.View.prototype.dispatchToSelfAndChildren):
(WebInspector.View.prototype.dispatchToChildren):
(WebInspector.View.prototype._handleInsertedIntoDocument):

LayoutTests: Web Inspector: get rid of View::hide, View::set visible, View::attach.
https://bugs.webkit.org/show_bug.cgi?id=70523

Patch by Pavel Feldman <pfeldman@google.com> on 2011-10-20
Reviewed by Yury Semikhatsky.

  • inspector/debugger/scripts-panel.html:
  • inspector/view-events-expected.txt:
  • inspector/view-events.html:
9:38 AM Changeset in webkit [98193] by commit-queue@webkit.org
  • 2 edits in trunk/Tools

[WK2][GTK] Missing env variables cause WKTR to crash
https://bugs.webkit.org/show_bug.cgi?id=70674

Patch by Zan Dobersek <zandobersek@gmail.com> on 2011-10-22
Reviewed by Martin Robinson.

Set two environment variables that the Gtk's port of WebKitTestRunner
depends on and crashes if they're not explicitly set by the user.
Also modify the setting of the WEBKIT_INSPECTOR_PATH variable so it
properly uses the _build_path method.

  • Scripts/webkitpy/layout_tests/port/gtk.py: Set

TEST_RUNNER_INJECTED_BUNDLE_FILENAME and TEST_RUNNER_TEST_PLUGIN_PATH
environment variables.

3:53 AM Changeset in webkit [98192] by tkent@chromium.org
  • 2 edits in trunk/Source/WebCore

REGRESSION(r92480): Passing uninitialized variable in HTMLElement::calculateAndAdjustDirectionality()
https://bugs.webkit.org/show_bug.cgi?id=70582

Reviewed by Darin Adler.

No new tests. It's very hard to make a reliable test.

  • html/HTMLElement.cpp:

(WebCore::HTMLElement::directionality):
Clear *strongDirectionalityTextNode even if hasStrongDirectionality is false.

Oct 21, 2011:

10:52 PM Changeset in webkit [98191] by mitz@apple.com
  • 2 edits
    1 add in trunk/Source/WebCore

Caret is drawn in the wrong place in multi-column blocks
https://bugs.webkit.org/show_bug.cgi?id=70662

Reviewed by Gavin Barraclough.

  • manual-tests/caret-in-columns.html: Added.
  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::paintCaret): Removed the call to offsetForContents(). That function takes
a point in local coordinates, whereas this function was applying it to a point in painting root
coordinates. The desired effect was only to undo the scroll adjustment done by the caller,
paintObject().
(WebCore::RenderBlock::paintObject): Pass the original, rather than scroll-adjusted, paint offset
to paintCaret().

10:32 PM Changeset in webkit [98190] by gyuyoung.kim@samsung.com
  • 4 edits in trunk/Source/WebKit/efl

[EFL] Change efl style local variables with WebKit coding Style.
https://bugs.webkit.org/show_bug.cgi?id=69988

Reviewed by Antonio Gomes.

Change *sd* variable name with *smartData*. Some variables were changed by Bug 69988.

  • ewk/ewk_frame.cpp:

(ewk_frame_view_get):
(ewk_frame_uri_set):
(ewk_frame_uri_get):
(ewk_frame_contents_size_get):
(ewk_frame_load_document_finished):
(ewk_frame_load_error):
(ewk_frame_title_set):
(ewk_frame_uri_changed):
(ewk_frame_editor_client_selection_changed):
(ewk_frame_editor_client_contents_changed):
(EWKPrivate::coreFrame):

  • ewk/ewk_view.cpp:

(_ewk_view_smart_pre_render_region):
(_ewk_view_smart_pre_render_relative_radius):
(_ewk_view_smart_pre_render_cancel):
(_ewk_view_smart_disable_render):
(_ewk_view_smart_enable_render):
(EWKPrivate::corePage):

  • ewk/ewk_view_single.cpp:

(_ewk_view_single_smart_add):
(_ewk_view_single_smart_resize):

9:57 PM Changeset in webkit [98189] by ap@apple.com
  • 5 edits in trunk/Source/WebKit2

[WK2] Clicking a print button in a PDF doesn't do anything
https://bugs.webkit.org/show_bug.cgi?id=70663
<rdar://problem/9795014>

Reviewed by Dan Bernstein.

  • UIProcess/WebPageProxy.h:
  • UIProcess/WebPageProxy.cpp: (WebKit::WebPageProxy::printMainFrame): Added a public method

that PDFViewController could call.

  • UIProcess/API/mac/PDFViewController.h:
  • UIProcess/API/mac/PDFViewController.mm:

(-[WKPDFView PDFViewPerformPrint:]):
(WebKit::PDFViewController::print):
Connect PDFView delegate method for printing.

8:58 PM Changeset in webkit [98188] by fpizlo@apple.com
  • 3 edits
    3 adds in trunk

DFG inlining sometimes fails to reset constant references
https://bugs.webkit.org/show_bug.cgi?id=70668

Source/JavaScriptCore:

Reviewed by Anders Carlsson.

Reset constant references when we need to (new block created) and not
when we don't (change of inlining depth).

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::handleInlining):
(JSC::DFG::ByteCodeParser::prepareToParseBlock):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::parseCodeBlock):

LayoutTests:

Reviewed by Anders Carlsson.

Added a new test that covers this specific bug as well as the general
ability to perform inlining, and the ability to OSR out of an inline
stack.

  • fast/js/dfg-inline-constant-expected.txt: Added.
  • fast/js/dfg-inline-constant.html: Added.
  • fast/js/script-tests/dfg-inline-constant.js: Added.

(foo):
(bar):

8:56 PM Changeset in webkit [98187] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Lookup does not work on text using web fonts in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=70669
<rdar://problem/10147441>

Reviewed by Anders Carlsson.

  • WebProcess/WebPage/mac/WebPageMac.mm:

(WebKit::WebPage::performDictionaryLookupForRange):
If the font for the range is web font (and therefore no NSFont is
available), use the system font of the same size. While not great,
it approximates what WebKit1 does.

8:25 PM Changeset in webkit [98186] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Fix crash below CoreIPC::MessageSender<WebKit::WebPage>::send<Messages::WebPageProxy::DidPerformDictionaryLookup>
https://bugs.webkit.org/show_bug.cgi?id=70667
<rdar://problem/9622186>

Reviewed by Anders Carlsson.

  • Shared/DictionaryPopupInfo.cpp:

(WebKit::DictionaryPopupInfo::encode):
(WebKit::DictionaryPopupInfo::decode):
Account for the fact that the options dictionary can be null. This is due to Lookup passing
back a null, rather than empty, dictionary when it could not find any interesting characteristics.

8:15 PM Changeset in webkit [98185] by nduca@chromium.org
  • 13 edits in trunk/Source

[chromium] Make setVisibility extension- and thread-correct
https://bugs.webkit.org/show_bug.cgi?id=70635

Reviewed by Kenneth Russell.

Source/WebCore:

  • platform/graphics/chromium/Extensions3DChromium.h:
  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::initialize):
(WebCore::LayerRendererChromium::setVisible):

  • platform/graphics/chromium/LayerRendererChromium.h:
  • platform/graphics/chromium/cc/CCLayerTreeHost.h:

(WebCore::LayerRendererCapabilities::LayerRendererCapabilities):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::setVisible):

Source/WebKit/chromium:

  • public/WebGraphicsContext3D.h:

(WebKit::WebGraphicsContext3D::setVisibilityCHROMIUM):

  • src/Extensions3DChromium.cpp:

(WebCore::Extensions3DChromium::setVisibilityCHROMIUM):

  • src/GraphicsContext3DChromium.cpp:
  • src/GraphicsContext3DPrivate.h:
  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::setVisibilityState):

7:51 PM Changeset in webkit [98184] by weinig@apple.com
  • 5 edits
    3 adds in trunk/Source/WebKit2

Add WKBrowsingContextGroup which wraps WKPageGroupRef
https://bugs.webkit.org/show_bug.cgi?id=70665

Reviewed by Anders Carlsson.

  • UIProcess/API/mac/WKBrowsingContextGroup.h: Added.
  • UIProcess/API/mac/WKBrowsingContextGroup.mm: Added.

(-[WKBrowsingContextGroup initWithIdentifier:]):
(-[WKBrowsingContextGroup dealloc]):
(-[WKBrowsingContextGroup pageGroupRef]):

  • UIProcess/API/mac/WKBrowsingContextGroupInternal.h: Added.
  • UIProcess/API/mac/WKView.h:
  • UIProcess/API/mac/WKView.mm:

(-[WKView initWithFrame:processGroup:browsingContextGroup:]):

  • WebKit2.xcodeproj/project.pbxproj:
7:24 PM Changeset in webkit [98183] by ojan@chromium.org
  • 4 edits
    15 adds
    2 deletes in trunk/LayoutTests

Fixup test expectations now that http://trac.webkit.org/changeset/98173 has landed.

  • platform/chromium-cg-mac-leopard/fast/backgrounds/background-leakage-transforms-expected.png: Added.
  • platform/chromium-cg-mac-leopard/fast/writing-mode/fallback-orientation-expected.png:
  • platform/chromium-cg-mac-snowleopard/fast/backgrounds/background-leakage-transforms-expected.png: Added.
  • platform/chromium-cg-mac-snowleopard/fast/writing-mode/fallback-orientation-expected.png: Added.
  • platform/chromium-cg-mac/fast/backgrounds/background-leakage-transforms-expected.png: Removed.
  • platform/chromium-mac-leopard/fast/backgrounds/background-leakage-transforms-expected.png: Added.
  • platform/chromium-mac-leopard/fast/writing-mode/fallback-orientation-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/backgrounds/background-leakage-transforms-expected.png: Added.
  • platform/chromium-mac-snowleopard/fast/writing-mode/fallback-orientation-expected.png:
  • platform/chromium-mac/fast/backgrounds/background-leakage-transforms-expected.png: Removed.
  • platform/chromium-win/fast/backgrounds/background-leakage-transforms-expected.txt: Added.
  • platform/chromium/fast/backgrounds/background-leakage-transforms-expected.txt: Added.
  • platform/chromium/fast/writing-mode/fallback-orientation-expected.txt: Added.
  • platform/chromium/test_expectations.txt:
6:42 PM Changeset in webkit [98182] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

[Chromium] Layout Test fast/canvas/webgl/premultiplyalpha-test.html is failing
https://bugs.webkit.org/show_bug.cgi?id=68885

Unreviewed gardening.

  • platform/chromium/test_expectations.txt: Removed the test since it has been passing on

the bots for at least a week.

6:32 PM Changeset in webkit [98181] by jchaffraix@webkit.org
  • 1 edit
    1 add
    4 deletes in trunk/LayoutTests

Unreviewed rebaseline.

This test started failing on the bot. As this is a progression, updating the baseline.

  • platform/chromium-cg-mac-snowleopard/fast/multicol/flipped-blocks-border-after-expected.png: Removed.
  • platform/chromium-cg-mac-snowleopard/fast/multicol/flipped-blocks-border-after-expected.txt: Removed.
  • platform/chromium-mac/fast/multicol/flipped-blocks-border-after-expected.png: Removed.
  • platform/chromium-mac/fast/multicol/flipped-blocks-border-after-expected.txt: Removed.
  • platform/chromium/fast/multicol/flipped-blocks-border-after-expected.png: Added.
6:26 PM Changeset in webkit [98180] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

[Chromium] Layout Test canvas/philip/tests/toDataURL.jpeg.*.html is failing on Mac 10.5 CG
https://bugs.webkit.org/show_bug.cgi?id=68879

Reviewed by Adam Barth.

  • platform/chromium/test_expectations.txt: Those changes have been consistently passing on

the bots for at least 10 days.

6:22 PM Changeset in webkit [98179] by fpizlo@apple.com
  • 31 edits in trunk/Source/JavaScriptCore

DFG should have inlining
https://bugs.webkit.org/show_bug.cgi?id=69996

Reviewed by Oliver Hunt.

Implements inlining that's hooked into the bytecode parser. Only
works for calls, for now, though nothing fundamentally prevents us
from inlining constructor calls. 2% overall speed-up on all
benchmarks. 7% speed-up on V8 (around 34% and 27% on deltablue and
richards respectively), neutral on Kraken and SunSpider.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::visitAggregate):

  • bytecode/CodeBlock.h:

(JSC::CodeBlock::baselineVersion):
(JSC::CodeBlock::setInstructionCount):
(JSC::CodeBlock::likelyToTakeSlowCase):
(JSC::CodeBlock::couldTakeSlowCase):
(JSC::CodeBlock::likelyToTakeSpecialFastCase):
(JSC::CodeBlock::likelyToTakeDeepestSlowCase):
(JSC::CodeBlock::likelyToTakeAnySlowCase):

  • bytecode/CodeOrigin.h:

(JSC::CodeOrigin::inlineDepthForCallFrame):
(JSC::CodeOrigin::inlineDepth):
(JSC::CodeOrigin::operator==):
(JSC::CodeOrigin::inlineStack):

  • bytecompiler/BytecodeGenerator.cpp:

(JSC::BytecodeGenerator::generate):

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::beginBasicBlock):
(JSC::DFG::AbstractState::execute):
(JSC::DFG::AbstractState::mergeStateAtTail):

  • dfg/DFGBasicBlock.h:

(JSC::DFG::BasicBlock::BasicBlock):
(JSC::DFG::BasicBlock::ensureLocals):
(JSC::DFG::UnlinkedBlock::UnlinkedBlock):

  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::ByteCodeParser):
(JSC::DFG::ByteCodeParser::getDirect):
(JSC::DFG::ByteCodeParser::get):
(JSC::DFG::ByteCodeParser::setDirect):
(JSC::DFG::ByteCodeParser::set):
(JSC::DFG::ByteCodeParser::getLocal):
(JSC::DFG::ByteCodeParser::getArgument):
(JSC::DFG::ByteCodeParser::flush):
(JSC::DFG::ByteCodeParser::InlineStackEntry::~InlineStackEntry):
(JSC::DFG::ByteCodeParser::InlineStackEntry::remapOperand):
(JSC::DFG::ByteCodeParser::handleInlining):
(JSC::DFG::ByteCodeParser::parseBlock):
(JSC::DFG::ByteCodeParser::processPhiStack):
(JSC::DFG::ByteCodeParser::linkBlock):
(JSC::DFG::ByteCodeParser::linkBlocks):
(JSC::DFG::ByteCodeParser::handleSuccessor):
(JSC::DFG::ByteCodeParser::determineReachability):
(JSC::DFG::ByteCodeParser::buildOperandMapsIfNecessary):
(JSC::DFG::ByteCodeParser::InlineStackEntry::InlineStackEntry):
(JSC::DFG::ByteCodeParser::parseCodeBlock):
(JSC::DFG::ByteCodeParser::parse):

  • dfg/DFGCapabilities.cpp:

(JSC::DFG::canHandleOpcodes):
(JSC::DFG::canCompileOpcodes):
(JSC::DFG::canInlineOpcodes):

  • dfg/DFGCapabilities.h:

(JSC::DFG::mightCompileEval):
(JSC::DFG::mightCompileProgram):
(JSC::DFG::mightCompileFunctionForCall):
(JSC::DFG::mightCompileFunctionForConstruct):
(JSC::DFG::mightInlineFunctionForCall):
(JSC::DFG::mightInlineFunctionForConstruct):
(JSC::DFG::canInlineOpcode):
(JSC::DFG::canInlineOpcodes):
(JSC::DFG::canInlineFunctionForCall):
(JSC::DFG::canInlineFunctionForConstruct):

  • dfg/DFGGraph.cpp:

(JSC::DFG::printWhiteSpace):
(JSC::DFG::Graph::dumpCodeOrigin):
(JSC::DFG::Graph::dump):

  • dfg/DFGGraph.h:

(JSC::DFG::GetBytecodeBeginForBlock::operator()):
(JSC::DFG::Graph::blockIndexForBytecodeOffset):

  • dfg/DFGJITCompiler.cpp:

(JSC::DFG::JITCompiler::decodedCodeMapFor):
(JSC::DFG::JITCompiler::linkOSRExits):
(JSC::DFG::JITCompiler::exitSpeculativeWithOSR):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::debugCall):
(JSC::DFG::JITCompiler::baselineCodeBlockFor):

  • dfg/DFGJITCompiler32_64.cpp:

(JSC::DFG::JITCompiler::exitSpeculativeWithOSR):

  • dfg/DFGNode.h:

(JSC::DFG::Node::hasVariableAccessData):
(JSC::DFG::Node::shouldGenerate):

  • dfg/DFGOperands.h:

(JSC::DFG::Operands::ensureLocals):
(JSC::DFG::Operands::setLocal):
(JSC::DFG::Operands::getLocal):

  • dfg/DFGPropagator.cpp:

(JSC::DFG::Propagator::propagateNodePredictions):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::OSRExit::OSRExit):
(JSC::DFG::SpeculativeJIT::compile):
(JSC::DFG::SpeculativeJIT::checkArgumentTypes):

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::SpeculativeJIT::SpeculativeJIT):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • interpreter/CallFrame.cpp:

(JSC::CallFrame::trueCallerFrameSlow):

  • jit/JITCall.cpp:

(JSC::JIT::compileOpCallSlowCase):

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/Executable.cpp:

(JSC::FunctionExecutable::baselineCodeBlockFor):
(JSC::FunctionExecutable::produceCodeBlockFor):
(JSC::FunctionExecutable::compileForCallInternal):
(JSC::FunctionExecutable::compileForConstructInternal):

  • runtime/Executable.h:

(JSC::FunctionExecutable::profiledCodeBlockFor):
(JSC::FunctionExecutable::parameterCount):

  • runtime/Heuristics.cpp:

(JSC::Heuristics::initializeHeuristics):

  • runtime/Heuristics.h:
  • runtime/JSFunction.h:
6:15 PM Changeset in webkit [98178] by Beth Dakin
  • 2 edits in trunk/Source/WebCore

https://bugs.webkit.org/show_bug.cgi?id=70647
Common but unreproducible crash under [ScrollbarPartAnimation setCurrentProgress:]
-and corresponding-
<rdar://problem/9542018>

Reviewed by Sam Weinig.

This patch implements two speculative fixes for this crash.

First, block exceptions around all of the code responsible for calling
stopAnimation. If that code throws any exceptions, we want to make sure the other
animations are still stopped.

  • platform/mac/ScrollAnimatorMac.mm:

(-[WebScrollbarPartAnimation scrollAnimatorDestroyed]):
(-[WebScrollbarPainterDelegate scrollAnimatorDestroyed]):
(WebCore::ScrollAnimatorMac::~ScrollAnimatorMac):

Only send AppKit these notifications for active pages. I originally made these
assertions, and I found that they were hit a surprising number of times. If we
only send notifications for active pages, then we should greatly reduce and
possibly eliminate our chances of hitting this crash.
(WebCore::ScrollAnimatorMac::notifyPositionChanged):
(WebCore::ScrollAnimatorMac::contentAreaWillPaint):
(WebCore::ScrollAnimatorMac::mouseEnteredContentArea):
(WebCore::ScrollAnimatorMac::mouseExitedContentArea):
(WebCore::ScrollAnimatorMac::mouseMovedInContentArea):
(WebCore::ScrollAnimatorMac::willStartLiveResize):
(WebCore::ScrollAnimatorMac::contentsResized):
(WebCore::ScrollAnimatorMac::willEndLiveResize):
(WebCore::ScrollAnimatorMac::contentAreaDidShow):
(WebCore::ScrollAnimatorMac::contentAreaDidHide):
(WebCore::ScrollAnimatorMac::didBeginScrollGesture):
(WebCore::ScrollAnimatorMac::didEndScrollGesture):

5:48 PM Changeset in webkit [98177] by mhahnenberg@apple.com
  • 10 edits in trunk/Source

Add put to the MethodTable
https://bugs.webkit.org/show_bug.cgi?id=70439

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

  • JavaScriptCore.exp:
  • JavaScriptCore.vcproj/JavaScriptCore/JavaScriptCore.def:
  • runtime/ClassInfo.h: Added put and putByIndex to the MethodTable.
  • runtime/JSFunction.h: Changed access modifier for put to protected since some

subclasses of JSFunction need to reference it in their MethodTables.

Source/WebCore:

No new tests.

  • WebCore.exp.in:
  • bindings/js/JSDOMWindowCustom.cpp: Added static put since it was overlooked in

previous patches.
(WebCore::JSDOMWindow::putVirtual):
(WebCore::JSDOMWindow::put):

  • bindings/js/JSDOMWindowShell.cpp: Ditto.

(WebCore::JSDOMWindowShell::putVirtual):
(WebCore::JSDOMWindowShell::put):

  • bindings/js/JSDOMWindowShell.h:
5:39 PM Changeset in webkit [98176] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebCore

Merged r98112.

5:38 PM Changeset in webkit [98175] by dslomov@google.com
  • 9 edits in trunk

Source/WebCore: https://bugs.webkit.org/show_bug.cgi?id=70580
[Chromium] Implement MessagePort transfer in chromium port of webkit.

Reviewed by David Levin.

  • bindings/v8/SerializedScriptValue.cpp:

(WebCore::V8ObjectMap::Writer::writeTransferredMessagePort):
(WebCore::V8ObjectMap::Serializer::Serializer):
(WebCore::V8ObjectMap::Serializer::doSerialize):
(WebCore::V8ObjectMap::Reader::read):
(WebCore::V8ObjectMap::Deserializer::Deserializer):
(WebCore::V8ObjectMap::Deserializer::tryGetTransferredMessagePort):
(WebCore::SerializedScriptValue::SerializedScriptValue):
(WebCore::SerializedScriptValue::deserialize):

LayoutTests: https://bugs.webkit.org/show_bug.cgi?id=70580
[Chromium] Implement MessagePort transfer in chromium port of webkit.
Results for JSC include some FAILs - this will be addressed when JSC
implements message port transfers as well (https://bugs.webkit.org/show_bug.cgi?id=70658)

Reviewed by David Levin.

  • fast/dom/Window/window-postmessage-args-expected.txt:
  • fast/dom/Window/window-postmessage-args.html:
  • fast/events/message-port-multi-expected.txt:
  • fast/events/resources/message-port-multi.js:

(testTransfers.channel0.port2.onmessage):
(testTransfers):
(channel.port2.onmessage):

  • platform/chromium-win/fast/events/message-port-multi-expected.txt:
  • platform/chromium/fast/dom/Window/window-postmessage-args-expected.txt:
5:16 PM Changeset in webkit [98174] by eae@chromium.org
  • 18 adds in branches/subpixellayout/Source/WebCore/platform

Add missing files for fixed-point implementation

5:10 PM Changeset in webkit [98173] by ojan@chromium.org
  • 2 edits in trunk/Source/WebCore

r97693 caused 42 failures on the chromium mac bots
https://bugs.webkit.org/show_bug.cgi?id=70300

Can't test this until https://bugs.webkit.org/show_bug.cgi?id=70660
is fixed. The fix for that bug will test this codepath as well though.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::computeBlockPreferredLogicalWidths):

5:04 PM Changeset in webkit [98172] by commit-queue@webkit.org
  • 6 edits in trunk

Setting form.enctype reflected attribute behaves strangely.
https://bugs.webkit.org/show_bug.cgi?id=44879

Patch by Vineet Chaudhary <vineet.chaudhary@motorola.com> on 2011-10-21
Reviewed by Darin Adler.

Source/WebCore:

The spec says form.enctype should be application/x-www-form-urlencoded,
So as "text", "plain", "multipart" or "form-data" these are not a valid value so must be ignored.

  • loader/FormSubmission.cpp:

(WebCore::FormSubmission::Attributes::parseEncodingType):

LayoutTests:

Leading/trailing white-spaces should not be allowed while specifying attribute value.
Added more test coverage for form.enctype attribute.

  • fast/forms/encoding-test.html:
  • fast/forms/enctype-attribute-expected.txt:
  • fast/forms/enctype-attribute.html: Corrected test case as per new behavior.
5:01 PM Changeset in webkit [98171] by mdelaney@apple.com
  • 3 edits in trunk/Source/WebCore

Ensure periodic flushing of canvas drawing context
https://bugs.webkit.org/show_bug.cgi?id=70646

Reviewed by Simon Fraser.

No new tests. No current way to track tests that cause hangs or
non-deterministic drops in performance.

  • platform/graphics/cg/ImageBufferDataCG.h: Adds a timestamp of last tracked flush.
  • platform/graphics/cg/ImageBufferCG.cpp: Ensures periodic flushes on the drawing context.

(WebCore::ImageBuffer::ImageBuffer):
(WebCore::ImageBuffer::context): Flushes context if we're beyond flush interval.
(WebCore::ImageBuffer::copyNativeImage): Updates last flush timestamp.
(WebCore::ImageBuffer::getUnmultipliedImageData): Updates last flush timestamp.
(WebCore::ImageBuffer::getPremultipliedImageData): Updates last flush timestamp.
(WebCore::ImageBuffer::putUnmultipliedImageData): Updates last flush timestamp.
(WebCore::ImageBuffer::putPremultipliedImageData): Updates last flush timestamp.

4:54 PM Changeset in webkit [98170] by Lucas Forschler
  • 13 edits in branches/safari-534.52-branch/Source

Merged r98027.

4:53 PM Changeset in webkit [98169] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Gardening update.

  • platform/chromium/test_expectations.txt: We are randomly hitting

a known ASSERT on this test case.

4:52 PM Changeset in webkit [98168] by Lucas Forschler
  • 11 edits in branches/safari-534.52-branch/Source

Merge 97810 & 97813.

4:20 PM Changeset in webkit [98167] by fpizlo@apple.com
  • 2 edits in trunk/Tools

Bencher script doesn't measure GC times accurately
https://bugs.webkit.org/show_bug.cgi?id=70588

Reviewed by Geoff Garen.

Added two new options which allow different ways of measuring GC times:

--measure-gc, which omits calls to gc() between benchmark invocations.
This option takes an optional argument, which is the name of the
VM in which to enable this feature. This allows comparing a single VM
against itself, with and without GC.

--rerun <N>, which causes each sample measurement to include N invocations
which do not have gc() calls between them. The default is N = 1, which
results in the same behavior as before.

You can use either --measure-gc or --rerun <N> for N > 1 (preferably
N >= 3) to get more of a contribution from GC to the measured times.
--rerun results in tighter confidence intervals than --measure-gc, since
it amortizes GC effects in each sample, while with --measure-gc some
samples will see GC and some won't leading to a higher standard devation
and thus requiring more samples to reduce confidence intervals to
managable levels.

  • Scripts/bencher:
4:18 PM Changeset in webkit [98166] by rniwa@webkit.org
  • 2 edits in trunk/Websites/webkit.org

Style guide should mention the preference of index over iterator
https://bugs.webkit.org/show_bug.cgi?id=70285

Reviewed by Darin Adler.

Per discussion on https://lists.webkit.org/pipermail/webkit-dev/2011-October/018274.html,
we prefer index over iterators.

  • coding/coding-style.html:
4:12 PM Changeset in webkit [98165] by eae@chromium.org
  • 286 edits in branches/subpixellayout/Source

Merging subpixel patch into branch. Currently builds on the qt and mac ports.

3:56 PM Changeset in webkit [98164] by abarth@webkit.org
  • 16 edits in trunk/Source

Introduce Event::hasInterface to make uses of interfaceName more readable
https://bugs.webkit.org/show_bug.cgi?id=70652

Reviewed by Eric Seidel.

Source/WebCore:

Eric felt that this approach would be more readable because it requires
less syntax at each callsite.

  • bindings/js/JSErrorHandler.cpp:

(WebCore::JSErrorHandler::handleEvent):

  • bindings/objc/DOMEvents.mm:

(kitClass):

  • bindings/v8/V8WindowErrorHandler.cpp:

(WebCore::V8WindowErrorHandler::callListenerFunction):

  • bindings/v8/V8WorkerContextErrorHandler.cpp:

(WebCore::V8WorkerContextErrorHandler::callListenerFunction):

  • dom/Event.cpp:

(WebCore::Event::hasInterface):

  • dom/Event.h:
  • dom/EventDispatcher.cpp:

(WebCore::EventDispatcher::determineDispatchBehavior):

  • dom/Node.cpp:

(WebCore::Node::defaultEventHandler):

  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::defaultEventHandler):

  • html/HTMLTextAreaElement.cpp:

(WebCore::HTMLTextAreaElement::defaultEventHandler):

  • html/TextFieldInputType.cpp:

(WebCore::TextFieldInputType::forwardEvent):
(WebCore::TextFieldInputType::shouldSubmitImplicitly):

  • inspector/InspectorDOMStorageResource.cpp:

(WebCore::InspectorDOMStorageResource::handleEvent):

Source/WebKit/chromium:

Update call sites to the new interface.

  • src/WebDOMEvent.cpp:

(WebKit::WebDOMEvent::isMutationEvent):
(WebKit::WebDOMEvent::isTextEvent):
(WebKit::WebDOMEvent::isCompositionEvent):
(WebKit::WebDOMEvent::isMessageEvent):
(WebKit::WebDOMEvent::isWheelEvent):
(WebKit::WebDOMEvent::isOverflowEvent):
(WebKit::WebDOMEvent::isPageTransitionEvent):
(WebKit::WebDOMEvent::isPopStateEvent):
(WebKit::WebDOMEvent::isProgressEvent):
(WebKit::WebDOMEvent::isXMLHttpRequestProgressEvent):
(WebKit::WebDOMEvent::isWebKitAnimationEvent):
(WebKit::WebDOMEvent::isWebKitTransitionEvent):
(WebKit::WebDOMEvent::isBeforeLoadEvent):

  • src/WebPluginContainerImpl.cpp:

(WebKit::WebPluginContainerImpl::handleEvent):

3:52 PM Changeset in webkit [98163] by adamk@chromium.org
  • 4 edits
    2 adds in trunk

[MutationObservers] Implement basic subtree observation
https://bugs.webkit.org/show_bug.cgi?id=70436

Reviewed by Ryosuke Niwa.

Source/WebCore:

Note that this patch only implements "basic" subtree semantics,
not the fully robust semantics described in
http://lists.w3.org/Archives/Public/public-webapps/2011JulSep/1622.html.
Most importantly, this change does not handle the case where mutations
occur in a temporarily detached subtree.

The plan is to implement those semantics in a followup to avoid
blocking other parts of the MutationObserver spec that rely on
the existence of subtree observation but not its specific
implementation.

Test: fast/mutation/observe-subtree.html

  • dom/Node.cpp:

(WebCore::addMatchingObservers): Static helper method for registeredMutationObserversOfType().
(WebCore::Node::registeredMutationObserversOfType): Walk up the tree looking for observers.

  • dom/NodeRareData.h:

(WebCore::MutationObserverEntry::hasAllOptions): A stricter, renamed from matches().

LayoutTests:

  • fast/mutation/observe-subtree-expected.txt: Added.
  • fast/mutation/observe-subtree.html: Added.
3:33 PM Changeset in webkit [98162] by commit-queue@webkit.org
  • 7 edits in trunk/Source/WebKit/qt

[Qt] Remote debugging needs QWebInspector to work
https://bugs.webkit.org/show_bug.cgi?id=70651

Patch by Luiz Agostini <luiz.agostini@palm.com> on 2011-10-21
Reviewed by Kenneth Rohde Christiansen.

Removing QWebInspector dependency from remote inspector.

  • Api/qwebinspector.cpp:
  • Api/qwebinspector_p.h:

(QWebInspectorPrivate::QWebInspectorPrivate):

  • WebCoreSupport/InspectorClientQt.cpp:

(WebCore::InspectorClientQt::InspectorClientQt):
(WebCore::InspectorClientQt::openInspectorFrontend):
(WebCore::InspectorClientQt::attachAndReplaceRemoteFrontend):
(WebCore::InspectorClientQt::detachRemoteFrontend):
(WebCore::InspectorClientQt::sendMessageToFrontend):

  • WebCoreSupport/InspectorClientQt.h:
  • WebCoreSupport/InspectorServerQt.cpp:

(WebCore::InspectorServerRequestHandlerQt::tcpReadyRead):

  • WebCoreSupport/InspectorServerQt.h:
3:30 PM Changeset in webkit [98161] by weinig@apple.com
  • 3 edits in trunk/Source/WebKit2

Mark member variables of WebKit2 API @private
https://bugs.webkit.org/show_bug.cgi?id=70655

Reviewed by Simon Fraser.

  • UIProcess/API/mac/WKBrowsingContextController.h:
  • UIProcess/API/mac/WKView.h:
3:26 PM Changeset in webkit [98160] by weinig@apple.com
  • 4 edits
    3 moves in trunk/Source/WebKit2

Rename WKProcessCluster to WKProcessGroup
https://bugs.webkit.org/show_bug.cgi?id=70654

Reviewed by Simon Fraser.

  • UIProcess/API/mac/WKProcessCluster.h: Removed.
  • UIProcess/API/mac/WKProcessCluster.mm: Removed.
  • UIProcess/API/mac/WKProcessClusterInternal.h: Removed.
  • UIProcess/API/mac/WKProcessGroup.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.h.
  • UIProcess/API/mac/WKProcessGroup.mm: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessCluster.mm.

(-[WKProcessGroup initWithInjectedBundleURL:]):

  • UIProcess/API/mac/WKProcessGroupInternal.h: Copied from Source/WebKit2/UIProcess/API/mac/WKProcessClusterInternal.h.
  • UIProcess/API/mac/WKView.h:
  • UIProcess/API/mac/WKView.mm:

(-[WKView initWithFrame:processCluster:]):

  • WebKit2.xcodeproj/project.pbxproj:
3:09 PM Changeset in webkit [98159] by weinig@apple.com
  • 9 edits in trunk

Remove ability to create a WKView without a WKContextRef and WKPageGroupRef
https://bugs.webkit.org/show_bug.cgi?id=70653

Reviewed by Simon Fraser.

Source/WebKit2:

Requiring a context and pagegroup removes the concept of global contexts,
which is something that is both confusing, and makes Objective-C wrapping
harder.

  • UIProcess/API/mac/WKView.mm:

(-[WKView initWithFrame:processCluster:]):

  • UIProcess/API/mac/WKViewPrivate.h:

Remove init methods that didn't take both a context and a pagegroup.

Tools:

  • MiniBrowser/mac/AppDelegate.h:
  • MiniBrowser/mac/AppDelegate.m:

(-[BrowserAppDelegate init]):
(-[BrowserAppDelegate newWindow:]):
(-[BrowserAppDelegate openPanelDidEnd:returnCode:contextInfo:]):

  • MiniBrowser/mac/BrowserWindowController.h:
  • MiniBrowser/mac/BrowserWindowController.m:

(-[BrowserWindowController initWithContext:pageGroup:]):
(-[BrowserWindowController windowWillClose:]):
(createNewPage):
(-[BrowserWindowController awakeFromNib]):

  • TestWebKitAPI/mac/WebKitAgnosticTest.mm:

(TestWebKitAPI::WebKitAgnosticTest::runWebKit2Test):
Update testing code to pass a PageGroup as necessary.

3:01 PM Changeset in webkit [98158] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/qt

[Qt] Wrong type conversion in InspectorServerQt.cpp
https://bugs.webkit.org/show_bug.cgi?id=70639

Patch by Luiz Agostini <luiz.agostini@palm.com> on 2011-10-21
Reviewed by Noam Rosenthal.

Wrong type conversion causes WebSocket handshake failures for the remote inspector.

  • WebCoreSupport/InspectorServerQt.cpp:

(WebCore::parseWebSocketChallengeNumber):

2:59 PM Changeset in webkit [98157] by commit-queue@webkit.org
  • 2 edits
    2 adds in trunk/Tools

webkitpy: Teach NRWT about the EFL port
https://bugs.webkit.org/show_bug.cgi?id=70637

Allows using efl as a platform when executing NRWT.

Patch by Leandro Pereira <leandro@profusion.mobi> on 2011-10-21
Reviewed by Eric Seidel.

  • Scripts/webkitpy/layout_tests/port/efl.py: Added.
  • Scripts/webkitpy/layout_tests/port/efl_unittest.py: Added.
  • Scripts/webkitpy/layout_tests/port/factory.py: Adjust factory to make EflPort objects

when using PortFactory.get(port_name='efl').

2:43 PM Changeset in webkit [98156] by eae@chromium.org
  • 2728 edits
    1452 copies
    52 deletes in branches/subpixellayout

Merging trunk changes up until 98153 into subpixel branch.

2:34 PM Changeset in webkit [98155] by Lucas Forschler
  • 38 edits
    3 adds in branches/safari-534.52-branch/Source

Merge rdar://problem/10310999

2:30 PM Changeset in webkit [98154] by commit-queue@webkit.org
  • 7 edits
    2 adds in trunk

IndexedDB: objectStore.transaction property should be readonly
https://bugs.webkit.org/show_bug.cgi?id=62395

Patch by Joshua Bell <jsbell@chromium.org> on 2011-10-21
Reviewed by Tony Chang.

Source/WebCore:

Implement the IDBObjectStore.transaction property defined by the spec.

Test: storage/indexeddb/readonly-properties.html

  • storage/IDBObjectStore.cpp:

(WebCore::IDBObjectStore::transaction):

  • storage/IDBObjectStore.h:
  • storage/IDBObjectStore.idl:

LayoutTests:

  • storage/indexeddb/objectstore-basics-expected.txt:
  • storage/indexeddb/objectstore-basics.html:
  • storage/indexeddb/readonly-properties-expected.txt: Added.
  • storage/indexeddb/readonly-properties.html: Added.
2:26 PM Changeset in webkit [98153] by ap@apple.com
  • 2 edits in trunk/Source/WebKit2

[WK2] Crash after printing a view with accelerated compositing content
https://bugs.webkit.org/show_bug.cgi?id=70643
<rdar://problem/9479083>

Reviewed by Darin Adler.

  • UIProcess/API/mac/WKPrintingView.mm: (-[WKPrintingView _delayedResumeAutodisplayTimerFired]): We cannot rely on -[WKView drawRect:] calling endPrinting() for us. That call to endPrinting() is still necessary to paint e.g. when resizing a window while a print dialog is present.
2:22 PM Changeset in webkit [98152] by Lucas Forschler
  • 5 edits
    3 copies in branches/safari-534.52-branch

Merged r98060.

2:16 PM Changeset in webkit [98151] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r98013.

2:13 PM Changeset in webkit [98150] by Lucas Forschler
  • 3 edits
    2 copies in branches/safari-534.52-branch

Merged r97821.

2:10 PM Changeset in webkit [98149] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r97808.

2:09 PM Changeset in webkit [98148] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r97807.

2:08 PM Changeset in webkit [98147] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r97681.

2:07 PM Changeset in webkit [98146] by abarth@webkit.org
  • 35 edits in trunk/Source

Event.h has too many virtual isMumbleEvent() functions
https://bugs.webkit.org/show_bug.cgi?id=70636

Reviewed by Dimitri Glazkov.

Source/WebCore:

We should use the new interfaceName() way of doing run-time type inference.

  • bindings/js/JSErrorHandler.cpp:

(WebCore::JSErrorHandler::handleEvent):

  • bindings/js/JSEventCustom.cpp:

(WebCore::JSEvent::clipboardData):

  • bindings/objc/DOMEvents.mm:

(kitClass):

  • bindings/v8/V8WindowErrorHandler.cpp:

(WebCore::V8WindowErrorHandler::callListenerFunction):

  • bindings/v8/V8WorkerContextErrorHandler.cpp:

(WebCore::V8WorkerContextErrorHandler::callListenerFunction):

  • bindings/v8/custom/V8EventCustom.cpp:

(WebCore::V8Event::clipboardDataAccessorGetter):

  • dom/BeforeLoadEvent.h:

(WebCore::BeforeLoadEvent::interfaceName):

  • dom/BeforeTextInsertedEvent.h:
  • dom/ClipboardEvent.cpp:
  • dom/ClipboardEvent.h:
  • dom/CompositionEvent.cpp:
  • dom/CompositionEvent.h:
  • dom/ErrorEvent.cpp:
  • dom/ErrorEvent.h:
  • dom/Event.cpp:

(WebCore::Event::storesResultAsString):
(WebCore::Event::storeResult):
(WebCore::Event::clipboardData):

  • dom/Event.h:
  • dom/Event.idl:
    • Remove this interface from the CPP bindings because this function no longer exists. It's unclear to me how strong our API commitments are in the CPP bindings.
  • dom/EventDispatcher.cpp:

(WebCore::EventDispatcher::determineDispatchBehavior):

  • dom/MessageEvent.cpp:
  • dom/MessageEvent.h:
  • dom/MutationEvent.cpp:
  • dom/MutationEvent.h:
  • dom/Node.cpp:

(WebCore::Node::defaultEventHandler):

  • dom/OverflowEvent.cpp:
  • dom/OverflowEvent.h:
  • dom/PageTransitionEvent.h:
  • dom/ProgressEvent.h:
  • dom/TextEvent.cpp:
  • dom/TextEvent.h:
  • dom/WheelEvent.cpp:
  • dom/WheelEvent.h:
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::defaultEventHandler):

  • html/HTMLTextAreaElement.cpp:

(WebCore::HTMLTextAreaElement::defaultEventHandler):

  • html/TextFieldInputType.cpp:

(WebCore::TextFieldInputType::forwardEvent):
(WebCore::TextFieldInputType::shouldSubmitImplicitly):

  • html/shadow/TextControlInnerElements.cpp:

(WebCore::TextControlInnerTextElement::defaultEventHandler):

  • svg/SVGZoomEvent.cpp:
  • svg/SVGZoomEvent.h:

Source/WebKit/chromium:

Update these callsites to the new API.

  • src/WebDOMEvent.cpp:

(WebKit::WebDOMEvent::isKeyboardEvent):
(WebKit::WebDOMEvent::isMutationEvent):
(WebKit::WebDOMEvent::isTextEvent):
(WebKit::WebDOMEvent::isCompositionEvent):
(WebKit::WebDOMEvent::isClipboardEvent):
(WebKit::WebDOMEvent::isMessageEvent):
(WebKit::WebDOMEvent::isWheelEvent):
(WebKit::WebDOMEvent::isBeforeTextInsertedEvent):
(WebKit::WebDOMEvent::isOverflowEvent):
(WebKit::WebDOMEvent::isPageTransitionEvent):
(WebKit::WebDOMEvent::isProgressEvent):
(WebKit::WebDOMEvent::isBeforeLoadEvent):

2:06 PM Changeset in webkit [98145] by Lucas Forschler
  • 4 edits in branches/safari-534.52-branch/Source/WebCore

Merged r97433.

2:04 PM Changeset in webkit [98144] by commit-queue@webkit.org
  • 4 edits in trunk/Source/WebCore

Flush denormals in Biquad, ZeroPole, and DynamicsCompressor.

We only flush when saving the state variables instead of in the
loops so that we don't impact performance too much when there are
no denormals. This will at least not propagate the denormals any
further within the class.

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

Patch by Raymond Toy <Raymond Toy> on 2011-10-21
Reviewed by Kenneth Russell.

  • platform/audio/Biquad.cpp:

(WebCore::Biquad::process):
Flush denormals when storing the filter state back in to class
filter state.

  • platform/audio/DynamicsCompressorKernel.cpp:

(WebCore::DynamicsCompressorKernel::process):
Ditto.

  • platform/audio/ZeroPole.cpp:

(WebCore::ZeroPole::process):
Ditto.

2:01 PM Changeset in webkit [98143] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebCore

Merged r96874.

1:57 PM Changeset in webkit [98142] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r96864.

1:56 PM Changeset in webkit [98141] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r96855.

1:54 PM Changeset in webkit [98140] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r94472.

1:52 PM Changeset in webkit [98139] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r96765.

1:52 PM Changeset in webkit [98138] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[WK2] WebFrameLoaderClient::shouldFallback() should use a port-specific implementation
https://bugs.webkit.org/show_bug.cgi?id=70055

Patch by Jesus Sanchez-Palencia <jesus.palencia@openbossa.org> on 2011-10-21
Reviewed by Luiz Agostini.

In QtWebKit 1, our FrameLoaderClient::shouldFallback was checking for InterruptedForPolicyChange
error. In WebKit2, we are relying on the common implementation for WebFrameLoaderClient::shouldFallback
which doesn't check for the same error. Here we add this check only for Qt.

  • WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:

(WebKit::WebFrameLoaderClient::shouldFallBack):

1:51 PM Changeset in webkit [98137] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening, yet another flaky crashing test.

  • platform/chromium/test_expectations.txt:
1:50 PM Changeset in webkit [98136] by Lucas Forschler
  • 2 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r96555.

1:48 PM Changeset in webkit [98135] by Lucas Forschler
  • 6 edits
    3 copies in branches/safari-534.52-branch

Merged r95226.

1:37 PM Changeset in webkit [98134] by jchaffraix@webkit.org
  • 2 edits
    7 adds
    4 deletes in trunk/LayoutTests

Gardening rebaselines.

  • platform/chromium-linux-x86/fast/multicol/vertical-lr: Removed.
  • platform/chromium-linux-x86/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Removed.
  • platform/chromium-linux-x86/fast/multicol/vertical-rl: Removed.
  • platform/chromium-linux-x86/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Removed.
  • platform/chromium-linux/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Removed.
  • platform/chromium-linux/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Removed.
  • platform/chromium-win/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Added.
  • platform/chromium-win/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Added.
  • platform/chromium/fast/multicol: Added.
  • platform/chromium/fast/multicol/vertical-lr: Added.
  • platform/chromium/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Added.
  • platform/chromium/fast/multicol/vertical-rl: Added.
  • platform/chromium/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Added.
  • platform/chromium/test_expectations.txt:

The dumps are weird on SL so we don't land them but mark the test as PASS TEXT.

1:02 PM Changeset in webkit [98133] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening.

  • platform/chromium/test_expectations.txt: This test is flaky and crashing

sometimes on snow-leopard.

1:00 PM Changeset in webkit [98132] by Lucas Forschler
  • 8 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r94454.

12:58 PM Changeset in webkit [98131] by Lucas Forschler
  • 4 edits in branches/safari-534.52-branch/Source

Merged r94371.

12:56 PM Changeset in webkit [98130] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Fix r98125 by having duplicate entries for Win Debug.

  • platform/chromium/test_expectations.txt:
12:56 PM Changeset in webkit [98129] by Lucas Forschler
  • 5 edits in branches/safari-534.52-branch/Source/WebKit2

Merged r94340.

12:54 PM Changeset in webkit [98128] by Lucas Forschler
  • 7 edits in branches/safari-534.52-branch/Source

Merged r94298.

12:53 PM Changeset in webkit [98127] by kerz@chromium.org
  • 1 edit in branches/chromium/912/Source/WebCore/html/HTMLKeygenElement.cpp

Hand merge of patch for bug 70617 from Gaurav Shah

12:51 PM Changeset in webkit [98126] by Lucas Forschler
  • 14 edits
    2 copies in branches/safari-534.52-branch/Source/WebKit2

Merged 94115.

12:43 PM Changeset in webkit [98125] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening.

  • platform/chromium/test_expectations.txt: The test is now also failing on debug on XP.
12:38 PM Changeset in webkit [98124] by vsevik@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Advanced search results should be cleared on navigation.
https://bugs.webkit.org/show_bug.cgi?id=70627

Reviewed by Pavel Feldman.

  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.AdvancedSearchController):
(WebInspector.AdvancedSearchController.prototype._frameNavigated):

12:36 PM Changeset in webkit [98123] by mhahnenberg@apple.com
  • 5 edits in trunk/Source/JavaScriptCore

Add finalizer to JSObject
https://bugs.webkit.org/show_bug.cgi?id=70336

Reviewed by Darin Adler.

  • heap/MarkedBlock.cpp:

(JSC::MarkedBlock::callDestructor): Skip the call to the destructor
if we're a JSFinalObject, since the finalizer takes care of things.

  • runtime/JSCell.h:

(JSC::JSCell::~JSCell): Remove the GC validation due to a conflict with
future changes and the fact that we no longer always call the destructor, making
the information provided less useful.

  • runtime/JSObject.cpp:

(JSC::JSObject::finalize): Add finalizer for JSObject.
(JSC::JSObject::allocatePropertyStorage): The first time we need to allocate out-of-line
property storage, we add a finalizer to ourself.

  • runtime/JSObject.h:
12:33 PM Changeset in webkit [98122] by jchaffraix@webkit.org
  • 2 edits in trunk/LayoutTests

Unreviewed gardening.

  • platform/chromium/test_expectations.txt: Mark call-base-resolution.html as crashing on snow-leopard.
12:19 PM Changeset in webkit [98121] by adamk@chromium.org
  • 15 edits
    4 adds in trunk

[MutationObservers] Implement WebKitMutationObserver.observe for childList changes
https://bugs.webkit.org/show_bug.cgi?id=68955

Patch by Rafael Weinstein <rafaelw@chromium.org> on 2011-10-21
Reviewed by Ryosuke Niwa.

Source/WebCore:

This patch adds a ChildListMutationScope object which manages the coalescing of
multiple child removals and additions within DOM operations into single childList
mutation records.

Note that this patch doesn't cover all the cases which can be coalesced (it only
covers ContainerNode.*, and Node.innerHTML/innerText). A separate bug,
https://bugs.webkit.org/show_bug.cgi?id=70385, has been opened to track the
remaining cases.

Test: fast/mutation/observe-childList.html

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

(WebCore::ChildListAccumulation::ChildListAccumulation::ChildListAccumulation):
(WebCore::ChildListAccumulation::ChildListAccumulation::~ChildListAccumulation):
(WebCore::ChildListAccumulation::ChildListAccumulation::childAdded):
(WebCore::ChildListAccumulation::ChildListAccumulation::willRemoveChild):
(WebCore::ChildListAccumulation::ChildListAccumulation::dispatch):
(WebCore::ChildListAccumulation::ChildListAccumulation::clear):
(WebCore::ChildListAccumulation::ChildListAccumulation::isEmpty):
(WebCore::ChildListAccumulation::ChildListAccumulator::ChildListAccumulator):
(WebCore::ChildListAccumulation::ChildListAccumulator::~ChildListAccumulator):
(WebCore::ChildListAccumulation::ChildListAccumulator::initialize):
(WebCore::ChildListAccumulation::ChildListAccumulator::instance):
(WebCore::ChildListAccumulation::ChildListAccumulator::childAdded):
(WebCore::ChildListAccumulation::ChildListAccumulator::willRemoveChild):
(WebCore::ChildListAccumulation::ChildListAccumulator::incrementScopingLevel):
(WebCore::ChildListAccumulation::ChildListAccumulator::decrementScopingLevel):
(WebCore::ChildListMutationScope::ChildListMutationScope):
(WebCore::ChildListMutationScope::~ChildListMutationScope):
(WebCore::ChildListMutationScope::childAdded):
(WebCore::ChildListMutationScope::willRemoveChild):

  • dom/ChildListMutationScope.h: Added.
  • dom/ContainerNode.cpp:

(WebCore::ContainerNode::insertBefore):
(WebCore::ContainerNode::replaceChild):
(WebCore::willRemoveChildren):
(WebCore::dispatchChildInsertionEvents):
(WebCore::dispatchChildRemovalEvents):

  • dom/Element.cpp:

(WebCore::enqueueAttributesMutationRecord):

  • dom/Node.cpp:

(WebCore::Node::setTextContent):
(WebCore::Node::registeredMutationObserversOfType):

  • dom/WebKitMutationObserver.cpp:

(WebCore::WebKitMutationObserver::disconnect):

  • html/HTMLElement.cpp:

(WebCore::replaceChildrenWithFragment):
(WebCore::replaceChildrenWithText):

LayoutTests:

  • fast/mutation/observe-attributes-expected.txt:
  • fast/mutation/observe-attributes.html:
  • fast/mutation/observe-childList-expected.txt: Added.
  • fast/mutation/observe-childList.html: Added.
11:43 AM Changeset in webkit [98120] by jchaffraix@webkit.org
  • 1 edit
    7 adds in trunk/LayoutTests

Unreviewed gardening: rebaseline 2 tests (small color difference).

  • platform/chromium-linux-x86/fast/multicol: Added.
  • platform/chromium-linux-x86/fast/multicol/vertical-lr: Added.
  • platform/chromium-linux-x86/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Added.
  • platform/chromium-linux-x86/fast/multicol/vertical-rl: Added.
  • platform/chromium-linux-x86/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Added.
  • platform/chromium-linux/fast/multicol/vertical-lr/rules-with-border-before-expected.png: Added.
  • platform/chromium-linux/fast/multicol/vertical-rl/rules-with-border-before-expected.png: Added.
11:31 AM Changeset in webkit [98119] by caryclark@google.com
  • 24 edits
    689 adds in trunk/LayoutTests

Unreviewed gardening: second chunk of baselines for Chromium-Skia
on Leopard.

[Omitting 706 of 712 files for brevity.]

  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-57-d-expected.png: Added.
  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-58-d-expected.png: Added.
  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-59-d-expected.png: Added.

...

  • platform/chromium-mac-leopard/fast/block/positioning/absolute-in-inline-rtl-expected.png: Added.
  • platform/chromium-mac-leopard/fast/block/positioning/absolute-in-inline-short-ltr-expected.png: Added.
  • platform/chromium-mac-leopard/fast/block/positioning/absolute-in-inline-short-rtl-expected.png: Added.
11:20 AM Changeset in webkit [98118] by jeffm@apple.com
  • 3 edits in trunk/WebKitLibraries

Focus rings are too thin in HiDPI in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=70396

Rename wkSetPatternBaseCTM() to wkSetBaseCTM().

Reviewed by Beth Dakin.

  • win/include/WebKitSystemInterface/WebKitSystemInterface.h:
  • win/lib/WebKitSystemInterface.lib:
11:13 AM Changeset in webkit [98117] by commit-queue@webkit.org
  • 9 edits
    2 deletes in trunk

Unreviewed, rolling out r98079.
http://trac.webkit.org/changeset/98079
https://bugs.webkit.org/show_bug.cgi?id=70624

The extensions tests enabled are failing on the Chromium Win
Dbg bot (Requested by jchaffraix on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-21

Source/WebCore:

  • inspector/front-end/ExtensionAPI.js:

(buildExtensionAPIInjectedScript):

LayoutTests:

  • http/tests/inspector/extensions-headers.html:
  • http/tests/inspector/resources/extension-main.js:

():

  • inspector/extensions/extensions-audits.html:
  • inspector/extensions/extensions-console.html:
  • inspector/extensions/extensions-resources.html:
  • platform/chromium/inspector/extensions/extensions-api-expected.txt: Removed.
  • platform/chromium/inspector/extensions/extensions-eval-expected.txt: Removed.
  • platform/chromium/test_expectations.txt:
11:12 AM Changeset in webkit [98116] by vsevik@chromium.org
  • 24 edits in branches/chromium/912

Merge 97851 - Web Inspector: Enable caseSensitive search / Regex support in advanced search.
https://bugs.webkit.org/show_bug.cgi?id=70335

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/ContentSearchUtils.cpp:

(WebCore::ContentSearchUtils::createSearchRegex):
(WebCore::ContentSearchUtils::searchInTextByLines):

  • inspector/ContentSearchUtils.h:
  • inspector/Inspector.json:
  • inspector/InspectorDebuggerAgent.cpp:

(WebCore::InspectorDebuggerAgent::searchInContent):

  • inspector/InspectorDebuggerAgent.h:
  • inspector/InspectorPageAgent.cpp:

(WebCore::InspectorPageAgent::searchInResource):

  • inspector/InspectorPageAgent.h:
  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.SearchView):
(WebInspector.SearchView.prototype.get searchConfig):
(WebInspector.FileBasedSearchResultsPane.prototype._createSearchRegex):
(WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult):
(WebInspector.FileBasedSearchResultsPane.SearchResult):

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.performSearch):

  • inspector/front-end/ContentProviders.js:

(WebInspector.ScriptContentProvider.prototype.searchInContent):
(WebInspector.ConcatenatedScriptsContentProvider.prototype.searchInContent.searchCallback):
(WebInspector.ConcatenatedScriptsContentProvider.prototype.searchInContent):
(WebInspector.ResourceContentProvider.prototype.searchInContent):
(WebInspector.CompilerSourceMappingContentProvider.prototype.searchInContent):
(WebInspector.StaticContentProvider.prototype.searchInContent):

  • inspector/front-end/ElementsTreeOutline.js:

():

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype.performSearch):

  • inspector/front-end/Resource.js:

(WebInspector.Resource.prototype.searchInContent):

  • inspector/front-end/Script.js:

(WebInspector.Script.prototype.searchInContent):

  • inspector/front-end/ScriptsSearchScope.js:

(WebInspector.ScriptsSearchScope.prototype.performSearch.searchCallbackWrapper):
(WebInspector.ScriptsSearchScope.prototype.performSearch):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.createSearchRegex):

  • inspector/front-end/UISourceCode.js:

(WebInspector.UISourceCode.prototype.searchInContent):
(WebInspector.ContentProvider.prototype.searchInContent):

  • inspector/front-end/inspector.css:

(.search-view .search-panel input[type="search"].search-config-search):
(.search-view .search-panel label.search-config-label):
(.search-view .search-panel input[type="checkbox"].search-config-checkbox):

  • inspector/front-end/utilities.js:

():

LayoutTests:

  • http/tests/inspector/search/search-in-concatenated-script.html:
  • http/tests/inspector/search/search-in-resource-expected.txt:
  • http/tests/inspector/search/search-in-resource.html:
  • http/tests/inspector/search/search-in-script-expected.txt:
  • http/tests/inspector/search/search-in-script.html:

BUG=101007
TBR=vsevik@chromium.org
Review URL: http://codereview.chromium.org/8371003

11:03 AM Changeset in webkit [98115] by mitz@apple.com
  • 3 edits
    6 adds in trunk

Column rules positioned incorrectly in vertical-rl block with horizontal border or padding
https://bugs.webkit.org/show_bug.cgi?id=70622

Reviewed by Beth Dakin.

Source/WebCore:

Tests: fast/multicol/vertical-lr/rules-with-border-before.html

fast/multicol/vertical-rl/rules-with-border-before.html

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::paintColumnRules): Changed to use the physical left border and padding for the
left edge of the horizontal column rule.

LayoutTests:

  • fast/multicol/vertical-lr/rules-with-border-before-expected.png: Added.
  • fast/multicol/vertical-lr/rules-with-border-before-expected.txt: Added.
  • fast/multicol/vertical-lr/rules-with-border-before.html: Added.
  • fast/multicol/vertical-rl/rules-with-border-before-expected.png: Added.
  • fast/multicol/vertical-rl/rules-with-border-before-expected.txt: Added.
  • fast/multicol/vertical-rl/rules-with-border-before.html: Added.
10:55 AM Changeset in webkit [98114] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/qt

[Qt] WebKit build does not respect QMAKE_MAC_SDK variable.
https://bugs.webkit.org/show_bug.cgi?id=70596

Instead of only relying on DARWIN_MAJOR_VERSION we also
check QMAKE_MAC_SDK. In case QMAKE_MAC_SDK is not defined
we are still falling back to DARWIN_MAJOR_VERSION.

Patch by Andy Shaw <andy.shaw@digia.com>

Patch by Zeno Albisser <zeno.albisser@nokia.com> on 2011-10-21
Reviewed by Noam Rosenthal.

10:46 AM Changeset in webkit [98113] by andersca@apple.com
  • 7 edits in trunk/Source/WebKit2

Flash of white when loading a page after a web process crash
https://bugs.webkit.org/show_bug.cgi?id=70615
<rdar://problem/10306906>

Reviewed by Darin Adler.

  • UIProcess/API/mac/WKView.mm:

(-[WKView _processDidCrash]):
(-[WKView _didRelaunchProcess]):
Remove calls to setNeedsDisplay here.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::processDidCrash):
Call setNeedsDisplay, but only if calling out to the loader client didn't relaunch the web process.

  • WebProcess/WebPage/DrawingArea.h:

(WebKit::DrawingArea::setPaintingEnabled):

  • WebProcess/WebPage/DrawingAreaImpl.cpp:

(WebKit::DrawingAreaImpl::DrawingAreaImpl):
(WebKit::DrawingAreaImpl::setNeedsDisplay):
(WebKit::DrawingAreaImpl::scroll):
(WebKit::DrawingAreaImpl::setPaintingEnabled):

  • WebProcess/WebPage/DrawingAreaImpl.h:

Add a way to disable painting completely for a drawing area.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::WebPage):
Disable painting while setting up the web page, otherwise we'll get paint requests when we set the
active state of the web page.

10:41 AM Changeset in webkit [98112] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

Fix Windows build.

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::hasAnyAdditionalCompositedLayers):

10:39 AM Changeset in webkit [98111] by commit-queue@webkit.org
  • 3 edits
    3 adds
    3 deletes in trunk/LayoutTests

re-enable layout tests against chromium-mac-snowleopard (Skia) baselines
https://bugs.webkit.org/show_bug.cgi?id=70612

Patch by Elliot Poger <epoger@google.com> on 2011-10-21
Reviewed by Adam Barth.

  • platform/chromium-mac-snowleopard/fast/dom/call-a-constructor-as-a-function-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/error-to-string-stack-overflow-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/parser/entity-end-script-tag-expected.txt: Removed.
  • platform/chromium-mac/fast/multicol/flipped-blocks-border-after-expected.png: Added.
  • platform/chromium-mac/fast/multicol/flipped-blocks-border-after-expected.txt: Added.
  • platform/chromium-mac/fast/multicol/vertical-rl/rule-style-expected.png: Added.
  • platform/chromium-mac/fast/repaint/continuation-after-outline-expected.png:
  • platform/chromium/test_expectations.txt:
10:39 AM Changeset in webkit [98110] by vsevik@chromium.org
  • 1 edit in branches/chromium/912/Source/WebCore/inspector/front-end/ScriptsPanel.js

Merge 97777 - Web Inspector: ScriptsPanel's should use similar logic to decide whether it could show an anchor location and actually showing it.
https://bugs.webkit.org/show_bug.cgi?id=70322

Reviewed by Pavel Feldman.

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype.canShowAnchorLocation):
(WebInspector.ScriptsPanel.prototype._showSourceLine):

BUG=101006
TBR=vsevik@chromium.org
Review URL: http://codereview.chromium.org/8373002

10:32 AM Changeset in webkit [98109] by gyuyoung.kim@samsung.com
  • 13 edits in trunk/Source/WebKit/efl

[EFL] Change efl style local variables with WebKit coding Style.
https://bugs.webkit.org/show_bug.cgi?id=69988

Reviewed by Antonio Gomes.

In common with Bug 69073, this is a third step in order to be more compliant with WebKit coding style.
We have used one-letter| two-letter local variable according to efl style. However, it's
more difficult for other reviewers to review EFL patches. So, this patch changes efl style
local variable with meaningful one.

  • Use *menu* instead of *o* in comment of ewk_contextmenu.cpp.
  • Use *list* instead of *l* local variable
  • Use *ewkPolicy* instead of *ewk_policy* in ewk_cookies.cpp
  • Use *smartData* instead of *sd* local variable for Ewk_XXXX_Smart_Data struct.
  • Use *width*, *height* instead of *w*, *h* local variables.
  • Use *scrollX*, *scrollY*, *scrollWidth*, *scrollHeight*, *centerX*, *centerY*, *deltaX*, *deltaY*,

*baseX*, *baseY* instead of *sx*, *sy*, *sw*, *sh*, *cx*, *cy*, *dx*, *dy*, *bx*, *by*.

  • Use *red*, *green*, *blue*, *alpha*, *contentRed*, *contentGreen*, *contentBlue* and *contentAlpha*

instead of *r*,*g*,*b*,*a*,*cr*,*cg*,*cb*,*ca*.

  • Use *tilePositionX*, *tilePositionY* instead of *ox*,*oy* in tiled backingstore files.
  • Use *object* instead of *obj*
  • Use *length* instead of *len*
  • Use *coreFrame* instead of *cf*
  • Use *buffer* instead of *buf*
  • Use *item* instead of *i*
  • Use *currentColumn*, *currentRow* instead of *m_col*, *m_row*
  • Remove "_" in local variable.
  • And so on.
  • ewk/ewk_auth_soup.cpp:
  • ewk/ewk_contextmenu.cpp:
  • ewk/ewk_cookies.cpp:
  • ewk/ewk_frame.cpp:
  • ewk/ewk_history.cpp:
  • ewk/ewk_js.cpp:
  • ewk/ewk_main.cpp:
  • ewk/ewk_settings.cpp:
  • ewk/ewk_tiled_backing_store.cpp:
  • ewk/ewk_tiled_matrix.cpp:
  • ewk/ewk_tiled_model.cpp:
  • ewk/ewk_view.cpp:
10:28 AM Changeset in webkit [98108] by commit-queue@webkit.org
  • 5 edits
    2 adds in trunk

[Gtk] mousemove event always has metaKey == true
https://bugs.webkit.org/show_bug.cgi?id=35299

Patch by Devdatta Deshpande <pwjd73@motorola.com> on 2011-10-21
Reviewed by Martin Robinson.

Source/WebCore:

GDK_MOD2_MASK doesn't always mean meta so we can't use it to identify
the meta key state. Use GDK_META_MASK instead.

Test: platform/gtk/fast/events/event-sender-metakey.html

  • platform/gtk/PlatformMouseEventGtk.cpp:

(WebCore::PlatformMouseEvent::PlatformMouseEvent):

Tools:

  • DumpRenderTree/gtk/EventSender.cpp:

(gdkModifierFromJSValue): GDK_META_MASK is used to represent metaKey for platform GTK mouse and
keyboard events. So making it in sync with WebCore files.
(mouseMoveToCallback): Sending modifier keys state for mouse move event.

LayoutTests:

For testing state of metaKey for mouse and keyboard events generated
using evnetSender object.

  • platform/gtk/fast/events/event-sender-metakey-expected.txt: Added.
  • platform/gtk/fast/events/event-sender-metakey.html: Added.
10:06 AM Changeset in webkit [98107] by vsevik@chromium.org
  • 1 edit
    2 copies in branches/chromium/912

Merge 97702 - Web Inspector: Search in resource crashes when there is no resource with given url.
https://bugs.webkit.org/show_bug.cgi?id=69767

Reviewed by Pavel Feldman.

Source/WebCore:

Test: http/tests/inspector/search/search-in-non-existing-resource.html

  • inspector/InspectorPageAgent.cpp:

(WebCore::InspectorPageAgent::searchInResource):

LayoutTests:

  • http/tests/inspector/search/search-in-non-existing-resource-expected.txt: Added.
  • http/tests/inspector/search/search-in-non-existing-resource.html: Added.

BUG=101005
TBR=vsevik@chromium.org
Review URL: http://codereview.chromium.org/8370003

10:04 AM Changeset in webkit [98106] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Style and Link elements' sheet() should return CSSStyleSheet.
https://bugs.webkit.org/show_bug.cgi?id=70608

Patch by Andreas Kling <kling@webkit.org> on 2011-10-21
Reviewed by Antti Koivisto.

Return a CSSStyleSheet* instead of a StyleSheet* in these functions
since we know they are always CSSStyleSheets.
Also remove some now-unnecessary isCSSStyleSheet() checks.

  • dom/StyleElement.h:

(WebCore::StyleElement::sheet):

  • html/HTMLLinkElement.cpp:
  • html/HTMLLinkElement.h:

(WebCore::HTMLLinkElement::sheet):

  • page/PageSerializer.cpp:

(WebCore::PageSerializer::serializeFrame):

9:58 AM Changeset in webkit [98105] by vsevik@chromium.org
  • 10 edits in trunk/Source/WebCore

Web Inspector: Advanced search is working very slowly and does not show searching progress.
https://bugs.webkit.org/show_bug.cgi?id=70611

Search implementation changed so that we do not start searching in the next file unless
the previous one was already searched. This allows to interrupt search.
Not all search matches are added on UI by default now, only first 20 for each file.
Search progress information and search stop button were added to drawer status bar.

Reviewed by Pavel Feldman.

  • English.lproj/localizedStrings.js:
  • inspector/ContentSearchUtils.cpp:

(WebCore::ContentSearchUtils::getRegularExpressionMatchesByLines):
(WebCore::ContentSearchUtils::countRegularExpressionMatches):

  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.AdvancedSearchController.prototype._onSearchResult):
(WebInspector.AdvancedSearchController.prototype._onSearchFinished):
(WebInspector.AdvancedSearchController.prototype.startSearch):
(WebInspector.AdvancedSearchController.prototype.resetSearch):
(WebInspector.AdvancedSearchController.prototype.stopSearch):
(WebInspector.SearchView):
(WebInspector.SearchView.prototype.get statusBarItems):
(WebInspector.SearchView.prototype.get counterElement):
(WebInspector.SearchView.prototype.set resultsPane):
(WebInspector.SearchView.prototype.searchStarted):
(WebInspector.SearchView.prototype._updateSearchResultsMessage):
(WebInspector.SearchView.prototype._updateSearchProgress):
(WebInspector.SearchView.prototype.resetResults):
(WebInspector.SearchView.prototype._resetCounters):
(WebInspector.SearchView.prototype.nothingFound):
(WebInspector.SearchView.prototype.addSearchResult):
(WebInspector.SearchView.prototype.searchFinished):
(WebInspector.SearchView.prototype._searchStopButtonPressed):
(WebInspector.SearchResultsPane):
(WebInspector.FileBasedSearchResultsPane):
(WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult):
(WebInspector.FileBasedSearchResultsPane.prototype._fileTreeElementExpanded):
(WebInspector.FileBasedSearchResultsPane.prototype._appendSearchMatches):
(WebInspector.FileBasedSearchResultsPane.prototype._appendShowMoreMatchesElement):
(WebInspector.FileBasedSearchResultsPane.prototype._showMoreMatchesElementSelected):
(WebInspector.FileBasedSearchResultsPane.prototype._addFileTreeElement):
(WebInspector.FileBasedSearchResultsPane.prototype._regexMatchRanges):

  • inspector/front-end/Drawer.js:

(WebInspector.Drawer.prototype.hide):

  • inspector/front-end/Images/statusbarButtonGlyphs.png:
  • inspector/front-end/ScriptsSearchScope.js:

(WebInspector.ScriptsSearchScope):
(WebInspector.ScriptsSearchScope.prototype.performSearch.filterOutContentScripts):
(WebInspector.ScriptsSearchScope.prototype.performSearch.continueSearch):
(WebInspector.ScriptsSearchScope.prototype.performSearch.searchCallbackWrapper):
(WebInspector.ScriptsSearchScope.prototype.performSearch):
(WebInspector.ScriptsSearchScope.prototype.stopSearch):

  • inspector/front-end/TimelinePanel.js:

(WebInspector.TimelinePanel.prototype._registerShortcuts):

  • inspector/front-end/inspector.css:

(#drawer-status-bar .search-status-bar-item):
(#drawer-status-bar .search-status-bar-message):
(#drawer-status-bar .search-status-bar-progress):
(#drawer-status-bar .search-status-bar-stop-button-item):
(#drawer-status-bar .search-status-bar-stop-button .glyph):
(#drawer-status-bar .search-results-status-bar-message):
(.search-view .search-results):
(#search-results-pane-file-based .search-results-outline-disclosure):
(#search-results-pane-file-based .search-result):
(#search-results-pane-file-based .search-result:hover):
(#search-results-pane-file-based .show-more-matches):
(#search-results-pane-file-based .show-more-matches:hover):
(#search-results-pane-file-based .search-match:hover):

  • inspector/front-end/utilities.js:

():

9:42 AM Changeset in webkit [98104] by zmo@google.com
  • 8 edits in trunk/Source

Implement mechanism to enable privileged webgl extensions
https://bugs.webkit.org/show_bug.cgi?id=70538

Reviewed by Darin Fisher.

Source/WebCore:

  • html/canvas/WebGLRenderingContext.cpp:

(WebCore::WebGLRenderingContext::allowPrivilegedExtensions): check page/Settings flag.

  • page/Settings.cpp: Add the flag.

(WebCore::Settings::Settings):
(WebCore::Settings::setPrivilegedWebGLExtensionsEnabled):

  • page/Settings.h: Ditto.

(WebCore::Settings::privilegedWebGLExtensionsEnabled):

Source/WebKit/chromium:

  • public/WebSettings.h: Add the flag.
  • src/WebSettingsImpl.cpp: Ditto.

(WebKit::WebSettingsImpl::setPrivilegedWebGLExtensionsEnabled):

  • src/WebSettingsImpl.h: Ditto.
8:56 AM Changeset in webkit [98103] by podivilov@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: first line in file is not highlighted.
https://bugs.webkit.org/show_bug.cgi?id=70504

Reviewed by Pavel Feldman.

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.prototype._initializeTextViewer):

8:43 AM Changeset in webkit [98102] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

Simplify CSSStyleRule::setSelectorText().
https://bugs.webkit.org/show_bug.cgi?id=70607

Reviewed by Antti Koivisto.

Remove unnecessary isCSSStyleSheet() check and redundant Document finding
logic (CSSStyleSheet::document() will return the owner node's Document just
like this code would.)

  • css/CSSStyleRule.cpp:

(WebCore::CSSStyleRule::setSelectorText):

8:15 AM Changeset in webkit [98101] by caryclark@google.com
  • 1 edit
    712 adds in trunk/LayoutTests

Unreviewed gardening: first chunk of rebaselines for Chromium-Skia
on Leopard.

[Omitting 707 of 713 files for brevity.]

  • platform/chromium-mac-leopard/css1: Added.
  • platform/chromium-mac-leopard/css1/basic: Added.
  • platform/chromium-mac-leopard/css1/basic/class_as_selector-expected.png: Added.

...

  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-54-d-expected.png: Added.
  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-55-d-expected.png: Added.
  • platform/chromium-mac-leopard/css2.1/t170602-bdr-conflct-w-56-d-expected.png: Added.
7:33 AM Changeset in webkit [98100] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, skip failing a11y test in GTK.

  • platform/gtk/Skipped: Skip accessibility/menu-list-sends-change-notification.html
7:16 AM Changeset in webkit [98099] by Philippe Normand
  • 1 edit
    3 adds in trunk/LayoutTests

Unreviewed, GTK baselines for 3 new tests.

  • platform/gtk/fast/css/clip-text-in-scaled-div-expected.txt: Added.
  • platform/gtk/fast/repaint/region-painting-via-layout-expected.txt: Added.
  • platform/gtk/fast/selectors/visited-descendant-expected.txt: Added.
6:47 AM Changeset in webkit [98098] by Carlos Garcia Campos
  • 2 edits in trunk/Tools

watchlist: Add a new entry for WebKit2 GTK+ public API
https://bugs.webkit.org/show_bug.cgi?id=70601

Reviewed by Philippe Normand.

Subscribe myself to WebKit2 GTK+ API patches. Also add a message
for patches that might include new API that points to the WebKit2
GTK+ API guidelines.

  • Scripts/webkitpy/common/config/watchlist:
6:36 AM Changeset in webkit [98097] by caryclark@google.com
  • 492 edits
    6 adds in trunk/LayoutTests

Unreviewed gardening: rebaselining to account for focus ring changes in
http://trac.webkit.org/changeset/97971

  • platform/chromium-mac-snowleopard/editing/deleting/5099303-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-3959464-fix-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-and-undo-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-block-contents-003-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-contiguous-ws-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-tab-003-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-to-select-table-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-trailing-ws-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/deleting/delete-ws-fixup-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/execCommand/5569741-expected.png:
  • platform/chromium-mac-snowleopard/editing/execCommand/insert-list-and-stitch-expected.png:
  • platform/chromium-mac-snowleopard/editing/execCommand/insertHorizontalRule-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/5418891-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/editing-empty-divs-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-004-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-005-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-br-007-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-div-025-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-02-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-paragraph-03-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-tab-003-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/insert-text-with-newlines-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-01-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-02-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/paragraph-separator-03-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/return-key-with-selection-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/return-key-with-selection-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/return-key-with-selection-003-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/typing-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/inserting/typing-around-br-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/4242293-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/8145-2-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/cut-text-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-1-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-2-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/merge-after-delete-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/merge-end-blockquote-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/paste-text-019-expected.png:
  • platform/chromium-mac-snowleopard/editing/pasteboard/smart-paste-008-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/13804-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/5234383-1-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/5234383-2-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/extend-by-word-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/move-backwords-by-word-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/move-by-character-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/move-by-line-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/move-by-word-001-expected.png:
  • platform/chromium-mac-snowleopard/editing/selection/unrendered-002-expected.png:
  • platform/chromium-mac-snowleopard/editing/spelling/spelling-expected.png:
  • platform/chromium-mac-snowleopard/editing/style/5046875-2-expected.png:
  • platform/chromium-mac-snowleopard/editing/style/block-styles-007-expected.png:
  • platform/chromium-mac/editing/deleting/4922367-expected.png:
  • platform/chromium-mac/editing/deleting/5126166-expected.png:
  • platform/chromium-mac/editing/deleting/5144139-2-expected.png:
  • platform/chromium-mac/editing/deleting/5206311-1-expected.png:
  • platform/chromium-mac/editing/deleting/5272440-expected.png:
  • platform/chromium-mac/editing/deleting/5369009-expected.png:
  • platform/chromium-mac/editing/deleting/5433862-2-expected.png:
  • platform/chromium-mac/editing/deleting/5483370-expected.png:
  • platform/chromium-mac/editing/deleting/collapse-whitespace-3587601-fix-expected.png:
  • platform/chromium-mac/editing/deleting/delete-3608445-fix-expected.png:
  • platform/chromium-mac/editing/deleting/delete-3608462-fix-expected.png:
  • platform/chromium-mac/editing/deleting/delete-3959464-fix-expected.png:
  • platform/chromium-mac/editing/deleting/delete-4083333-fix-expected.png:
  • platform/chromium-mac/editing/deleting/delete-after-span-ws-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-after-span-ws-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-after-span-ws-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-and-undo-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-004-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-005-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-006-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-007-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-008-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-009-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-010-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-paragraph-boundaries-011-expected.png:
  • platform/chromium-mac/editing/deleting/delete-at-start-or-end-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-contents-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-contents-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-contents-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-004-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-005-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-006-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-007-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-008-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-009-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-010-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-011-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-012-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-013-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-014-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-015-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-016-expected.png:
  • platform/chromium-mac/editing/deleting/delete-block-merge-contents-017-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-004-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-005-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-006-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-007-expected.png:
  • platform/chromium-mac/editing/deleting/delete-br-013-expected.png:
  • platform/chromium-mac/editing/deleting/delete-character-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-contiguous-ws-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-first-list-item-expected.png:
  • platform/chromium-mac/editing/deleting/delete-hr-expected.png:
  • platform/chromium-mac/editing/deleting/delete-image-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-image-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-image-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-image-004-expected.png:
  • platform/chromium-mac/editing/deleting/delete-leading-ws-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-line-015-expected.png:
  • platform/chromium-mac/editing/deleting/delete-line-016-expected.png:
  • platform/chromium-mac/editing/deleting/delete-line-017-expected.png:
  • platform/chromium-mac/editing/deleting/delete-line-end-ws-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-line-end-ws-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-listitem-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-listitem-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-selection-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-tab-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-tab-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-tab-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-tab-004-expected.png:
  • platform/chromium-mac/editing/deleting/delete-to-select-table-expected.png:
  • platform/chromium-mac/editing/deleting/delete-trailing-ws-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-trailing-ws-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-001-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-002-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-003-expected.png:
  • platform/chromium-mac/editing/deleting/delete-ws-fixup-004-expected.png:
  • platform/chromium-mac/editing/deleting/list-item-1-expected.png:
  • platform/chromium-mac/editing/deleting/merge-different-styles-expected.png:
  • platform/chromium-mac/editing/deleting/merge-endOfParagraph-expected.png:
  • platform/chromium-mac/editing/deleting/merge-into-empty-block-1-expected.png:
  • platform/chromium-mac/editing/deleting/merge-into-empty-block-2-expected.png:
  • platform/chromium-mac/editing/deleting/merge-no-br-expected.png:
  • platform/chromium-mac/editing/deleting/merge-unrendered-space-expected.png:
  • platform/chromium-mac/editing/deleting/merge-whitespace-pre-expected.png:
  • platform/chromium-mac/editing/deleting/non-smart-delete-expected.png:
  • platform/chromium-mac/editing/deleting/pruning-after-merge-2-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-001-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-002-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-003-expected.png:
  • platform/chromium-mac/editing/deleting/smart-delete-004-expected.png:
  • platform/chromium-mac/editing/deleting/table-cells-expected.png:
  • platform/chromium-mac/editing/deleting/type-delete-after-quote-expected.png:
  • platform/chromium-mac/editing/execCommand/4580583-1-expected.png:
  • platform/chromium-mac/editing/execCommand/4580583-2-expected.png:
  • platform/chromium-mac/editing/execCommand/4641880-1-expected.png:
  • platform/chromium-mac/editing/execCommand/4641880-2-expected.png:
  • platform/chromium-mac/editing/execCommand/4747450-expected.png:
  • platform/chromium-mac/editing/execCommand/4916402-expected.png:
  • platform/chromium-mac/editing/execCommand/4916541-expected.png:
  • platform/chromium-mac/editing/execCommand/4924441-expected.png:
  • platform/chromium-mac/editing/execCommand/5080333-1-expected.png:
  • platform/chromium-mac/editing/execCommand/5080333-2-expected.png:
  • platform/chromium-mac/editing/execCommand/5136770-expected.png:
  • platform/chromium-mac/editing/execCommand/5138441-expected.png:
  • platform/chromium-mac/editing/execCommand/5142012-1-expected.png:
  • platform/chromium-mac/editing/execCommand/5481523-expected.png:
  • platform/chromium-mac/editing/execCommand/5569741-expected.png:
  • platform/chromium-mac/editing/execCommand/create-list-with-hr-expected.png:
  • platform/chromium-mac/editing/execCommand/format-block-with-trailing-br-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-empty-root-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-list-item-expected.png:
  • platform/chromium-mac/editing/execCommand/indent-selection-expected.png:
  • platform/chromium-mac/editing/execCommand/insert-list-and-stitch-expected.png:
  • platform/chromium-mac/editing/execCommand/insertHorizontalRule-expected.png:
  • platform/chromium-mac/editing/execCommand/insertImage-expected.png:
  • platform/chromium-mac/editing/execCommand/nsresponder-indent-expected.png:
  • platform/chromium-mac/editing/execCommand/nsresponder-outdent-expected.png:
  • platform/chromium-mac/editing/execCommand/print-expected.png:
  • platform/chromium-mac/editing/execCommand/remove-list-from-range-selection-expected.png:
  • platform/chromium-mac/editing/execCommand/remove-list-item-1-expected.png:
  • platform/chromium-mac/editing/execCommand/selectAll-expected.png:
  • platform/chromium-mac/editing/inserting/4278698-expected.png:
  • platform/chromium-mac/editing/inserting/4840662-expected.png:
  • platform/chromium-mac/editing/inserting/4875189-1-expected.png:
  • platform/chromium-mac/editing/inserting/4875189-2-expected.png:
  • platform/chromium-mac/editing/inserting/4959067-expected.png:
  • platform/chromium-mac/editing/inserting/4960120-2-expected.png:
  • platform/chromium-mac/editing/inserting/5002441-expected.png:
  • platform/chromium-mac/editing/inserting/5058163-1-expected.png:
  • platform/chromium-mac/editing/inserting/5058163-2-expected.png:
  • platform/chromium-mac/editing/inserting/5156401-2-expected.png:
  • platform/chromium-mac/editing/inserting/5418891-expected.png:
  • platform/chromium-mac/editing/inserting/5510537-expected.png:
  • platform/chromium-mac/editing/inserting/5549929-2-expected.png:
  • platform/chromium-mac/editing/inserting/5549929-3-expected.png:
  • platform/chromium-mac/editing/inserting/6703873-expected.png:
  • platform/chromium-mac/editing/inserting/before-after-input-element-expected.png:
  • platform/chromium-mac/editing/inserting/break-blockquote-after-delete-expected.png:
  • platform/chromium-mac/editing/inserting/editable-inline-element-expected.png:
  • platform/chromium-mac/editing/inserting/edited-whitespace-1-expected.png:
  • platform/chromium-mac/editing/inserting/editing-empty-divs-expected.png:
  • platform/chromium-mac/editing/inserting/insert-3775316-fix-expected.png:
  • platform/chromium-mac/editing/inserting/insert-3778059-fix-expected.png:
  • platform/chromium-mac/editing/inserting/insert-3800346-fix-expected.png:
  • platform/chromium-mac/editing/inserting/insert-after-delete-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-at-end-01-expected.png:
  • platform/chromium-mac/editing/inserting/insert-at-end-02-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-004-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-005-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-006-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-007-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-008-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-009-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-at-tabspan-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-at-tabspan-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-at-tabspan-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-004-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-005-expected.png:
  • platform/chromium-mac/editing/inserting/insert-br-quoted-006-expected.png:
  • platform/chromium-mac/editing/inserting/insert-div-025-expected.png:
  • platform/chromium-mac/editing/inserting/insert-div-026-expected.png:
  • platform/chromium-mac/editing/inserting/insert-paragraph-01-expected.png:
  • platform/chromium-mac/editing/inserting/insert-paragraph-02-expected.png:
  • platform/chromium-mac/editing/inserting/insert-paragraph-03-expected.png:
  • platform/chromium-mac/editing/inserting/insert-paragraph-04-expected.png:
  • platform/chromium-mac/editing/inserting/insert-paragraph-05-expected.png:
  • platform/chromium-mac/editing/inserting/insert-space-in-empty-doc-expected.png:
  • platform/chromium-mac/editing/inserting/insert-tab-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-tab-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-tab-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-tab-004-expected.png:
  • platform/chromium-mac/editing/inserting/insert-text-at-tabspan-001-expected.png:
  • platform/chromium-mac/editing/inserting/insert-text-at-tabspan-002-expected.png:
  • platform/chromium-mac/editing/inserting/insert-text-at-tabspan-003-expected.png:
  • platform/chromium-mac/editing/inserting/insert-text-with-newlines-expected.png:
  • platform/chromium-mac/editing/inserting/line-break-expected.png:
  • platform/chromium-mac/editing/inserting/multiple-lines-selected-expected.png:
  • platform/chromium-mac/editing/inserting/paragraph-separator-01-expected.png:
  • platform/chromium-mac/editing/inserting/paragraph-separator-02-expected.png:
  • platform/chromium-mac/editing/inserting/paragraph-separator-03-expected.png:
  • platform/chromium-mac/editing/inserting/paragraph-separator-in-table-1-expected.png:
  • platform/chromium-mac/editing/inserting/paragraph-separator-in-table-2-expected.png:
  • platform/chromium-mac/editing/inserting/redo-expected.png:
  • platform/chromium-mac/editing/inserting/return-key-with-selection-001-expected.png:
  • platform/chromium-mac/editing/inserting/return-key-with-selection-002-expected.png:
  • platform/chromium-mac/editing/inserting/return-key-with-selection-003-expected.png:
  • platform/chromium-mac/editing/inserting/typing-001-expected.png:
  • platform/chromium-mac/editing/inserting/typing-002-expected.png:
  • platform/chromium-mac/editing/inserting/typing-003-expected.png:
  • platform/chromium-mac/editing/inserting/typing-around-br-001-expected.png:
  • platform/chromium-mac/editing/inserting/typing-around-image-001-expected.png:
  • platform/chromium-mac/editing/pasteboard/3976872-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-3-expected.png:
  • platform/chromium-mac/editing/pasteboard/4076267-expected.png:
  • platform/chromium-mac/editing/pasteboard/4242293-expected.png:
  • platform/chromium-mac/editing/pasteboard/4631972-expected.png:
  • platform/chromium-mac/editing/pasteboard/4641033-expected.png:
  • platform/chromium-mac/editing/pasteboard/4806874-expected.png:
  • platform/chromium-mac/editing/pasteboard/4944770-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/4944770-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/4947130-expected.png:
  • platform/chromium-mac/editing/pasteboard/5006779-expected.png:
  • platform/chromium-mac/editing/pasteboard/5032095-expected.png:
  • platform/chromium-mac/editing/pasteboard/5071074-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/5071074-expected.png:
  • platform/chromium-mac/editing/pasteboard/5075944-expected.png:
  • platform/chromium-mac/editing/pasteboard/5134759-expected.png:
  • platform/chromium-mac/editing/pasteboard/5156401-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/5247341-expected.png:
  • platform/chromium-mac/editing/pasteboard/5387578-expected.png:
  • platform/chromium-mac/editing/pasteboard/5478250-expected.png:
  • platform/chromium-mac/editing/pasteboard/5601583-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/8145-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/8145-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/8145-3-expected.png:
  • platform/chromium-mac/editing/pasteboard/bad-placeholder-expected.png:
  • platform/chromium-mac/editing/pasteboard/cut-text-001-expected.png:
  • platform/chromium-mac/editing/pasteboard/displaced-generic-placeholder-expected.png:
  • platform/chromium-mac/editing/pasteboard/displaced-placeholder-expected.png:
  • platform/chromium-mac/editing/pasteboard/drag-drop-modifies-page-expected.png:
  • platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.txt: Added.
  • platform/chromium-mac/editing/pasteboard/input-field-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-after-delete-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-after-delete-2-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-after-delete-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-end-blockquote-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-end-borders-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-start-blockquote-expected.png:
  • platform/chromium-mac/editing/pasteboard/merge-start-list-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-4035648-fix-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-4038267-fix-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-blockquote-after-blockquote-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-001-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-002-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-003-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-004-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-005-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-006-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-007-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-008-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-009-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-line-endings-010-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-match-style-001-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-match-style-002-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-text-019-expected.png:
  • platform/chromium-mac/editing/pasteboard/paste-text-at-tabspan-003-expected.png:
  • platform/chromium-mac/editing/pasteboard/pasting-object-expected.png:
  • platform/chromium-mac/editing/pasteboard/pasting-tabs-expected.png:
  • platform/chromium-mac/editing/pasteboard/quirks-mode-br-1-expected.png:
  • platform/chromium-mac/editing/pasteboard/smart-drag-drop-expected.png:
  • platform/chromium-mac/editing/pasteboard/smart-paste-007-expected.png:
  • platform/chromium-mac/editing/pasteboard/smart-paste-008-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/styled-element-markup-expected.png:
  • platform/chromium-mac/editing/pasteboard/undoable-fragment-removes-expected.png:
  • platform/chromium-mac/editing/pasteboard/unrendered-br-expected.png:
  • platform/chromium-mac/editing/selection/13804-expected.png:
  • platform/chromium-mac/editing/selection/3690703-2-expected.png:
  • platform/chromium-mac/editing/selection/3690703-expected.png:
  • platform/chromium-mac/editing/selection/3690719-expected.png:
  • platform/chromium-mac/editing/selection/4397952-expected.png:
  • platform/chromium-mac/editing/selection/4818145-expected.png:
  • platform/chromium-mac/editing/selection/4866671-expected.png:
  • platform/chromium-mac/editing/selection/4889598-expected.png:
  • platform/chromium-mac/editing/selection/4895428-2-expected.png:
  • platform/chromium-mac/editing/selection/4932260-1-expected.png:
  • platform/chromium-mac/editing/selection/4932260-2-expected.png:
  • platform/chromium-mac/editing/selection/4932260-3-expected.png:
  • platform/chromium-mac/editing/selection/4947387-expected.png:
  • platform/chromium-mac/editing/selection/5007143-2-expected.png:
  • platform/chromium-mac/editing/selection/5007143-expected.png:
  • platform/chromium-mac/editing/selection/5057506-2-expected.png:
  • platform/chromium-mac/editing/selection/5057506-expected.png:
  • platform/chromium-mac/editing/selection/5076323-1-expected.png:
  • platform/chromium-mac/editing/selection/5076323-2-expected.png:
  • platform/chromium-mac/editing/selection/5076323-3-expected.png:
  • platform/chromium-mac/editing/selection/5099303-expected.png:
  • platform/chromium-mac/editing/selection/5131716-1-expected.png:
  • platform/chromium-mac/editing/selection/5131716-2-expected.png:
  • platform/chromium-mac/editing/selection/5131716-3-expected.png:
  • platform/chromium-mac/editing/selection/5131716-4-expected.png:
  • platform/chromium-mac/editing/selection/5195166-2-expected.png:
  • platform/chromium-mac/editing/selection/5234383-1-expected.png:
  • platform/chromium-mac/editing/selection/5234383-2-expected.png:
  • platform/chromium-mac/editing/selection/6476-expected.png:
  • platform/chromium-mac/editing/selection/after-line-wrap-expected.png:
  • platform/chromium-mac/editing/selection/caret-before-select-expected.png:
  • platform/chromium-mac/editing/selection/caret-ltr-2-expected.png:
  • platform/chromium-mac/editing/selection/caret-ltr-2-left-expected.png:
  • platform/chromium-mac/editing/selection/caret-ltr-expected.png:
  • platform/chromium-mac/editing/selection/caret-ltr-right-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-2-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-2-left-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-expected.png:
  • platform/chromium-mac/editing/selection/caret-rtl-right-expected.png:
  • platform/chromium-mac/editing/selection/click-start-of-line-expected.png:
  • platform/chromium-mac/editing/selection/contains-boundaries-expected.png:
  • platform/chromium-mac/editing/selection/contenteditable-click-inside-expected.png:
  • platform/chromium-mac/editing/selection/drag-select-1-expected.png:
  • platform/chromium-mac/editing/selection/editable-non-editable-crash-expected.png:
  • platform/chromium-mac/editing/selection/end-of-document-expected.png:
  • platform/chromium-mac/editing/selection/expanding-selections-expected.png:
  • platform/chromium-mac/editing/selection/expanding-selections2-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-001-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-002-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-003-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-004-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-005-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-character-006-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-sentence-001-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-word-001-expected.png:
  • platform/chromium-mac/editing/selection/extend-by-word-002-expected.png:
  • platform/chromium-mac/editing/selection/extend-selection-bidi-expected.png:
  • platform/chromium-mac/editing/selection/fake-doubleclick-expected.png:
  • platform/chromium-mac/editing/selection/iframe-expected.png:
  • platform/chromium-mac/editing/selection/image-before-linebreak-expected.png:
  • platform/chromium-mac/editing/selection/inline-table-expected.png:
  • platform/chromium-mac/editing/selection/leave-requested-block-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-3-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-4-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-5-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-6-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-7-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-8-expected.png:
  • platform/chromium-mac/editing/selection/mixed-editability-9-expected.png:
  • platform/chromium-mac/editing/selection/move-backwords-by-word-001-expected.png:
  • platform/chromium-mac/editing/selection/move-between-blocks-no-001-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-001-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-002-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-003-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-004-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-005-expected.png:
  • platform/chromium-mac/editing/selection/move-by-character-6-expected.png:
  • platform/chromium-mac/editing/selection/move-by-line-001-expected.png:
  • platform/chromium-mac/editing/selection/move-by-line-002-expected.png:
  • platform/chromium-mac/editing/selection/move-by-sentence-001-expected.png:
  • platform/chromium-mac/editing/selection/move-by-sentence-linebreak-expected.png:
  • platform/chromium-mac/editing/selection/move-by-word-001-expected.png:
  • platform/chromium-mac/editing/selection/move-past-trailing-space-expected.png:
  • platform/chromium-mac/editing/selection/previous-line-position-expected.png:
  • platform/chromium-mac/editing/selection/replace-selection-1-expected.png:
  • platform/chromium-mac/editing/selection/replaced-boundaries-1-expected.png:
  • platform/chromium-mac/editing/selection/replaced-boundaries-2-expected.png:
  • platform/chromium-mac/editing/selection/replaced-boundaries-3-expected.png:
  • platform/chromium-mac/editing/selection/select-all-001-expected.png:
  • platform/chromium-mac/editing/selection/select-all-002-expected.png:
  • platform/chromium-mac/editing/selection/select-box-expected.png:
  • platform/chromium-mac/editing/selection/select-element-paragraph-boundary-expected.png:
  • platform/chromium-mac/editing/selection/select-missing-image-expected.png:
  • platform/chromium-mac/editing/selection/selection-3748164-fix-expected.png:
  • platform/chromium-mac/editing/selection/table-caret-1-expected.png:
  • platform/chromium-mac/editing/selection/table-caret-2-expected.png:
  • platform/chromium-mac/editing/selection/table-caret-3-expected.png:
  • platform/chromium-mac/editing/selection/triple-click-in-pre-expected.png:
  • platform/chromium-mac/editing/selection/unrendered-001-expected.png:
  • platform/chromium-mac/editing/selection/unrendered-002-expected.png: Added.
  • platform/chromium-mac/editing/selection/unrendered-003-expected.png:
  • platform/chromium-mac/editing/selection/unrendered-004-expected.png:
  • platform/chromium-mac/editing/selection/unrendered-005-expected.png:
  • platform/chromium-mac/editing/selection/unrendered-space-expected.png:
  • platform/chromium-mac/editing/selection/wrapped-line-caret-1-expected.png:
  • platform/chromium-mac/editing/selection/wrapped-line-caret-2-expected.png:
  • platform/chromium-mac/editing/spelling/spelling-expected.png:
  • platform/chromium-mac/editing/style/4916887-expected.png:
  • platform/chromium-mac/editing/style/5017613-1-expected.png:
  • platform/chromium-mac/editing/style/5017613-2-expected.png:
  • platform/chromium-mac/editing/style/5046875-1-expected.png:
  • platform/chromium-mac/editing/style/5046875-2-expected.png: Added.
  • platform/chromium-mac/editing/style/5065910-expected.png:
  • platform/chromium-mac/editing/style/5084241-expected.png:
  • platform/chromium-mac/editing/style/5228141-expected.png:
  • platform/chromium-mac/editing/style/5279521-expected.png:
  • platform/chromium-mac/editing/style/block-styles-007-expected.png:
  • platform/chromium-mac/editing/style/highlight-expected.png:
  • platform/chromium-mac/editing/style/smoosh-styles-001-expected.png:
  • platform/chromium-mac/editing/style/style-3681552-fix-001-expected.png:
  • platform/chromium-mac/editing/style/style-3681552-fix-002-expected.png:
  • platform/chromium-mac/editing/style/style-3998892-fix-expected.png:
  • platform/chromium-mac/editing/style/style-boundary-001-expected.png:
  • platform/chromium-mac/editing/style/style-boundary-002-expected.png:
  • platform/chromium-mac/editing/style/style-boundary-003-expected.png:
  • platform/chromium-mac/editing/style/style-boundary-004-expected.png:
  • platform/chromium-mac/editing/style/style-boundary-005-expected.png:
  • platform/chromium-mac/editing/style/typing-style-001-expected.png:
  • platform/chromium-mac/editing/style/typing-style-002-expected.png:
  • platform/chromium-mac/editing/style/unbold-in-bold-expected.png:
  • platform/chromium-mac/editing/undo/4063751-expected.png:
  • platform/chromium-mac/editing/undo/5378473-expected.png:
  • platform/chromium-mac/editing/undo/redo-typing-001-expected.png:
  • platform/chromium-mac/editing/undo/undo-combined-delete-boundary-expected.png:
  • platform/chromium-mac/editing/undo/undo-combined-delete-expected.png:
  • platform/chromium-mac/editing/undo/undo-delete-boundary-expected.png:
  • platform/chromium-mac/editing/undo/undo-delete-expected.png:
  • platform/chromium-mac/editing/undo/undo-forward-delete-boundary-expected.png:
  • platform/chromium-mac/editing/undo/undo-forward-delete-expected.png:
  • platform/chromium-mac/editing/undo/undo-misspellings-expected.png:
  • platform/chromium-mac/editing/undo/undo-typing-001-expected.png:
  • platform/chromium-mac/editing/unsupported-content/list-delete-001-expected.png:
  • platform/chromium-mac/editing/unsupported-content/list-delete-003-expected.png:
  • platform/chromium-mac/editing/unsupported-content/list-type-after-expected.png:
  • platform/chromium-mac/editing/unsupported-content/list-type-before-expected.png:
  • platform/chromium-mac/editing/unsupported-content/table-delete-001-expected.png:
  • platform/chromium-mac/editing/unsupported-content/table-delete-002-expected.png:
  • platform/chromium-mac/editing/unsupported-content/table-delete-003-expected.png:
  • platform/chromium-mac/editing/unsupported-content/table-type-after-expected.png:
  • platform/chromium-mac/editing/unsupported-content/table-type-before-expected.png:
  • platform/chromium-mac/fast/css/focus-ring-outline-color-expected.png:
  • platform/chromium-mac/fast/css/focus-ring-outline-offset-expected.png:
  • platform/chromium-mac/fast/css/focus-ring-outline-width-expected.png:
  • platform/chromium-mac/fast/css/outline-auto-location-expected.png:
  • platform/chromium-mac/fast/dom/focus-contenteditable-expected.png:
  • platform/chromium-mac/fast/inline/25277-2-expected.png:
  • platform/chromium-mac/fast/inline/25277-expected.png:
  • platform/chromium-mac/fast/inline/continuation-outlines-expected.png:
  • platform/chromium-mac/fast/inline/continuation-outlines-with-layers-2-expected.png:
  • platform/chromium-mac/fast/inline/continuation-outlines-with-layers-expected.png:
  • platform/chromium-mac/fast/inline/inline-focus-ring-expected.png:
  • platform/chromium-mac/fast/overflow/overflow-focus-ring-expected.png:
  • platform/chromium-mac/fast/repaint/focus-layers-expected.png:
  • platform/chromium-mac/fast/repaint/focus-ring-expected.png:
  • platform/chromium-mac/fast/text/delete-hard-break-character-expected.png:
  • platform/chromium-mac/fast/text/international/rtl-caret-expected.png:
  • platform/chromium-mac/fast/transforms/transformed-caret-expected.png:
  • platform/chromium-mac/svg/custom/focus-ring-expected.png:
  • platform/chromium/test_expectations.txt:
5:43 AM Changeset in webkit [98096] by alex
  • 2 edits in trunk/Source/WebCore

2011-10-21 Alejandro G. Castro <alex@igalia.com>

[cairo] Forward declaration of GraphicsContextState uses class instead of struct
https://bugs.webkit.org/show_bug.cgi?id=70522

The type is a struct not a class, replace the definition in the
forward declaration.

Reviewed by Martin Robinson.

  • platform/graphics/cairo/PlatformContextCairo.h:
5:39 AM Changeset in webkit [98095] by yurys@chromium.org
  • 6 edits in trunk/Source/WebKit/chromium

[Chromium] Web Inspector: remove debugger support for out-of-process dedicated workers
https://bugs.webkit.org/show_bug.cgi?id=70602

Now that Chromium uses in-process dedicated workers, remove support for out-of-process
dedicated workers debugger.

Reviewed by Pavel Feldman.

  • public/WebWorker.h:
  • src/WebWorkerClientImpl.cpp:

(WebKit::WebWorkerClientImpl::connectToInspector):
(WebKit::WebWorkerClientImpl::disconnectFromInspector):
(WebKit::WebWorkerClientImpl::WebWorkerClientImpl):

  • src/WebWorkerClientImpl.h:
  • src/WebWorkerImpl.cpp:
  • src/WebWorkerImpl.h:
5:02 AM Changeset in webkit [98094] by zoltan@webkit.org
  • 2 edits in trunk/LayoutTests

[Qt] fast/events/touch/page-scaled-touch-gesture-click.html is failing
https://bugs.webkit.org/show_bug.cgi?id=70593

It was introduced in r97988. Skip it.

  • platform/qt/Skipped:
4:02 AM WebKitGTK/AddingNewWebKit2API edited by Carlos Garcia Campos
Add comments about new public headers (diff)
3:56 AM WebKitGTK/AddingNewWebKit2API edited by Carlos Garcia Campos
Add comment about includes (diff)
3:46 AM WebKitGTK/AddingNewWebKit2API edited by Carlos Garcia Campos
Add point about C API (diff)
3:37 AM BuildingQt5OnHarmattan edited by Simon Hausmann
(diff)
3:28 AM HackingGtk edited by Carlos Garcia Campos
Add link to WebKit2 new API guidelines (diff)
3:26 AM Changeset in webkit [98093] by Simon Hausmann
  • 7 edits
    47 deletes in trunk

Remove QtScript source code from WebKit.
https://bugs.webkit.org/show_bug.cgi?id=64088

Reviewed by Tor Arne Vestbø.

Removed dead code that isn't developed anymore.

.:

  • Source/WebKit.pro:

Source/JavaScriptCore:

  • JavaScriptCore.gypi:
  • JavaScriptCore.pri:
  • qt/api/QtScript.pro: Removed.
  • qt/api/qscriptconverter_p.h: Removed.
  • qt/api/qscriptengine.cpp: Removed.
  • qt/api/qscriptengine.h: Removed.
  • qt/api/qscriptengine_p.cpp: Removed.
  • qt/api/qscriptengine_p.h: Removed.
  • qt/api/qscriptfunction.cpp: Removed.
  • qt/api/qscriptfunction_p.h: Removed.
  • qt/api/qscriptoriginalglobalobject_p.h: Removed.
  • qt/api/qscriptprogram.cpp: Removed.
  • qt/api/qscriptprogram.h: Removed.
  • qt/api/qscriptprogram_p.h: Removed.
  • qt/api/qscriptstring.cpp: Removed.
  • qt/api/qscriptstring.h: Removed.
  • qt/api/qscriptstring_p.h: Removed.
  • qt/api/qscriptsyntaxcheckresult.cpp: Removed.
  • qt/api/qscriptsyntaxcheckresult.h: Removed.
  • qt/api/qscriptsyntaxcheckresult_p.h: Removed.
  • qt/api/qscriptvalue.cpp: Removed.
  • qt/api/qscriptvalue.h: Removed.
  • qt/api/qscriptvalue_p.h: Removed.
  • qt/api/qscriptvalueiterator.cpp: Removed.
  • qt/api/qscriptvalueiterator.h: Removed.
  • qt/api/qscriptvalueiterator_p.h: Removed.
  • qt/api/qtscriptglobal.h: Removed.
  • qt/benchmarks/benchmarks.pri: Removed.
  • qt/benchmarks/benchmarks.pro: Removed.
  • qt/benchmarks/qscriptengine/qscriptengine.pro: Removed.
  • qt/benchmarks/qscriptengine/tst_qscriptengine.cpp: Removed.
  • qt/benchmarks/qscriptvalue/qscriptvalue.pro: Removed.
  • qt/benchmarks/qscriptvalue/tst_qscriptvalue.cpp: Removed.
  • qt/tests/qscriptengine/qscriptengine.pro: Removed.
  • qt/tests/qscriptengine/tst_qscriptengine.cpp: Removed.
  • qt/tests/qscriptstring/qscriptstring.pro: Removed.
  • qt/tests/qscriptstring/tst_qscriptstring.cpp: Removed.
  • qt/tests/qscriptvalue/qscriptvalue.pro: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue.cpp: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue.h: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_comparison.cpp: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_init.cpp: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_istype.cpp: Removed.
  • qt/tests/qscriptvalue/tst_qscriptvalue_generated_totype.cpp: Removed.
  • qt/tests/qscriptvalueiterator/qscriptvalueiterator.pro: Removed.
  • qt/tests/qscriptvalueiterator/tst_qscriptvalueiterator.cpp: Removed.
  • qt/tests/tests.pri: Removed.
  • qt/tests/tests.pro: Removed.

Tools:

  • Scripts/webkitpy/style/checker_unittest.py:
3:05 AM WebKitGTK/AddingNewWebKit2API created by Carlos Garcia Campos
Initial guidelines for adding new API to WebKit2 GTK+
2:15 AM Changeset in webkit [98092] by Csaba Osztrogonác
  • 2 edits in trunk/Source/WebKit/qt

[Qt][WK2] Typo fix.

  • tests/util.h:
2:11 AM Changeset in webkit [98091] by commit-queue@webkit.org
  • 2 edits
    3 adds in trunk

bytecompiler sometimes generates incorrect bytecode for put_by_id
https://bugs.webkit.org/show_bug.cgi?id=70403

Patch by Zheng Liu <zheng.z.liu@intel.com> on 2011-10-21
Reviewed by Filip Pizlo.

  • bytecompiler/NodesCodegen.cpp:

(JSC::AssignDotNode::emitBytecode):
(JSC::AssignBracketNode::emitBytecode):

2:08 AM Changeset in webkit [98090] by Csaba Osztrogonác
  • 4 edits in trunk/Source

[Qt][WK2] Buildfix for newer Qt5. Remove duplicated defines.

Reviewed by Simon Hausmann.

Source/WebKit/qt:

  • tests/util.h:

Source/WebKit2:

  • UIProcess/API/qt/tests/util.h:
2:00 AM Changeset in webkit [98089] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

2011-10-21 Carlos Garcia Campos <cgarcia@igalia.com>

Unreviewed. Fix WebKit2 GTK+ build after r98081.

  • UIProcess/API/gtk/WebKitWebView.h:
1:55 AM Changeset in webkit [98088] by commit-queue@webkit.org
  • 4 edits in trunk/Source

Unreviewed, rolling out r98085.
http://trac.webkit.org/changeset/98085
https://bugs.webkit.org/show_bug.cgi?id=70589

It broke the build (Requested by Ossy on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-21

Source/WebKit/qt:

  • tests/util.h:

Source/WebKit2:

  • UIProcess/API/qt/tests/util.h:
1:49 AM Changeset in webkit [98087] by caseq@chromium.org
  • 2 edits in trunk/LayoutTests

[Qt] 2 inspector/extensions tests times out on Mac and linux after r97850
https://bugs.webkit.org/show_bug.cgi?id=70414

Unreviewed. Skipped inspector/extensions/extensions-{events,network}.html

  • platform/qt/Skipped:
1:44 AM Changeset in webkit [98086] by Carlos Garcia Campos
  • 2 edits in trunk/Source/WebKit2

[GTK] Fix API documentation comment for webkit_web_view_get_estimated_load_progress()
https://bugs.webkit.org/show_bug.cgi?id=70587

Reviewed by Philippe Normand.

It's should start with / to be recognized as API documentation.

  • UIProcess/API/gtk/WebKitWebView.cpp:
1:44 AM QtWebKitBuildBots edited by Csaba Osztrogonác
Update Qt5 on the WK2 bot (diff)
1:40 AM Changeset in webkit [98085] by Csaba Osztrogonác
  • 4 edits in trunk/Source

[Qt][WK2] Unreviewed buildfix for newer Qt5. Remove duplicated defines.

Source/WebKit/qt:

  • tests/util.h:

(waitForSignal):

Source/WebKit2:

  • UIProcess/API/qt/tests/util.h:
1:32 AM Changeset in webkit [98084] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/efl

[EFL] ewk_view_mode_get uses dedicated macros instead of standard NULL checking.
https://bugs.webkit.org/show_bug.cgi?id=65680

Patch by Grzegorz Czajkowski <g.czajkowski@samsung.com> on 2011-10-21
Reviewed by Ryosuke Niwa.

Generally API methods using macros NULL checking in WebKit-EFL.
The macros ensure that code is smaller, version of view object
is checked and error message is displayed if NULL is passed.

  • ewk/ewk_view.cpp:

(ewk_view_mode_get):

1:24 AM Changeset in webkit [98083] by tkent@chromium.org
  • 1 edit
    6 adds in trunk/LayoutTests

Add tests to check behavior of border attribute with a large number or an invalid value.
https://bugs.webkit.org/show_bug.cgi?id=69055

Reviewed by Daniel Bates.

r96290 changed the behavior of integer parsing so that large
number strings which can not be represented in 32 bit integers
makes an error. However, border attribute behavior wasn't changed
by r96290 because its default value is 0 and
parseHTMLNonNegativeInteger() had set 0 in a case of overflow.

  • fast/dom/HTMLImageElement/image-with-invalid-border-expected.html: Added.
  • fast/dom/HTMLImageElement/image-with-invalid-border.html: Added.
  • fast/dom/HTMLInputElement/input-with-invalid-border-expected.html: Added.
  • fast/dom/HTMLInputElement/input-with-invalid-border.html: Added.
  • fast/dom/HTMLObjectElement/object-with-invalid-border-expected.html: Added.
  • fast/dom/HTMLObjectElement/object-with-invalid-border.html: Added.
1:19 AM Changeset in webkit [98082] by fpizlo@apple.com
  • 8 edits in trunk/Source/JavaScriptCore

DFG should not try to predict argument types by looking at the values of
argument registers at the time of compilation
https://bugs.webkit.org/show_bug.cgi?id=70578

Reviewed by Oliver Hunt.

  • bytecode/CodeBlock.cpp:
  • dfg/DFGDriver.cpp:

(JSC::DFG::compile):
(JSC::DFG::tryCompile):
(JSC::DFG::tryCompileFunction):

  • dfg/DFGDriver.h:

(JSC::DFG::tryCompileFunction):

  • dfg/DFGGraph.cpp:

(JSC::DFG::Graph::predictArgumentTypes):

  • dfg/DFGGraph.h:
  • runtime/Executable.cpp:

(JSC::FunctionExecutable::compileOptimizedForCall):
(JSC::FunctionExecutable::compileOptimizedForConstruct):
(JSC::FunctionExecutable::compileForCallInternal):
(JSC::FunctionExecutable::compileForConstructInternal):

  • runtime/Executable.h:

(JSC::FunctionExecutable::compileForCall):
(JSC::FunctionExecutable::compileForConstruct):
(JSC::FunctionExecutable::compileFor):
(JSC::FunctionExecutable::compileOptimizedFor):

1:17 AM Changeset in webkit [98081] by Carlos Garcia Campos
  • 3 edits in trunk/Source/WebKit2

[GTK] Add can_go_back/forward methods to WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=69823

Reviewed by Martin Robinson.

  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkit_web_view_go_back):
(webkit_web_view_can_go_back):
(webkit_web_view_go_forward):
(webkit_web_view_can_go_forward):

  • UIProcess/API/gtk/WebKitWebView.h:
1:09 AM Changeset in webkit [98080] by Carlos Garcia Campos
  • 5 edits in trunk/Source/WebKit2

[GTK] Add webkit_web_view_stop_loading() to WebKit2 GTK+ API
https://bugs.webkit.org/show_bug.cgi?id=69610

Reviewed by Martin Robinson.

  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkit_web_view_stop_loading):

  • UIProcess/API/gtk/WebKitWebView.h:
  • UIProcess/API/gtk/tests/LoadTrackingTest.cpp:

(provisionalLoadFailedCallback):
(loadFailedCallback):

  • UIProcess/API/gtk/tests/TestWebKitWebLoaderClient.cpp:

(LoadStopTrackingTest::loadCommitted):
(LoadStopTrackingTest::loadFailed):
(LoadStopTrackingTest::loadFinished):
(testLoadCancelled):
(serverCallback):
(beforeAll):

12:51 AM Changeset in webkit [98079] by caseq@chromium.org
  • 9 edits
    2 adds in trunk

Web Inspector: make extension tests pass on chromium
https://bugs.webkit.org/show_bug.cgi?id=70334

Reviewed by Pavel Feldman.

LayoutTests:

  • http/tests/inspector/extensions-headers.html:
  • http/tests/inspector/resources/extension-main.js:

():

  • inspector/extensions/extensions-audits.html:
  • inspector/extensions/extensions-console.html:
  • inspector/extensions/extensions-resources.html:
  • platform/chromium/inspector/extensions/extensions-api-expected.txt: Added.
  • platform/chromium/inspector/extensions/extensions-eval-expected.txt: Added.
  • platform/chromium/test_expectations.txt:
12:19 AM Changeset in webkit [98078] by Csaba Osztrogonác
  • 919 edits in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 6)

  • platform/qt/tables/: [...]
  • platform/qt/transforms/: [...]
  • platform/qt/transitions/: [...]
  • platform/qt/Skipped:
12:07 AM Changeset in webkit [98077] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expectation change: fast/canvas/webgl/WebGLContextEvent.html now passes.

Unreviewed. The test passes since http://trac.webkit.org/changeset/98044/

  • platform/chromium/test_expectations.txt:

Oct 20, 2011:

11:56 PM Changeset in webkit [98076] by abarth@webkit.org
  • 2 edits in trunk/LayoutTests

These tests are skipped so there's no need to say they TIMEOUT.

  • platform/chromium/test_expectations.txt:
11:52 PM Changeset in webkit [98075] by tkent@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

Add a test to check behavior of tabindex attribute with a large number
https://bugs.webkit.org/show_bug.cgi?id=69056

Reviewed by Daniel Bates.

r96290 changed the behavior of integer parsing so that large
number strings which can not be represented in 32 bit integers
makes an error. Before r96290, we had assumed such large numbers
are equivelent to 0. We assume them invalid values.

  • fast/dom/tabindex-defaults-expected.txt: Added.
  • fast/dom/tabindex-defaults.html: Added.
11:49 PM Changeset in webkit [98074] by eric@webkit.org
  • 2 edits in trunk/Tools

Switch webkit2 bot to NRWT
https://bugs.webkit.org/show_bug.cgi?id=56729

Reviewed by Adam Barth.

Move the WK2 bot to using NRWT instead of ORWT, as announced on webkit-dev:
https://lists.webkit.org/pipermail/webkit-dev/2011-October/018337.html

  • Scripts/run-webkit-tests:

(runningOnBuildBot):
(useNewRunWebKitTests):

11:47 PM Changeset in webkit [98073] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Update test expectation for inspector/debugger/{linkifier,script-formatter}.html

Unreviewed.

  • platform/chromium/test_expectations.txt:
11:42 PM Changeset in webkit [98072] by Csaba Osztrogonác
  • 632 edits
    2 adds in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 5)

  • platform/qt/svg/: [...]
  • platform/qt/Skipped:
11:30 PM Changeset in webkit [98071] by eric@webkit.org
  • 2 edits in trunk/Tools

NRWT is asserting on DRT due to lack of newline when processing line from DumpRenderTree
https://bugs.webkit.org/show_bug.cgi?id=70585

Reviewed by Adam Barth.

This really should be an assert, as this inidicates a programming error in either DRT or NRWT.
However since DRT was functioning fine before in Qt, we'll make this an error log for now
and once we find the root cause flip this back to an assert.

  • Scripts/webkitpy/layout_tests/port/webkit.py:
11:28 PM Changeset in webkit [98070] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

Unreviewed. Rolled DEPS.

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-20

  • DEPS:
11:00 PM Changeset in webkit [98069] by loislo@chromium.org
  • 7 edits
    1 add
    2 deletes in trunk/Source/WebCore

Web Inspector: reimplement protocol backend/frontend source generator
https://bugs.webkit.org/show_bug.cgi?id=69295

Patch by Peter Rybin <peter.rybin@gmail.com> on 2011-10-20
Reviewed by Pavel Feldman.

Old 2-stage python+perf generator that uses intermediate IDL output is
being replaced with a solid python script. This is for simplicity and
as a base for the future JSON validator.

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • inspector/CodeGeneratorInspector.pm: Removed.
  • inspector/CodeGeneratorInspector.py: Added.
  • inspector/Inspector.json:
  • inspector/generate-inspector-idl: Removed.
10:48 PM Changeset in webkit [98068] by yutak@chromium.org
  • 2 edits in trunk/Tools

Unreviewed, rolling out r98064.
http://trac.webkit.org/changeset/98064
https://bugs.webkit.org/show_bug.cgi?id=64788

Broke Mac bots.

  • Scripts/webkitpy/layout_tests/servers/websocket_server.py:
10:47 PM Changeset in webkit [98067] by tkent@chromium.org
  • 2 edits
    2 copies in branches/chromium/912

Merge 97745 - REGRESSION(r97248): :visited as descendant selector broken
https://bugs.webkit.org/show_bug.cgi?id=70122

Source/WebCore:

Reviewed by Nikolas Zimmerman.

Make ":visited foo" and similar selectors work correctly again. They can affect
the visited style of an element inside a visited link.

Test: fast/selectors/visited-descendant.html

  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::applyDeclarations):

Apply visited style to children of visited links too.


  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkSelector):

Don't disable visited matching until we run into first ancestor link or use combinator other than child/descendant.

(WebCore::SelectorChecker::determineLinkMatchType):

Look into child/descendant component selectors too to determine the link match type.

LayoutTests:

Reviewed by Nikolas Zimmerman.

  • fast/selectors/visited-descendant.html: Added.
  • platform/mac/fast/selectors/visited-descendant-expected.txt: Added.

TBR=tkent@chromium.org
BUG=crbug.com/101023
Review URL: http://codereview.chromium.org/8365028

10:43 PM Changeset in webkit [98066] by abarth@webkit.org
  • 3 edits in trunk/Source/WebCore

Attemp to fix a bunch of tests PLATFORM(MAC). We can't use a static
map because that's shared between threads (and events exist in worker
threads). It migh be better to add a thread-specific map, but we can
do that in another patch.

  • bindings/js/JSEventCustom.cpp:

(WebCore::toJS):

  • bindings/v8/custom/V8EventCustom.cpp:

(WebCore::toV8):

10:14 PM Changeset in webkit [98065] by fpizlo@apple.com
  • 6 edits in trunk/Source/JavaScriptCore

DFG call optimization handling will fail if the call had been unlinked due
to the callee being optimized
https://bugs.webkit.org/show_bug.cgi?id=70468

Reviewed by Geoff Garen.

If a call had ever been linked, we remember this fact as well as the function
to which it was linked even if unlinkIncomingCalls() or unlinkCalls() are
called.

  • bytecode/CodeBlock.cpp:

(JSC::CodeBlock::visitAggregate):

  • bytecode/CodeBlock.h:
  • dfg/DFGByteCodeParser.cpp:

(JSC::DFG::ByteCodeParser::parseBlock):

  • dfg/DFGRepatch.cpp:

(JSC::DFG::dfgLinkFor):

  • jit/JIT.cpp:

(JSC::JIT::linkFor):

9:14 PM Changeset in webkit [98064] by yutak@chromium.org
  • 2 edits in trunk/Tools

WebSocket: Connecting to localhost:8880 takes one second on Windows
https://bugs.webkit.org/show_bug.cgi?id=64788

Reviewed by Dirk Pranke.

  • Scripts/webkitpy/layout_tests/servers/websocket_server.py:

Bind to "localhost" instead of "127.0.0.1" to let pywebsocket listen on both
IPv4 and IPv6 addresses. This should prevent the test reserved-opcodes.html
from timing out on Windows, because this test tries to open a lot of
connections to localhost and each attempt takes one second to fall back from
IPv6 to IPv4 on Windows (I have no idea why Windows works like this, though).

9:01 PM Changeset in webkit [98063] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

DFG JIT 32_64 - Fix ByteArray speculation
https://bugs.webkit.org/show_bug.cgi?id=70571

Patch by Yuqiang Xian <yuqiang.xian@intel.com> on 2011-10-20
Reviewed by Filip Pizlo.

  • dfg/DFGSpeculativeJIT.h:

(JSC::DFG::ValueSource::forPrediction):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

8:35 PM Changeset in webkit [98062] by rniwa@webkit.org
  • 4 edits in trunk/Tools

nrwt: newly generated results are put in cross-platform directory
https://bugs.webkit.org/show_bug.cgi?id=68931

Reviewed by Dirk Pranke.

The bug was caused by SingleTestRunner._add_missing_baselines's always calling _save_baseline_data
with generate_new_baseline set to False. Fixed the bug by always passing True when .png file is missing
(because png images are typically different on each platform), and passing True when .txt file is missing
and the actual result's first line matches the regular expression "layer at \(\d+,\d+\) size \d+x\d+".

  • Scripts/webkitpy/layout_tests/controllers/single_test_runner.py:
  • Scripts/webkitpy/layout_tests/port/test.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py: Changed the expectation

and added a test case.

8:29 PM Changeset in webkit [98061] by tkent@chromium.org
  • 2 edits in trunk/Tools

Unreviewed. Adding myself to watchlist.

  • Scripts/webkitpy/common/config/watchlist:

Add "ChromiumDumpRenderTree" and "Forms" definitions, and cc them to me.

8:02 PM Changeset in webkit [98060] by Simon Fraser
  • 5 edits
    3 adds in trunk

Hidden composited iframes cause infinite loop
https://bugs.webkit.org/show_bug.cgi?id=52655

Source/WebCore:

Reviewed by Darin Adler.

visibility:hidden is problematic for compositing, because it causes
RenderLayers to be removed from the z-order layer tree. This confuses
RenderLayerCompositor in several ways; it never sees these layers
when traversing the tree as it computes compositing requirements, or
rebuilds the layer tree.

This is a particular problem with composited iframes. When an iframe
becomes composited, scheduleSetNeedsStyleRecalc() is called on that
iframe's ownerElement in the parent document. If this happens inside
Document::updateStyleForAllDocuments(), we get into an infinite loop
because notifyIFramesOfCompositingChange() queues up style update as we
bounce in and out of compositing mode, so documentsThatNeedStyleRecalc
never empties out.

This is an initial, conservative fix that doesn't attempt to fix all
the issues with visibility. It changes RenderLayerCompositor to count
the number of compositing RenderLayers, and to not leave compositing
mode if there are any (even if they are hidden, so not hit while
traversing the z-order tree). This avoids the infinite loop.

Test: compositing/visibility/hidden-iframe.html

  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::ensureBacking):
(WebCore::RenderLayer::clearBacking):

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::RenderLayerCompositor):
(WebCore::RenderLayerCompositor::hasAnyAdditionalCompositedLayers):
(WebCore::RenderLayerCompositor::updateCompositingLayers):
(WebCore::RenderLayerCompositor::computeCompositingRequirements):

  • rendering/RenderLayerCompositor.h:

(WebCore::RenderLayerCompositor::layerBecameComposited):
(WebCore::RenderLayerCompositor::layerBecameNonComposited):

LayoutTests:

Reviewed by Darin Adler.

Test with a visibility:hidden iframe, whose subframe becomes composited.

  • compositing/visibility/hidden-iframe-expected.txt: Added.
  • compositing/visibility/hidden-iframe.html: Added.
7:37 PM Changeset in webkit [98059] by fsamuel@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[Chromium] Fixed Layout API needs to check that a FrameView has been created to avoid segfaults
https://bugs.webkit.org/show_bug.cgi?id=70519

Reviewed by Adam Barth.

Simple patch. Upcoming patches for https://bugs.webkit.org/show_bug.cgi?id=70559 will make
use of these methods in certain situations where the main frame doesn't yet have a FrameView.

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::isFixedLayoutModeEnabled):
(WebKit::WebViewImpl::enableFixedLayoutMode):
(WebKit::WebViewImpl::fixedLayoutSize):
(WebKit::WebViewImpl::setFixedLayoutSize):

7:35 PM Changeset in webkit [98058] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/chromium

Unreviewed. Rolled DEPS.

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-20

  • DEPS:
7:30 PM Changeset in webkit [98057] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Make WebCore depend on translator_glsl instead of translator_common
https://bugs.webkit.org/show_bug.cgi?id=70548

Patch by Antoine Labour <piman@chromium.org> on 2011-10-20
Reviewed by Kenneth Russell.

This is a build-only fix. Tested by checking WebKit still compiles and
link.

  • WebCore.gyp/WebCore.gyp:
7:25 PM Changeset in webkit [98056] by dpranke@chromium.org
  • 2 edits in trunk/LayoutTests

Suppress inspector failures for the moment.
https://bugs.webkit.org/show_bug.cgi?id=70573

Unreviewed, expectations change.

  • platform/chromium/test_expectations.txt:
7:24 PM Changeset in webkit [98055] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[Chromium] Fix opaque flag default and for ImageLayerChromium
https://bugs.webkit.org/show_bug.cgi?id=70554

Patch by Dana Jansens <danakj@chromium.org> on 2011-10-20
Reviewed by James Robinson.

Covered by layout tests.

  • platform/graphics/chromium/ImageLayerChromium.cpp:

(WebCore::ImageLayerChromium::setContents): Set opaque flag based on if the image claims to have alpha.

  • platform/graphics/chromium/LayerChromium.cpp:

(WebCore::LayerChromium::LayerChromium): Match the default opaque value in GraphicsLayerChromium.

7:08 PM Changeset in webkit [98054] by commit-queue@webkit.org
  • 8 edits in trunk/Source/WebCore

[Forms][File] Add tooltip to "No file selected" text
https://bugs.webkit.org/show_bug.cgi?id=70474

Patch by Yosifumi Inoue <yosin@chromium.org> on 2011-10-20
Reviewed by Kent Tamura.

No new tests. Existing tests cover all changes.

This patch provides tooltip for text portion of upload file control
tell users to know actual text of truncated text of file name and
"No file selected" text. Tooltip is always displayed even if user
select only one file for truncated displayed file name.

  • html/FileInputType.cpp:

(WebCore::FileInputType::defaultToolTip): Implement default tooltip logic.

  • html/FileInputType.h: declaration of new method defaultToolTip.
  • html/HTMLInputElement.cpp:

(WebCore::HTMLInputElement::defaultToolTip): Impelement new method defaultToolTip.

  • html/HTMLInputElement.h: declaration of new method defaultToolTip.
  • html/InputType.cpp:

(WebCore::InputType::defaultToolTip): Implement default method of defaultToolTip method.

  • html/InputType.h: declaration of new method defaultToolTip.
  • page/Chrome.cpp:

(WebCore::Chrome::setToolTip): Use new method HTMLInputElement::defaultToolTip and move default tooltip logic to FileInputType::defaultToolTip method.

6:27 PM Changeset in webkit [98053] by Darin Adler
  • 12 edits in trunk/Source

Remove OptionElement (first half)
https://bugs.webkit.org/show_bug.cgi?id=70276

Reviewed by Kent Tamura.

../WebCore:

Refactoring that does not require new tests.

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkOneSelector): Use hasTagName
and toHTMLOptionElement instead of toOptionElement.

  • dom/OptionElement.cpp: Deleted contents. Remove file later.
  • dom/OptionElement.h: Ditto.
  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::HTMLOptionElement): Initialize m_isSelected.
(WebCore::HTMLOptionElement::createForJSConstructor): Initialize the
selected attribute rather than calling setDefaultSelected.
(WebCore::HTMLOptionElement::text): Moved the code here from
OptionElement::collectOptionLabelOrText.
(WebCore::HTMLOptionElement::index): Moved the code here from
OptionElement::optionIndex.
(WebCore::HTMLOptionElement::parseMappedAttribute): Removed unneeded
code to call setValue and setLabel. Changed the code that called
setSelected to instead set m_isSelected and added a FIXME about why
that's probably wrong, but same behavior as before.
(WebCore::HTMLOptionElement::value): Moved the code here from
OptionElement::collectOptionValue. Added a FIXME about incorrect
whitespace stripping.
(WebCore::HTMLOptionElement::selected): Use m_isSelected.
(WebCore::HTMLOptionElement::setSelected): Use m_isSelected and
call setSelectedState instead of OptionElement::setSelectedState.
(WebCore::HTMLOptionElement::setSelectedState): Moved the code
here from OptionElement::setSelectedState.
(WebCore::HTMLOptionElement::label): Streamlined the code.
(WebCore::HTMLOptionElement::textIndentedToRespectGroupLabel):
Moved the code here from OptionElement::collectOptionTextRespectingGroupLabel.
(WebCore::HTMLOptionElement::insertedIntoTree): Use m_isSelected
and rewrote comment for clarity.
(WebCore::HTMLOptionElement::collectOptionInnerText): Moved this
here from OptionElement, and changed to use StringBuilder.
(WebCore::toHTMLOptionElement): Added.

  • html/HTMLOptionElement.h: Removed OptionElement.h include.

Removed OptionElement base class. Removed unneeded friend declarations.
Made value and selected functions non-virtual. Removed unneeded
defaultSelected and setDefaultSelected functions. Made the
textIndentedToRespectGroupLabel and setSelectedState functions
be non-virtual and public. Added a collectOptionInnerText function.
Replaced m_data with m_value, m_label, and m_selected.

  • html/HTMLSelectElement.cpp:

(WebCore::toOptionElement): Added. Helper to keep existing code
close to the same.
(WebCore::HTMLSelectElement::nextValidIndex): Use hasTagName
instead of isOptionElement.
(WebCore::HTMLSelectElement::saveLastSelection): Use HTMLOptionElement
type instead of OptionElement.
(WebCore::HTMLSelectElement::setActiveSelectionAnchorIndex): Ditto.
(WebCore::HTMLSelectElement::updateListBoxSelection): Ditto.
(WebCore::HTMLSelectElement::listBoxOnChange): Ditto.
(WebCore::HTMLSelectElement::recalcListItems): Ditto.
(WebCore::HTMLSelectElement::selectedIndex): Ditto.
(WebCore::HTMLSelectElement::setSelectedIndex): Ditto.
(WebCore::HTMLSelectElement::optionToListIndex): Ditto.
(WebCore::HTMLSelectElement::listToOptionIndex): Ditto.
(WebCore::HTMLSelectElement::deselectItemsWithoutValidation): Ditto.
(WebCore::HTMLSelectElement::saveFormControlState): Ditto.
(WebCore::HTMLSelectElement::restoreFormControlState): Ditto.
(WebCore::HTMLSelectElement::appendFormData): Ditto.
(WebCore::HTMLSelectElement::reset): Ditto.
(WebCore::HTMLSelectElement::updateSelectedState): Ditto.
(WebCore::HTMLSelectElement::lastSelectedListIndex): Ditto.
(WebCore::HTMLSelectElement::typeAheadFind): Ditto.
(WebCore::HTMLSelectElement::accessKeySetSelectedIndex): Ditto.
(WebCore::HTMLSelectElement::length): Ditto.

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::updateFromElement): Use HTMLOptionElement,
hasTagName, and toHTMLOptionElement.
(WebCore::RenderListBox::addFocusRingRects): Ditto.
(WebCore::RenderListBox::paintItemForeground): Ditto.
(WebCore::RenderListBox::paintItemBackground): Ditto.

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth): Ditto.
(WebCore::RenderMenuList::setTextFromOption): Ditto.
(WebCore::RenderMenuList::itemText): Ditto.
(WebCore::RenderMenuList::itemIsSelected): Ditto.

../WebKit/chromium:

Update hand-written binding for option element so it does not depend on otherwise-unneeded functions.

  • src/WebOptionElement.cpp:

(WebKit::WebOptionElement::defaultSelected): Call hasAttribute.
(WebKit::WebOptionElement::setDefaultSelected): Call setAttribute.

  • src/WebSearchableFormData.cpp:

(HTMLNames::IsSelectInDefaultState): Call hasAttribute.

5:49 PM Changeset in webkit [98052] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix crash for infinite recursion.

  • bindings/v8/custom/V8EventCustom.cpp:

(WebCore::toV8):

5:36 PM Changeset in webkit [98051] by abarth@webkit.org
  • 1 move in branches/old/audio

Archive audio branch.

5:33 PM Changeset in webkit [98050] by dpranke@chromium.org
  • 10 edits in trunk/Source/WebCore

Still lots of crashes in the chromium debug bots.

Unreviewed, rolling out r97982.
http://trac.webkit.org/changeset/97982
https://bugs.webkit.org/show_bug.cgi?id=70328

crashing in asserts in chromium debug builds

  • dom/DeviceMotionController.cpp:

(WebCore::DeviceMotionController::timerFired):
(WebCore::DeviceMotionController::addListener):
(WebCore::DeviceMotionController::removeListener):
(WebCore::DeviceMotionController::removeAllListeners):

  • dom/DeviceMotionController.h:
  • dom/DeviceOrientationController.cpp:
  • dom/DeviceOrientationController.h:
  • dom/Document.cpp:
  • dom/Document.h:
  • dom/ScriptExecutionContext.h:
  • page/GeolocationController.cpp:
  • page/GeolocationController.h:
5:27 PM Changeset in webkit [98049] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix the GTK build.

  • GNUmakefile.am:
5:26 PM Changeset in webkit [98048] by rniwa@webkit.org
  • 2 edits in trunk/LayoutTests

Mac rebaseline after r97878.

  • platform/mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.txt:
5:23 PM Changeset in webkit [98047] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

CloseEvent.idl isn't conditional on WebSockets.

  • dom/EventFactory.in:
5:20 PM Changeset in webkit [98046] by zmo@google.com
  • 2 edits in trunk/LayoutTests

2011-10-20 Zhenyao Mo <zmo@google.com>

Unreviewed, test expectations update for GPU bots.

  • platform/chromium/test_expectations.txt:
5:16 PM Changeset in webkit [98045] by thakis@chromium.org
  • 5 edits in trunk

[chromium/mac] Add support for building with make
https://bugs.webkit.org/show_bug.cgi?id=70455

Reviewed by Adam Barth.

Depends on http://codereview.chromium.org/8352029/
GYP_GENERATORS=make Tools/Scripts/update-webkit --chromium will
create a toplevel Makefile.chromium.

If that file exists and is newer than Source/WebKit/chromium/WebKit.xcodeproj,
Tools/Scripts/build-webkit --chromium will build with make instead of
xcodebuild.

Source/WebKit/chromium:

  • gyp_webkit:

Tools:

Also let nrwt use a binary from out/ if it exists.

  • Scripts/webkitdirs.pm:

(determineBaseProductDir):
(isChromiumMacMake):
(determineIsChromiumMacMake):
(buildChromium):

5:00 PM Changeset in webkit [98044] by abarth@webkit.org
  • 78 edits in trunk/Source

Event.h shouldn't need to know about every ifdef and feature that uses events
https://bugs.webkit.org/show_bug.cgi?id=70483

Reviewed by Eric Seidel.

This patch expands make_event_factory.pl to create a
DOM_EVENT_INTERFACES_FOR_EACH macro that we can use to generate code
for each Event interface. We then apply that macro to removing a large
number of virtual functions on Event. Instead of having a Boolean
virtual function for each subclass of Event, we have a single virtual
interfaceName function, which returns an AtomicString. We then use the
AtomicString to jump through a HashMap to find the appropriate
JavaScript wrapper type.

This patch does not remove all of the Boolean virtual functions because
I got exhausted making all of these edits, but I did remove all the
ones that involve ifdefs. A future patch will remove more.

  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSEventCustom.cpp:

(WebCore::toJS):

  • bindings/v8/custom/V8EventCustom.cpp:

(WebCore::toV8):

  • dom/BeforeLoadEvent.h:

(WebCore::BeforeLoadEvent::interfaceName):
(WebCore::BeforeLoadEvent::isBeforeLoadEvent):

  • dom/BeforeTextInsertedEvent.cpp:

(WebCore::BeforeTextInsertedEvent::interfaceName):

  • dom/BeforeTextInsertedEvent.h:
  • dom/ClipboardEvent.cpp:

(WebCore::ClipboardEvent::interfaceName):

  • dom/ClipboardEvent.h:
  • dom/CompositionEvent.cpp:

(WebCore::CompositionEvent::interfaceName):

  • dom/CompositionEvent.h:
  • dom/CustomEvent.cpp:

(WebCore::CustomEvent::interfaceName):

  • dom/CustomEvent.h:
  • dom/DeviceMotionEvent.cpp:

(WebCore::DeviceMotionEvent::interfaceName):

  • dom/DeviceMotionEvent.h:
  • dom/DeviceOrientationEvent.cpp:

(WebCore::DeviceOrientationEvent::interfaceName):

  • dom/DeviceOrientationEvent.h:
  • dom/ErrorEvent.cpp:

(WebCore::ErrorEvent::interfaceName):

  • dom/ErrorEvent.h:
  • dom/Event.cpp:

(WebCore::Event::interfaceName):

  • dom/Event.h:
  • dom/EventNames.cpp:

(WebCore::EventNames::EventNames):

  • dom/EventNames.h:
  • dom/HashChangeEvent.h:

(WebCore::HashChangeEvent::interfaceName):

  • dom/KeyboardEvent.cpp:

(WebCore::KeyboardEvent::interfaceName):

  • dom/KeyboardEvent.h:
  • dom/MessageEvent.cpp:

(WebCore::MessageEvent::interfaceName):

  • dom/MessageEvent.h:
  • dom/MouseEvent.cpp:

(WebCore::MouseEvent::interfaceName):

  • dom/MouseEvent.h:
  • dom/MutationEvent.cpp:

(WebCore::MutationEvent::interfaceName):

  • dom/MutationEvent.h:
  • dom/OverflowEvent.cpp:

(WebCore::OverflowEvent::interfaceName):

  • dom/OverflowEvent.h:
  • dom/PageTransitionEvent.cpp:

(WebCore::PageTransitionEvent::interfaceName):

  • dom/PageTransitionEvent.h:
  • dom/PopStateEvent.cpp:

(WebCore::PopStateEvent::interfaceName):

  • dom/PopStateEvent.h:
  • dom/ProgressEvent.cpp:

(WebCore::ProgressEvent::interfaceName):

  • dom/ProgressEvent.h:
  • dom/TextEvent.cpp:

(WebCore::TextEvent::interfaceName):

  • dom/TextEvent.h:
  • dom/TouchEvent.cpp:

(WebCore::TouchEvent::interfaceName):

  • dom/TouchEvent.h:
  • dom/UIEvent.h:
  • dom/WebKitAnimationEvent.cpp:

(WebCore::WebKitAnimationEvent::interfaceName):

  • dom/WebKitAnimationEvent.h:
  • dom/WebKitTransitionEvent.cpp:

(WebCore::WebKitTransitionEvent::interfaceName):

  • dom/WebKitTransitionEvent.h:
  • dom/WheelEvent.cpp:

(WebCore::WheelEvent::interfaceName):

  • dom/WheelEvent.h:
  • dom/make_event_factory.pl:

(printFactoryFile):
(printMacroFile):
(printHeadersFile):

  • html/canvas/WebGLContextEvent.cpp:

(WebCore::WebGLContextEvent::interfaceName):

  • html/canvas/WebGLContextEvent.h:
  • inspector/InspectorDOMStorageResource.cpp:

(WebCore::InspectorDOMStorageResource::handleEvent):

  • p2p/MediaStreamEvent.cpp:

(WebCore::MediaStreamEvent::interfaceName):

  • p2p/MediaStreamEvent.h:
  • page/SpeechInputEvent.cpp:

(WebCore::SpeechInputEvent::interfaceName):

  • page/SpeechInputEvent.h:
  • storage/IDBVersionChangeEvent.cpp:

(WebCore::IDBVersionChangeEvent::interfaceName):

  • storage/IDBVersionChangeEvent.h:
  • storage/StorageEvent.cpp:

(WebCore::StorageEvent::interfaceName):

  • storage/StorageEvent.h:
  • svg/SVGZoomEvent.cpp:

(WebCore::SVGZoomEvent::interfaceName):

  • svg/SVGZoomEvent.h:
  • webaudio/AudioProcessingEvent.cpp:

(WebCore::AudioProcessingEvent::interfaceName):

  • webaudio/AudioProcessingEvent.h:
  • webaudio/OfflineAudioCompletionEvent.cpp:

(WebCore::OfflineAudioCompletionEvent::interfaceName):

  • webaudio/OfflineAudioCompletionEvent.h:
  • websockets/CloseEvent.h:

(WebCore::CloseEvent::interfaceName):

  • xml/XMLHttpRequestProgressEvent.h:

(WebCore::XMLHttpRequestProgressEvent::interfaceName):

4:58 PM Changeset in webkit [98043] by gavinp@chromium.org
  • 1 edit in branches/chromium/874/Source/WebCore/dom/ScriptElement.cpp

Reland manual workaround for chromium bug 75604

BUG=75604
Review URL: http://codereview.chromium.org/8361008/

4:56 PM Changeset in webkit [98042] by tony@chromium.org
  • 3 edits in trunk/LayoutTests

Update chromium-linux flexbox pixel results. My machine is running
a different version of ubuntu and the fonts are antialiased differently.

  • platform/chromium-linux/css3/flexbox/repaint-expected.png:
  • platform/chromium-linux/css3/flexbox/repaint-rtl-column-expected.png:
4:45 PM Changeset in webkit [98041] by dpranke@chromium.org
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed, expectations change.

  • platform/chromium-cg-mac-snowleopard/fast/multicol/flipped-blocks-border-after-expected.png: Added.
  • platform/chromium-cg-mac-snowleopard/fast/multicol/flipped-blocks-border-after-expected.txt: Added.
4:36 PM Changeset in webkit [98040] by eric@webkit.org
  • 3 edits in trunk/Tools

Possible REGRESSION(97879): NRWT fails when DumpRenderTree crashes
https://bugs.webkit.org/show_bug.cgi?id=70524

Reviewed by Adam Barth.

This is a speculative fix, since I do not use a platform
which outputs crashlogs over stderr.

  • Scripts/webkitpy/layout_tests/port/server_process.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
4:36 PM Changeset in webkit [98039] by nduca@chromium.org
  • 19 edits in trunk/Source

[chromium] Route onSwapBuffersComplete from LayerRenderer to CCScheduler.

Reviewed by James Robinson.

Source/WebCore:

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererSwapBuffersCompleteCallbackAdapter::create):
(WebCore::LayerRendererSwapBuffersCompleteCallbackAdapter::~LayerRendererSwapBuffersCompleteCallbackAdapter):
(WebCore::LayerRendererSwapBuffersCompleteCallbackAdapter::onSwapBuffersComplete):
(WebCore::LayerRendererSwapBuffersCompleteCallbackAdapter::LayerRendererSwapBuffersCompleteCallbackAdapter):
(WebCore::LayerRendererChromium::initialize):
(WebCore::LayerRendererChromium::~LayerRendererChromium):
(WebCore::LayerRendererChromium::swapBuffers):
(WebCore::LayerRendererChromium::onSwapBuffersComplete):

  • platform/graphics/chromium/LayerRendererChromium.h:
  • platform/graphics/chromium/cc/CCHeadsUpDisplay.cpp:

(WebCore::CCHeadsUpDisplay::onSwapBuffers):

  • platform/graphics/chromium/cc/CCHeadsUpDisplay.h:
  • platform/graphics/chromium/cc/CCLayerTreeHost.h:

(WebCore::LayerRendererCapabilities::LayerRendererCapabilities):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::swapBuffers):
(WebCore::CCLayerTreeHostImpl::onSwapBuffersComplete):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.h:
  • platform/graphics/chromium/cc/CCScheduler.cpp:

(WebCore::CCScheduler::requestRedraw):
(WebCore::CCScheduler::didDrawAndSwap):
(WebCore::CCScheduler::didSwapBuffersComplete):
(WebCore::CCScheduler::didSwapBuffersAbort):

  • platform/graphics/chromium/cc/CCScheduler.h:
  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::compositeImmediately):

  • platform/graphics/chromium/cc/CCSingleThreadProxy.h:

(WebCore::CCSingleThreadProxy::onSwapBuffersCompleteOnImplThread):

  • platform/graphics/chromium/cc/CCThreadProxy.cpp:

(WebCore::CCThreadProxySchedulerClient::scheduleDrawAndSwap):
(WebCore::CCThreadProxy::drawLayersAndReadbackOnImplThread):
(WebCore::CCThreadProxy::onSwapBuffersCompleteOnImplThread):
(WebCore::CCThreadProxy::finishAllRenderingOnImplThread):
(WebCore::CCThreadProxy::drawLayersAndSwapOnImplThread):
(WebCore::CCThreadProxy::drawLayersOnImplThread):

  • platform/graphics/chromium/cc/CCThreadProxy.h:

Source/WebKit/chromium:

  • src/GraphicsContext3DChromium.cpp:

(WebCore::GraphicsContext3DSwapBuffersCompleteCallbackAdapter::~GraphicsContext3DSwapBuffersCompleteCallbackAdapter):
(WebCore::GraphicsContext3DSwapBuffersCompleteCallbackAdapter::GraphicsContext3DSwapBuffersCompleteCallbackAdapter):
(WebCore::GraphicsContext3DSwapBuffersCompleteCallbackAdapter::onSwapBuffersComplete):
(WebCore::GraphicsContext3DSwapBuffersCompleteCallbackAdapter::create):
(WebCore::GraphicsContext3DPrivate::setSwapBuffersCompleteCallbackCHROMIUM):

  • src/GraphicsContext3DPrivate.h:
  • tests/CCLayerTreeHostImplTest.cpp:

(WebCore::CCLayerTreeHostImplTest::onSwapBuffersCompleteOnImplThread):

  • tests/CCSchedulerTest.cpp:

(WebCore::CCSchedulerTest::CCSchedulerTest):
(WebCore::TEST_F):

4:34 PM Changeset in webkit [98038] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit/mac

https://bugs.webkit.org/show_bug.cgi?id=70541
There are two WebFrameLoadDelegatePrivate categories on NSObject

Patch by Ian Henderson <ianh@apple.com> on 2011-10-20
Reviewed by David Kilzer.

  • WebView/WebViewPrivate.h: Rename the private delegate categories in

WebViewPrivate.h with a "WebView" prefix to avoid collision.

4:30 PM Changeset in webkit [98037] by eae@chromium.org
  • 1 copy in branches/subpixellayout

Create subpixel layout branch.

4:23 PM Changeset in webkit [98036] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebKit/chromium

[chromium] Add a setVisibility method to WebGraphicsContext3D.
https://bugs.webkit.org/show_bug.cgi?id=68905

Patch by Michal Mocny <mmocny@google.com> on 2011-10-20
Reviewed by Kenneth Russell.

Added hooks for notifying WebGraphicsContext3D of surface visibility changes.
Useful for releasing various graphics resource.

  • DEPS:
  • public/WebGraphicsContext3D.h:
  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::setVisibilityState):

  • tests/MockWebGraphicsContext3D.h:

(WebKit::MockWebGraphicsContext3D::setVisibility):

4:19 PM Changeset in webkit [98035] by commit-queue@webkit.org
  • 6 edits in trunk/Source/WebKit/chromium

Export missing symbols from Web*Layer
https://bugs.webkit.org/show_bug.cgi?id=70440

Patch by Antoine Labour <piman@chromium.org> on 2011-10-20
Reviewed by Darin Fisher.

  • public/WebContentLayer.h:
  • public/WebExternalTextureLayer.h:
  • public/WebLayer.h:
  • public/WebLayerTreeView.h:
4:17 PM Changeset in webkit [98034] by eric@webkit.org
  • 8 edits in trunk/Tools

REGRESSION(97879): Pixel tests no longer work with NRWT on Mac
https://bugs.webkit.org/show_bug.cgi?id=70492

Reviewed by Adam Barth.

The bug turned out to be that I was assuming the block.content
would be empty before the binary content following Content-Length
was read inside _read_block. Turns out its not, due to extra newlines
and "ExpectedHash" header.

In the process of trying to figure out what was going wrong I ended up
cleaning up our newline usage in DumpRenderTree a little. Moved
two error messages from stdout to stderr, and fixed a little code indent/whitespace.

I also fixed ServerProcess to use "deadline" everywhere instead of timeout
per Adam's request in the original bug.

  • DumpRenderTree/PixelDumpSupport.cpp:

(dumpWebViewAsPixelsAndCompareWithExpected):

  • DumpRenderTree/cg/ImageDiffCG.cpp:

(main):

  • DumpRenderTree/mac/DumpRenderTree.mm:

(dump):

  • DumpRenderTree/mac/PixelDumpSupportMac.mm:

(restoreMainDisplayColorProfile):
(setupMainDisplayColorProfile):

  • Scripts/webkitpy/layout_tests/port/server_process.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
  • Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
4:10 PM WikiStart edited by dpranke@chromium.org
(diff)
3:55 PM Changeset in webkit [98033] by jchaffraix@webkit.org
  • 8 edits
    5 adds in trunk

RenderDeprecatedFlexibleBox does not call its children's layout method
https://bugs.webkit.org/show_bug.cgi?id=64842

Reviewed by David Hyatt.

Source/WebCore:

Tests: fast/flexbox/021-vertical.html

fast/flexbox/crash-flexbox-no-layout-child.html

The FlexBoxIterator would skip any child with visibility: collapsed. However those child
would need layout but their layout() function would never be called.

This change refactors the way flexible box handles visibility: collapsed child and mark sure
their layout() function is called but makes sure that they don't participate in the flex box
dimensions.

  • rendering/RenderDeprecatedFlexibleBox.cpp:

(WebCore::FlexBoxIterator::next): Do not skip visibility: collapsed child.
(WebCore::childDoesNotAffectWidthOrFlexing): Helper function.

(WebCore::RenderDeprecatedFlexibleBox::calcHorizontalPrefWidths):
(WebCore::RenderDeprecatedFlexibleBox::calcVerticalPrefWidths):
(WebCore::gatherFlexChildrenInfo):
(WebCore::RenderDeprecatedFlexibleBox::layoutHorizontalBox):
(WebCore::RenderDeprecatedFlexibleBox::layoutVerticalBox):
(WebCore::RenderDeprecatedFlexibleBox::applyLineClamp):
(WebCore::RenderDeprecatedFlexibleBox::allowedChildFlex):
Updated to skip the now seen visibility: collapsed child during the
iteration.

LayoutTests:

Added a test covering the vertical change as the horizontal one is covered
by 021.html. The test is failing currently as we don't properly support this
case.

  • fast/flexbox/021-vertical-expected.png: Added.
  • fast/flexbox/021-vertical-expected.txt: Added.
  • fast/flexbox/021-vertical.html: Added.
  • fast/flexbox/crash-flexbox-no-layout-child-expected.txt: Added.
  • fast/flexbox/crash-flexbox-no-layout-child.html: Added.
  • platform/chromium-win/fast/flexbox/021-expected.txt:
  • platform/efl/fast/flexbox/021-expected.txt:
  • platform/gtk/fast/flexbox/021-expected.txt:
  • platform/mac/fast/flexbox/021-expected.txt:
  • platform/qt/fast/flexbox/021-expected.txt:

Updated as we now layout out this flex-box. The image result should not
change as it doesn't contribute to the visible flexbox layout.

3:52 PM Changeset in webkit [98032] by Simon Fraser
  • 2 edits
    2 deletes in trunk/LayoutTests

Fix two compositing iframes tests
https://bugs.webkit.org/show_bug.cgi?id=70543

Reviewed by Dean Jackson.

Remove incorrect WK2-specific result for invisible-nested-iframe-show.html.

The WK1 result for overlapped-iframe-iframe-expected.txt was also incorrect, because
the test didn not function correctly in WK1. It needs to use a setTimeout(0) to work
around an AppKit issue, and to display() so that painting triggers overflow detection.

  • compositing/iframes/overlapped-iframe-iframe.html:
  • platform/mac-wk2/compositing/iframes/invisible-nested-iframe-show-expected.txt: Removed.
  • platform/mac/compositing/iframes/overlapped-iframe-iframe-expected.txt: Removed.
3:48 PM Changeset in webkit [98031] by rniwa@webkit.org
  • 6 edits in trunk/LayoutTests

[nrwt] results.html should differentiate expected missing and unexpected missing
https://bugs.webkit.org/show_bug.cgi?id=70372

Reviewed by Ojan Vafai.

Fixed the bug by moving the code to set isExpected above where we find tests with missing results
in processGlobalStateFor, and replacing testList for the missing results table by failingTestsTable.

Also fixed a bug in updateTogglingImages that was erroneously replacing links to .png files by
links to -diffs.html that don't exist for tests with missing results.

  • fast/harness/resources/results-test.js: Added a test.
  • fast/harness/results-expected.txt: Rebaselined.
  • fast/harness/results.html:
  • platform/chromium/fast/harness/results-expected.txt: Rebaselined.
  • platform/win/fast/harness/results-expected.txt: Rebaselined.
3:40 PM Changeset in webkit [98030] by jesus@webkit.org
  • 10 edits
    2 moves
    1 delete in trunk/Source/WebKit2

[Qt][WK2] qweberror* should follow the new file and class naming rules
https://bugs.webkit.org/show_bug.cgi?id=70550

Reviewed by Noam Rosenthal.

Renaming qweberror* files and class to QtWebError*.
QWebErrorPrivate is now merged into QtWebError.

  • UIProcess/API/qt/qdesktopwebview.cpp:

(QDesktopWebViewPrivate::loadDidFail):

  • UIProcess/API/qt/qdesktopwebview_p.h:
  • UIProcess/qt/ClientImpl.cpp:

(dispatchLoadFailed):

  • UIProcess/qt/QtTouchViewInterface.cpp:

(WebKit::QtTouchViewInterface::loadDidFail):

  • UIProcess/qt/QtTouchViewInterface.h:
  • UIProcess/qt/QtViewInterface.h:
  • UIProcess/qt/QtWebError.cpp: Renamed from Source/WebKit2/UIProcess/qt/qweberror.cpp.

(QtWebError::QtWebError):
(QtWebError::type):
(QtWebError::errorCode):
(QtWebError::url):

  • UIProcess/qt/QtWebError.h: Renamed from Source/WebKit2/UIProcess/qt/qweberror.h.

(QtWebError::errorCodeAsHttpStatusCode):
(QtWebError::errorCodeAsNetworkError):

  • UIProcess/qt/QtWebPageProxy.cpp:

(QtWebPageProxy::loadDidFail):

  • UIProcess/qt/QtWebPageProxy.h:
  • UIProcess/qt/qweberror_p.h: Removed.
  • WebKit2.pro:
3:39 PM Changeset in webkit [98029] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Implement SSE denormal disabler for windows.

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

Patch by Raymond Toy <Raymond Toy> on 2011-10-20
Reviewed by Kenneth Russell.

  • platform/audio/DenormalDisabler.h:

(WebCore::DenormalDisabler::DenormalDisabler):
Add implementation for Windows.
(WebCore::DenormalDisabler::~DenormalDisabler):
Ditto.
(WebCore::DenormalDisabler::flushDenormalFloatToZero):
Unify Windows with mac/linux.
(WebCore::DenormalDisabler::getCSR):
Define only if we're not on Windows.
(WebCore::DenormalDisabler::setCSR):
Ditto.

3:32 PM Changeset in webkit [98028] by gavinp@chromium.org
  • 1 edit in branches/chromium/874/Source/WebCore/dom/ScriptElement.cpp

Revert manual workaround for chromium bug 75604

BUG=75604
Review URL: http://codereview.chromium.org/8361008/

3:25 PM Changeset in webkit [98027] by ap@apple.com
  • 13 edits in trunk/Source

REGRESSION (r96823): Contextual menu closes immediately when control-clicking in Flash plug-in
https://bugs.webkit.org/show_bug.cgi?id=70534
<rdar://problem/10308827>

Reviewed by Darin Adler.

Source/WebCore:

  • plugins/PluginView.cpp: (WebCore::PluginView::handleEvent): Return true for contextmenu

event, so that plug-ins won't get a default WebKit context menu. We can't know if the
plug-in is handling mousedown (or even mouseup) by displaying a menu.

Source/WebKit/mac:

  • WebCoreSupport/WebFrameLoaderClient.mm: (NetscapePluginWidget::handleEvent): Return true

for contextmenu event, so that plug-ins won't get a default WebKit context menu. We can't
know if the plug-in is handling mousedown (or even mouseup) by displaying a menu.

Source/WebKit2:

  • WebProcess/Plugins/Netscape/NetscapePlugin.cpp: (WebKit::NetscapePlugin::handleContextMenuEvent):
  • WebProcess/Plugins/Netscape/NetscapePlugin.h:
  • WebProcess/Plugins/Plugin.h:
  • WebProcess/Plugins/PluginProxy.cpp: (WebKit::PluginProxy::handleContextMenuEvent):
  • WebProcess/Plugins/PluginProxy.h:
  • WebProcess/Plugins/PluginView.cpp: (WebKit::PluginView::handleEvent):

Return true when handling contextmenu event, so that plug-ins won't get a default WebKit
context menu. We can't know if the plug-in is handling mousedown (or even mouseup) by
displaying a menu.

  • WebProcess/Plugins/PDF/BuiltInPDFView.h:
  • WebProcess/Plugins/PDF/BuiltInPDFView.cpp: (WebKit::BuiltInPDFView::handleContextMenuEvent):

PDF is the only "plug-in" that wants default WebKit menu now.

3:24 PM Changeset in webkit [98026] by weinig@apple.com
  • 2 edits in trunk/Source/WebKit2

Put the WebKit2 C SPI in PrivateHeaders
https://bugs.webkit.org/show_bug.cgi?id=70549

Reviewed by Dan Bernstein.

No change in behavior.

  • WebKit2.xcodeproj/project.pbxproj:
3:05 PM Changeset in webkit [98025] by nduca@chromium.org
  • 12 edits in trunk/Source

[chromium] Allow CCLayerTreeHostImpl to call back to proxy via CCLayerTreeHostImplClient
https://bugs.webkit.org/show_bug.cgi?id=70291

Reviewed by James Robinson.

Source/WebCore:

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::createLayerTreeHostImpl):

  • platform/graphics/chromium/cc/CCLayerTreeHost.h:
  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.cpp:

(WebCore::CCLayerTreeHostImpl::create):
(WebCore::CCLayerTreeHostImpl::CCLayerTreeHostImpl):
(WebCore::CCLayerTreeHostImpl::scrollRootLayer):

  • platform/graphics/chromium/cc/CCLayerTreeHostImpl.h:
  • platform/graphics/chromium/cc/CCScrollController.h:
  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::start):

  • platform/graphics/chromium/cc/CCSingleThreadProxy.h:

(WebCore::CCSingleThreadProxy::setNeedsRedrawOnImplThread):
(WebCore::CCSingleThreadProxy::setNeedsCommitOnImplThread):

  • platform/graphics/chromium/cc/CCThreadProxy.cpp:

(WebCore::CCThreadProxy::scrollRootLayerOnImplThread):
(WebCore::CCThreadProxy::initializeImplOnCCThread):
(WebCore::CCThreadProxy::initializeLayerRendererOnCCThread):
(WebCore::CCThreadProxy::layerTreeHostClosedOnCCThread):

  • platform/graphics/chromium/cc/CCThreadProxy.h:

(WebCore::CCThreadProxy::setNeedsRedrawOnImplThread):
(WebCore::CCThreadProxy::setNeedsCommitOnImplThread):

Source/WebKit/chromium:

  • tests/CCLayerTreeHostImplTest.cpp:

(WebCore::CCLayerTreeHostImplTest::CCLayerTreeHostImplTest):
(WebCore::CCLayerTreeHostImplTest::setNeedsRedrawOnImplThread):
(WebCore::CCLayerTreeHostImplTest::setNeedsCommitOnImplThread):
(WebCore::TEST_F):

  • tests/CCLayerTreeHostTest.cpp:

(WTF::MockLayerTreeHostImpl::create):
(WTF::MockLayerTreeHostImpl::MockLayerTreeHostImpl):
(WTF::MockLayerTreeHost::createLayerTreeHostImpl):

3:04 PM Changeset in webkit [98024] by tony@chromium.org
  • 3 edits
    7 adds in trunk

fix repaint bugs in new flexbox
https://bugs.webkit.org/show_bug.cgi?id=70450

Reviewed by David Hyatt.

Source/WebCore:

Test: css3/flexbox/repaint.html

css3/flexbox/repaint-rtl-column.html

  • rendering/RenderFlexibleBox.cpp:

(WebCore::RenderFlexibleBox::layoutBlock): Use LayoutRepainter and LayoutStateMaintainer

to repaint the flexbox.

(WebCore::RenderFlexibleBox::layoutAndPlaceChildrenInlineDirection):
(WebCore::RenderFlexibleBox::adjustLocationLogicalTopForChild): Use repaintDuringLayoutIfMoved

when changing the alignment of a child to handle the child moving.

LayoutTests:

  • css3/flexbox/repaint-expected.txt: Added.
  • css3/flexbox/repaint-rtl-column-expected.txt: Added.
  • css3/flexbox/repaint-rtl-column.html: Added.
  • css3/flexbox/repaint.html: Added.
  • platform/chromium-linux/css3/flexbox/repaint-expected.png: Added.
  • platform/chromium-linux/css3/flexbox/repaint-rtl-columnexpected.png: Added.
2:33 PM Changeset in webkit [98023] by tony@chromium.org
  • 2 edits in trunk/Tools

[chromium] Remove <stdint.h> from ImageDiff and use
unsigned int instead of uint32_t.

Unreviewed, fixing the chromium win build.

  • DumpRenderTree/chromium/ImageDiff.cpp:

(Image::pixelAt):
(Image::setPixelAt):
(maxOf3):
(getRedComponent):
(getGreenComponent):
(getBlueComponent):
(weightedPercentageDifferent):
(createImageDiff):

2:27 PM Changeset in webkit [98022] by mitz@apple.com
  • 3 edits
    2 adds in trunk

Flipped-blocks writing mode blocks do not hit test their overflow
https://bugs.webkit.org/show_bug.cgi?id=70546

Reviewed by Sam Weinig.

Source/WebCore:

Test: fast/writing-mode/flipped-blocks-hit-test-overflow.html

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::nodeAtPoint): Flip the overflow rect if necessary.

LayoutTests:

  • fast/writing-mode/flipped-blocks-hit-test-overflow-expected.txt: Added.
  • fast/writing-mode/flipped-blocks-hit-test-overflow.html: Added.
2:12 PM Changeset in webkit [98021] by hyatt@apple.com
  • 6 edits
    3 adds in trunk

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

Make the 'clip' property work in variable width regions.

Reviewed by Dan Bernstein.

Source/WebCore:

Added new test in fast/regions.

  • rendering/RenderBox.cpp:

(WebCore::RenderBox::clipRect):

  • rendering/RenderBox.h:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::calculateClipRects):
(WebCore::RenderLayer::calculateRects):
(WebCore::RenderLayer::repaintBlockSelectionGaps):

  • rendering/RenderLayerBacking.cpp:

(WebCore::clipBox):

LayoutTests:

  • fast/regions/positioned-objects-clipped-spanning-regions.html: Added.
  • platform/mac/fast/regions/positioned-objects-clipped-spanning-regions-expected.png: Added.
  • platform/mac/fast/regions/positioned-objects-clipped-spanning-regions-expected.txt: Added.
1:57 PM Changeset in webkit [98020] by Simon Fraser
  • 2 edits in trunk/Source/WebCore

Fix build breakage on some platforms after r98008.

  • page/FrameTree.cpp:
1:27 PM Changeset in webkit [98019] by jchaffraix@webkit.org
  • 1 edit
    4 copies in branches/chromium/912

Merge 97907 - Multiple crashes in RenderTable during layout
https://bugs.webkit.org/show_bug.cgi?id=70392

Reviewed by Simon Fraser.

Source/WebCore:

Tests: fast/table/crash-anonymous-table-computeLogicalWidth.html

fast/table/crash-anonymous-table-layout.html

r97555 forgot to take into account anonymous tables during layout
where RenderObject::node() is NULL.

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::computeLogicalWidth):
(WebCore::RenderTable::layout):
Added a check for node() before calling Node::hasTagName.

LayoutTests:

  • fast/table/crash-anonymous-table-computeLogicalWidth-expected.txt: Added.
  • fast/table/crash-anonymous-table-computeLogicalWidth.html: Added.
  • fast/table/crash-anonymous-table-layout-expected.txt: Added.
  • fast/table/crash-anonymous-table-layout.html: Added.

TBR=jchaffraix@webkit.org
Review URL: http://codereview.chromium.org/8366015

1:05 PM Changeset in webkit [98018] by Csaba Osztrogonác
  • 832 edits
    3 adds in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 4)

  • platform/qt/http/: [...]
  • platform/qt/fast/: [...]
  • platform/qt/plugins/: [...]
  • platform/qt/printing/: [...]
  • platform/qt/scrollbars/: [...]
  • platform/qt/Skipped:
1:01 PM Changeset in webkit [98017] by gavinp@chromium.org
  • 1 edit in branches/chromium/874/Source/WebCore/dom/ScriptElement.cpp

Manual workaround for chromium bug 75604

BUG=75604
Review URL: http://codereview.chromium.org/8361008/

12:59 PM Changeset in webkit [98016] by scheib@chromium.org
  • 14 edits in trunk/Source

MouseLock compile and run time flags.
https://bugs.webkit.org/show_bug.cgi?id=70530

Reviewed by Darin Fisher.

Source/JavaScriptCore:

  • wtf/Platform.h:

Source/WebCore:

No new tests.

  • bindings/generic/RuntimeEnabledFeatures.cpp:
  • bindings/generic/RuntimeEnabledFeatures.h:

(WebCore::RuntimeEnabledFeatures::webkitMouseLockAPIEnabled):
(WebCore::RuntimeEnabledFeatures::setWebkitMouseLockAPIEnabled):
(WebCore::RuntimeEnabledFeatures::webkitLockMouseEnabled):
(WebCore::RuntimeEnabledFeatures::webkitUnlockMouseEnabled):
(WebCore::RuntimeEnabledFeatures::webkitMouseLockedEnabled):

  • page/Settings.cpp:

(WebCore::Settings::Settings):

  • page/Settings.h:

(WebCore::Settings::setMouseLockEnabled):
(WebCore::Settings::mouseLockEnabled):

Source/WebKit/chromium:

  • features.gypi:
  • public/WebRuntimeFeatures.h:
  • public/WebSettings.h:
  • src/WebRuntimeFeatures.cpp:

(WebKit::WebRuntimeFeatures::enableMouseLockAPI):
(WebKit::WebRuntimeFeatures::isMouseLockAPIEnabled):

  • src/WebSettingsImpl.cpp:

(WebKit::WebSettingsImpl::setMouseLockEnabled):

  • src/WebSettingsImpl.h:
12:44 PM Changeset in webkit [98015] by Csaba Osztrogonác
  • 1503 edits
    5 adds in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 3)

  • platform/qt/editing/: [...]
  • platform/qt/fast/: [...]
  • platform/qt/Skipped:
12:36 PM Changeset in webkit [98014] by tony@chromium.org
  • 2 edits in trunk/Source/WebCore

Fix a compiler warning in MediaStreamTrack.cpp:
../../third_party/WebKit/Source/WebCore/dom/MediaStreamTrack.cpp: In member function 'WTF::String WebCore::MediaStreamTrack::kind() const':
../../third_party/WebKit/Source/WebCore/dom/MediaStreamTrack.cpp:61:1: error: control reaches end of non-void function [-Werror=return-type]

Unreviewed build fix.

  • dom/MediaStreamTrack.cpp:

(WebCore::MediaStreamTrack::kind):

12:34 PM Changeset in webkit [98013] by beidson@apple.com
  • 2 edits in trunk/Source/WebKit2

<rdar://problem/9412849> and https://bugs.webkit.org/show_bug.cgi?id=70535
WK2 - Crash deref'ing a null context menu

Reviewed by Darin Adler.

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::didSelectItemFromActiveContextMenu): In some cases that we still can't reproduce,

this message can be received in the WebProcess after the context menu has been cleared, leading
to a crash. Turning the ASSERT in to an early return will prevent the crash while we try to learn more
about how this could happen.

12:28 PM Changeset in webkit [98012] by leandro@webkit.org
  • 1 edit
    8 adds in trunk/LayoutTests

Unreviewed. Add remaining EFL baselines.

  • platform/efl/fast/html: Added.
  • platform/efl/fast/html/keygen-expected.txt: Added.
  • platform/efl/fast/html/link-rel-stylesheet-expected.txt: Added.
  • platform/efl/fast/html/listing-expected.txt: Added.
  • platform/efl/fast/html/marquee-scroll-expected.txt: Added.
  • platform/efl/fast/html/marquee-scrollamount-expected.txt: Added.
  • platform/efl/fast/loader: Added.
  • platform/efl/fast/loader/text-document-wrapping-expected.txt: Added.
12:27 PM Changeset in webkit [98011] by kov@webkit.org
  • 2 edits in trunk/Source/WebCore

One more GTK+ build fix. Remove CueLoader files from the build.

  • GNUmakefile.list.am:
12:20 PM Changeset in webkit [98010] by commit-queue@webkit.org
  • 4 edits
    2 adds in trunk

Crash in updateFirstLetter on :after generated content
https://bugs.webkit.org/show_bug.cgi?id=70031

Patch by Ken Buchanan <kenrb@chromium.org> on 2011-10-20
Reviewed by David Hyatt.

Source/WebCore:

Preventing findBeforeAfterParent() from returning a first-letter block and overwriting its style.
Instead, it returns the block's parent.

  • rendering/RenderBlock.cpp:

(WebCore::RenderBlock::updateFirstLetter):

  • rendering/RenderObjectChildList.cpp:

(WebCore::findBeforeAfterParent)
(WebCore::RenderObjectChildList::updateBeforeAfterContent): First-letter siblings now already have style applied, so this clause is redundant

LayoutTests:

Added test for crash condition with a floating first-letter on after content

  • fast/css-generated-content/after-with-first-letter-float-crash.html: Added
  • fast/css-generated-content/after-with-first-letter-float-crash-expected.txt: Added
12:15 PM WebKitGTK/1.6.x edited by kov@webkit.org
(diff)
12:10 PM Changeset in webkit [98009] by kov@webkit.org
  • 2 edits in trunk/Source/WebKit2

GTK+ build fix. Wk2 documentation will be dealt with in future patches.

  • UIProcess/API/gtk/docs/GNUmakefile.am:
12:05 PM Changeset in webkit [98008] by Simon Fraser
  • 3 edits in trunk/Source/WebCore

Add a way to print the Frame tree from the debugger.

Reviewed by Sam Weinig.

Add a showFrameTree(frame) method, callable from gdb,
which dumps the Frame tree, including the frame's view,
document, owner element and URI.

  • page/FrameTree.cpp:

(printIndent):
(printFrames):
(showFrameTree):

  • page/FrameTree.h:
  • rendering/RenderLayer.cpp:

(WebCore::RenderLayer::updateClipRects):

  • rendering/RenderLayerCompositor.cpp:

(WebCore::RenderLayerCompositor::requiresCompositingForFrame):

12:03 PM Changeset in webkit [98007] by leandro@webkit.org
  • 1 edit
    524 adds in trunk/LayoutTests

Unreviewed. Add EFL baselines for the selectors, table, text,
tokenizer, transforms, writing-mode, xsl suites inside the "fast" suite.

  • platform/efl/fast/selectors: [...]
  • platform/efl/fast/table: [...]
  • platform/efl/fast/text: [...]
  • platform/efl/fast/tokenizer: [...]
  • platform/efl/fast/transforms: [...]
  • platform/efl/fast/writing-mode: [...]
  • platform/efl/fast/xsl: [...]
11:37 AM Changeset in webkit [98006] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Remove StyleBase::cssText().
https://bugs.webkit.org/show_bug.cgi?id=70521

Patch by Andreas Kling <kling@webkit.org> on 2011-10-20
Reviewed by Antti Koivisto.

  • css/StyleBase.cpp:
  • css/StyleBase.h:
11:26 AM Changeset in webkit [98005] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

Playing HTMLAudioElement can be garbage collected
https://bugs.webkit.org/show_bug.cgi?id=66878

Patch by Eugene Nalimov <enal@chromium.org> on 2011-10-20
Reviewed by Adam Barth.

Make HTMLAudioElement an 'active' one, meaning that it cannot be
garbage collected if it has panding activity. Had to make
HTMLMediaElement::hasPendingActivity() and
HTMLAudioElement::hasPendingActivity() public, otherwise automatically
generated code would not compile.

Test: no test, as automatic test is blocked by
https://bugs.webkit.org/show_bug.cgi?id=70421
You don't want to sit down and listen if audio stream played completely,
and cannot rely on 'ended' event because events are lost when events
listener is collected.

  • html/HTMLAudioElement.idl:
  • html/HTMLAudioElement.h:

(WebCore::HTMLAudioElement::hasPendingActivity):

  • html/HTMLMediaElement.h:
11:25 AM Changeset in webkit [98004] by dcheng@chromium.org
  • 7 edits
    1 move
    6 adds
    2 deletes in trunk/LayoutTests

Update expectations after r97878.
https://bugs.webkit.org/show_bug.cgi?id=70527

Reviewed by Tony Chang.

  • platform/chromium-cg-mac-leopard/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png:
  • platform/chromium-cg-mac-leopard/editing/selection/drag-to-contenteditable-iframe-expected.png: Added.
  • platform/chromium-cg-mac-snowleopard/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: Added.
  • platform/chromium-cg-mac-snowleopard/editing/selection/drag-to-contenteditable-iframe-expected.png: Added.
  • platform/chromium-cg-mac/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: Removed.
  • platform/chromium-linux/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png:
  • platform/chromium-linux/editing/selection/drag-to-contenteditable-iframe-expected.png:
  • platform/chromium-mac-leopard/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: Added.
  • platform/chromium-mac-leopard/editing/selection/drag-to-contenteditable-iframe-expected.png: Renamed from LayoutTests/platform/chromium-mac/editing/selection/drag-to-contenteditable-iframe-expected.png.
  • platform/chromium-mac-snowleopard/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: Added.
  • platform/chromium-mac-snowleopard/editing/selection/drag-to-contenteditable-iframe-expected.png: Added.
  • platform/chromium-mac/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: Removed.
  • platform/chromium-win/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png:
  • platform/chromium-win/editing/selection/drag-to-contenteditable-iframe-expected.png:
  • platform/chromium/test_expectations.txt:
11:17 AM Changeset in webkit [98003] by Lucas Forschler
  • 1 copy in branches/safari-534.52-branch

New Branch.

11:14 AM Changeset in webkit [98002] by mhahnenberg@apple.com
  • 20 edits in trunk/Source

Rename static deleteProperty to deletePropertyByIndex
https://bugs.webkit.org/show_bug.cgi?id=70257

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

Renaming versions of deleteProperty that use an unsigned as the property
name to "deletePropertyByIndex" in preparation for adding them to the
MethodTable, which requires unique names for each method.

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

(JSC::::deletePropertyVirtual):
(JSC::::deletePropertyByIndex):

  • runtime/Arguments.cpp:

(JSC::Arguments::deletePropertyVirtual):
(JSC::Arguments::deletePropertyByIndex):

  • runtime/Arguments.h:
  • runtime/JSArray.cpp:

(JSC::JSArray::deletePropertyVirtual):
(JSC::JSArray::deletePropertyByIndex):

  • runtime/JSArray.h:
  • runtime/JSCell.cpp:

(JSC::JSCell::deletePropertyVirtual):
(JSC::JSCell::deletePropertyByIndex):

  • runtime/JSCell.h:
  • runtime/JSNotAnObject.cpp:

(JSC::JSNotAnObject::deletePropertyVirtual):
(JSC::JSNotAnObject::deletePropertyByIndex):

  • runtime/JSNotAnObject.h:
  • runtime/JSObject.cpp:

(JSC::JSObject::deletePropertyVirtual):
(JSC::JSObject::deletePropertyByIndex):

  • runtime/JSObject.h:
  • runtime/RegExpMatchesArray.h:

(JSC::RegExpMatchesArray::deletePropertyVirtual):
(JSC::RegExpMatchesArray::deletePropertyByIndex):

Source/WebCore:

No new tests.

Renaming versions of deleteProperty that use an unsigned as the property
name to "deletePropertyByIndex" in preparation for adding them to the
MethodTable, which requires unique names for each method.

  • bridge/runtime_array.cpp:

(JSC::RuntimeArray::deletePropertyVirtual):
(JSC::RuntimeArray::deletePropertyByIndex):

  • bridge/runtime_array.h:

Source/WebKit2:

Renaming versions of deleteProperty that use an unsigned as the property
name to "deletePropertyByIndex" in preparation for adding them to the
MethodTable, which requires unique names for each method.

  • WebProcess/Plugins/Netscape/JSNPObject.cpp:

(WebKit::JSNPObject::deletePropertyVirtual):
(WebKit::JSNPObject::deletePropertyByIndex):

  • WebProcess/Plugins/Netscape/JSNPObject.h:
11:12 AM Changeset in webkit [98001] by leandro@webkit.org
  • 1 edit
    385 adds in trunk/LayoutTests

Unreviewed. Add EFL baselines for the overflow, parser, reflections, regions,
repaint, replaced, ruby and runing suites inside the "fast" suites.

  • platform/efl/fast/overflow: [...]
  • platform/efl/fast/parser: [...]
  • platform/efl/fast/reflections: [...]
  • platform/efl/fast/regions: [...]
  • platform/efl/fast/repaint: [...]
  • platform/efl/fast/replaced: [...]
  • platform/efl/fast/ruby: [...]
  • platform/efl/fast/runin: [...]
11:05 AM Changeset in webkit [98000] by eric.carlson@apple.com
  • 12 edits
    6 moves in trunk/Source/WebCore

2011-10-20 Eric Carlson <eric.carlson@apple.com>

Rename some Cue classes to TextTrack
https://bugs.webkit.org/show_bug.cgi?id=70346

Rename CueLoader -> TextTrackLoader, CachedCues -> CachedTextTrack, and CueIndex -> TextTrackIndex.

Reviewed by Darin Adler.

No new tests, renames only.

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.xcodeproj/project.pbxproj:
  • html/CueIndex.cpp: Removed.
  • html/CueIndex.h: Removed.
  • html/LoadableTextTrack.cpp: (WebCore::LoadableTextTrack::load): (WebCore::LoadableTextTrack::newCuesAvailable): (WebCore::LoadableTextTrack::cueLoadingStarted): (WebCore::LoadableTextTrack::cueLoadingCompleted):
  • html/LoadableTextTrack.h: (WebCore::LoadableTextTrack::shouldLoadCues):
  • html/MutableTextTrack.h:
  • html/TextTrackIndex.cpp: Copied from Source/WebCore/html/CueIndex.cpp. (WebCore::TextTrackCueSet::difference): (WebCore::TextTrackCueSet::unionSet): (WebCore::TextTrackCueSet::add): (WebCore::TextTrackCueSet::contains): (WebCore::TextTrackCueSet::remove): (WebCore::TextTrackCueSet::isEmpty): (WebCore::TextTrackCueSet::size): (WebCore::TextTrackIndex::fetchNewCuesFromLoader): (WebCore::TextTrackIndex::removeCuesFromIndex): (WebCore::TextTrackIndex::visibleCuesAtTime): (WebCore::TextTrackIndex::add): (WebCore::TextTrackIndex::remove):
  • html/TextTrackIndex.h: Copied from Source/WebCore/html/CueIndex.h. (WebCore::TextTrackCueSet::TextTrackCueSet): (WebCore::TextTrackCueSet::~TextTrackCueSet):
  • loader/CueLoader.cpp: Removed.
  • loader/CueLoader.h: Removed.
  • loader/TextTrackLoader.cpp: Copied from Source/WebCore/loader/CueLoader.cpp. (WebCore::TextTrackLoader::TextTrackLoader): (WebCore::TextTrackLoader::~TextTrackLoader): (WebCore::TextTrackLoader::cueLoadTimerFired): (WebCore::TextTrackLoader::processNewCueData): (WebCore::TextTrackLoader::didReceiveData): (WebCore::TextTrackLoader::notifyFinished): (WebCore::TextTrackLoader::load): (WebCore::TextTrackLoader::newCuesParsed): (WebCore::TextTrackLoader::getNewCues):
  • loader/TextTrackLoader.h: Copied from Source/WebCore/loader/CueLoader.h. (WebCore::TextTrackLoaderClient::~TextTrackLoaderClient): (WebCore::TextTrackLoader::create):
  • loader/cache/CachedCues.cpp: Removed.
  • loader/cache/CachedCues.h: Removed.
  • loader/cache/CachedResourceLoader.cpp: (WebCore::createResource): (WebCore::CachedResourceLoader::requestCues):
  • loader/cache/CachedResourceLoader.h:
  • loader/cache/CachedTextTrack.cpp: Copied from Source/WebCore/loader/cache/CachedCues.cpp. (WebCore::CachedTextTrack::CachedTextTrack): (WebCore::CachedTextTrack::~CachedTextTrack): (WebCore::CachedTextTrack::data):
  • loader/cache/CachedTextTrack.h: Copied from Source/WebCore/loader/cache/CachedCues.h.
10:46 AM Changeset in webkit [97999] by leandro@webkit.org
  • 1 edit
    300 adds in trunk/LayoutTests

Unreviewed. Add more EFL baselines for the fast/ suite.

  • platform/efl/fast/images: [...]
  • platform/efl/fast/inline: [...]
  • platform/efl/fast/inline-block: [...]
  • platform/efl/fast/innerHTML: [...]
  • platform/efl/fast/inspector-support: [...]
  • platform/efl/fast/invalid: [...]
  • platform/efl/fast/layers: [...]
  • platform/efl/fast/lists: [...]
  • platform/efl/fast/media: [...]
  • platform/efl/fast/multicol: [...]
10:46 AM Changeset in webkit [97998] by commit-queue@webkit.org
  • 4 edits in trunk

[Chromium] Reduce dependencies of ImageDiff to compile it for Android.
https://bugs.webkit.org/show_bug.cgi?id=69997

Patch by Hao Zheng <zhenghao@chromium.org> on 2011-10-20
Reviewed by Tony Chang.

This change is required to make ImageDiff for Android, and can benefit
other platforms, too. On Android, most targets are built as
toolsets:target. while ImageDiff needs to be built as toolsets:host.
Currently, building the standalone target of ImageDiff depends on about
85 other targets (try make ImageDiff'), which is inefficient. After the
change, ImageDiff only depends on webkit_support_gfx, which in turn
depends on libpng and zlib.

Source/WebKit/chromium:

  • WebKit.gyp:

Tools:

  • DumpRenderTree/chromium/ImageDiff.cpp:

(main):

10:33 AM Changeset in webkit [97997] by Joseph Pecoraro
  • 3 edits in trunk/Source/WebCore

Remove Now Unused FileChooserSettings.deprecatedAcceptTypes
https://bugs.webkit.org/show_bug.cgi?id=70473

Reviewed by Dan Bernstein.

  • html/FileInputType.cpp:

(WebCore::FileInputType::handleDOMActivateEvent):
(WebCore::FileInputType::receiveDropForDirectoryUpload):

  • platform/FileChooser.h:
10:23 AM Changeset in webkit [97996] by leandro@webkit.org
  • 2 edits in trunk/Tools

[EFL] Unreviewed DumpRenderTree build fix.

  • DumpRenderTree/efl/LayoutTestControllerEfl.cpp:

(LayoutTestController::addChromeInputField): Add stub.
(LayoutTestController::removeChromeInputField): Ditto.
(LayoutTestController::focusWebView): Ditto.
(LayoutTestController::setBackingScaleFactor): Ditto.

10:19 AM Changeset in webkit [97995] by Csaba Osztrogonác
  • 771 edits in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 2)

  • platform/qt/css3/: [...]
  • platform/qt/Skipped:
10:10 AM Changeset in webkit [97994] by Csaba Osztrogonác
  • 781 edits in trunk/LayoutTests

[Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

Unreviewed. Update tests after r97990, and unskip them. (part 1)

  • platform/qt/animations/: [...]
  • platform/qt/css1/: [...]
  • platform/qt/css2.1/: [...]
  • platform/qt/Skipped:
10:03 AM Changeset in webkit [97993] by leandro@webkit.org
  • 1 edit
    415 adds in trunk/LayoutTests

Unreviewed. Add part of EFL baselines for the fast/ suite.

  • platform/efl/fast/doctypes: [...]
  • platform/efl/fast/dom: [...]
  • platform/efl/fast/dynamic: [...]
  • platform/efl/fast/encoding: [...]
  • platform/efl/fast/events: [...]
  • platform/efl/fast/fast-mobile-scrolling: [...]
  • platform/efl/fast/files: [...]
  • platform/efl/fast/flexbox: [...]
  • platform/efl/fast/forms: [...]
  • platform/efl/fast/frames: [...]
  • platform/efl/fast/gradients: [...]
10:02 AM Changeset in webkit [97992] by commit-queue@webkit.org
  • 2 edits
    1 add in trunk/Tools

[EFL] Plug ImageDiff/DumpRenderTree on CMake build system
https://bugs.webkit.org/show_bug.cgi?id=70142

Patch by Leandro Pereira <leandro@profusion.mobi> on 2011-10-20
Reviewed by Gustavo Noronha Silva.

  • CMakeListsEfl.txt: Include DRT CMakeLists.
  • DumpRenderTree/efl/CMakeLists.txt: Added.
9:57 AM Changeset in webkit [97991] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

Simplify CSSParser::document().
https://bugs.webkit.org/show_bug.cgi?id=70518

Reviewed by Antti Koivisto.

We don't need to climb up the entire parent chain here to find the
Document, just grab it from m_styleSheet (which will do the climbing
for us if necessary.)

  • css/CSSParser.cpp:

(WebCore::CSSParser::document):

9:49 AM Changeset in webkit [97990] by Csaba Osztrogonác
  • 4 edits in trunk

Source/WebCore: [Qt] FontCache::createFontPlatformData() is broken, a default font is returned
even if the family does not match.
https://bugs.webkit.org/show_bug.cgi?id=55036

The problem here was that a FontPlatformData
object is always created, regardless of whether
the request for a given font family can be
satisfied or not.

Patch by Pierre Rossi <pierre.rossi@gmail.com> on 2011-10-20
Reviewed by Andreas Kling.

Covered by existing tests.

  • platform/graphics/qt/FontCacheQt.cpp:

(WebCore::FontCache::createFontPlatformData):

LayoutTests: [Qt] Temporarily skip 5436 tests until rebaselines landed.

  • platform/qt/Skipped:
9:48 AM Changeset in webkit [97989] by kenneth@webkit.org
  • 4 edits in trunk/Source/WebCore

When user is panning with the tiled backing store, the page
isn't notified about the scroll position change
https://bugs.webkit.org/show_bug.cgi?id=70495

Reviewed by Simon Hausmann.

When using the tiled backing store the UI handles scrolling,
and sends setFixedVisibleContentRect after panning/scale ends.

If we actually changed position we need to send the scroll DOM event.

Covered by existing tests, though we are not testing the tiled backing store yet.

  • page/FrameView.cpp:

(WebCore::FrameView::setFixedVisibleContentRect):

  • page/FrameView.h:
  • platform/ScrollView.h:

(WebCore::ScrollView::setFixedVisibleContentRect):

9:45 AM Changeset in webkit [97988] by jknotten@chromium.org
  • 3 edits
    2 adds in trunk

Touch events should take page scale into account
https://bugs.webkit.org/show_bug.cgi?id=69798

Reviewed by Adam Barth.

Source/WebCore:

Test: fast/events/touch/page-scaled-touch-gesture-click.html

  • page/EventHandler.cpp:

(WebCore::EventHandler::handleTouchEvent):

LayoutTests:

  • fast/events/touch/page-scaled-touch-gesture-click-expected.txt: Added.
  • fast/events/touch/page-scaled-touch-gesture-click.html: Added.
9:41 AM Changeset in webkit [97987] by andreas.kling@nokia.com
  • 2 edits in trunk/Source/WebCore

CSSMutableStyleDeclaration: Simplify setNeedsStyleRecalc().
https://bugs.webkit.org/show_bug.cgi?id=70509

Reviewed by Antti Koivisto.

We don't need to climb up the entire parent chain here to find the
Document, just grab it from the parentStyleSheet() (which will do
the climbing for us if necessary.)

  • css/CSSMutableStyleDeclaration.cpp:

(WebCore::CSSMutableStyleDeclaration::setNeedsStyleRecalc):

9:33 AM Changeset in webkit [97986] by leandro@webkit.org
  • 1 edit
    823 adds in trunk/LayoutTests

Unreviewed. Add part of EFL baselines for the fast/ suite.

  • platform/efl/fast: Added.
  • platform/efl/fast/backgrounds: [...]
  • platform/efl/fast/block: [...]
  • platform/efl/fast/body-propagation: [...]
  • platform/efl/fast/borders: [...]
  • platform/efl/fast/box-shadow: [...]
  • platform/efl/fast/box-sizing: [...]
  • platform/efl/fast/canvas: [...]
  • platform/efl/fast/clip: [...]
  • platform/efl/fast/compact: [...]
  • platform/efl/fast/css: [...]
  • platform/efl/fast/css-generated-content: [...]
9:23 AM Changeset in webkit [97985] by andreas.kling@nokia.com
  • 15 edits in trunk/Source/WebCore

CSSStyleDeclaration: Remove inheritance from StyleBase.
https://bugs.webkit.org/show_bug.cgi?id=70411

Reviewed by Antti Koivisto.

  • bindings/js/JSDOMBinding.h:

(WebCore::root):

Specialized root() for CSSStyleDeclaration and CSSMutableStyleDeclaration.

  • css/CSSMutableStyleDeclaration.cpp:

(WebCore::CSSMutableStyleDeclaration::setNeedsStyleRecalc):

Start the parent chain traversal from the parentStyleSheet().

(WebCore::CSSMutableStyleDeclaration::addSubresourceStyleURLs):

  • css/CSSParser.cpp:

(WebCore::parseColorValue):
(WebCore::parseSimpleLengthValue):
(WebCore::CSSParser::parseValue):
(WebCore::CSSParser::parseColor):
(WebCore::CSSParser::parseDeclaration):

Remove now-unnecessary assertions and casts.

  • css/CSSStyleDeclaration.cpp:

(WebCore::CSSStyleDeclaration::CSSStyleDeclaration):

  • css/CSSStyleDeclaration.h:

(WebCore::CSSStyleDeclaration::~CSSStyleDeclaration):
(WebCore::CSSStyleDeclaration::parentRule):
(WebCore::CSSStyleDeclaration::setParentRule):
(WebCore::CSSStyleDeclaration::setParentStyleSheet):
(WebCore::CSSStyleDeclaration::parentStyleSheet):

Make CSSStyleDeclaration inherit directly from RefCounted, and have either
a CSSRule or CSSStyleSheet parent. Eventually it should only need to have
rules as parents, but CSSParser depends on having style sheet parents for
URL completion and primitive value cache.

  • css/StyleBase.h:
  • css/CSSStyleDeclaration.h:

(WebCore::CSSStyleDeclaration::isMutableStyleDeclaration):

Moved from StyleBase down to CSSStyleDeclaration.

  • css/CSSStyleRule.cpp:

(WebCore::CSSStyleRule::~CSSStyleRule):
(WebCore::CSSStyleRule::setSelectorText):

  • css/WebKitCSSKeyframeRule.cpp:

(WebCore::WebKitCSSKeyframeRule::~WebKitCSSKeyframeRule):
(WebCore::WebKitCSSKeyframeRule::setDeclaration):

  • css/WebKitCSSKeyframesRule.cpp:

(WebCore::WebKitCSSKeyframesRule::~WebKitCSSKeyframesRule):
(WebCore::WebKitCSSKeyframesRule::append):
(WebCore::WebKitCSSKeyframesRule::deleteRule):

  • dom/StyledElement.cpp:

(WebCore::StyledElement::createInlineStyleDecl):
(WebCore::StyledElement::destroyInlineStyleDecl):
(WebCore::StyledElement::attributeChanged):
(WebCore::StyledElement::createMappedDecl):
(WebCore::StyledElement::didMoveToNewOwnerDocument):

  • html/HTMLTableElement.cpp:

(WebCore::HTMLTableElement::additionalAttributeStyleDecls):
(WebCore::HTMLTableElement::addSharedCellBordersDecl):
(WebCore::HTMLTableElement::addSharedCellPaddingDecl):
(WebCore::HTMLTableElement::addSharedGroupDecls):

  • page/PageSerializer.cpp:

(WebCore::PageSerializer::retrieveResourcesForCSSDeclaration):

  • svg/SVGFontFaceElement.cpp:

(WebCore::SVGFontFaceElement::SVGFontFaceElement):

Use the new parenting methods of CSSStyleDeclaration.

  • css/StyleBase.cpp:

(WebCore::StyleBase::node):

Remove the isMutableStyleDeclaration() code path.

9:12 AM WebKit Team edited by Martin Robinson
(diff)
9:07 AM Changeset in webkit [97984] by pfeldman@chromium.org
  • 3 edits in trunk/Source/WebCore

Web Inspector: detach should call hide so that overrides are processed.
https://bugs.webkit.org/show_bug.cgi?id=70503

Reviewed by Yury Semikhatsky.

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.hide):

  • inspector/front-end/View.js:

(WebInspector.View):
(WebInspector.View.prototype.hide):
(WebInspector.View.prototype.detach):

8:47 AM Changeset in webkit [97983] by Philippe Normand
  • 3 edits in trunk/Tools

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

Reviewed by David Levin.

  • Scripts/webkitpy/style/checkers/cpp.py: Simplified the detection

of gst_ calls. Now just ignore NULL in all of them.

  • Scripts/webkitpy/style/checkers/cpp_unittest.py: Test for above change.
8:30 AM Changeset in webkit [97982] by Csaba Osztrogonác
  • 10 edits in trunk/Source/WebCore

[Qt] Roll-back r97964, r97972 and fix in https://bugs.webkit.org/show_bug.cgi?id=70328.

  • dom/DeviceMotionController.cpp:

(WebCore::DeviceMotionController::timerFired):
(WebCore::DeviceMotionController::addListener):
(WebCore::DeviceMotionController::removeListener):
(WebCore::DeviceMotionController::removeAllListeners):
(WebCore::DeviceMotionController::suspend):
(WebCore::DeviceMotionController::resume):

  • dom/DeviceMotionController.h:
  • dom/DeviceOrientationController.cpp:

(WebCore::DeviceOrientationController::suspend):
(WebCore::DeviceOrientationController::resume):

  • dom/DeviceOrientationController.h:
  • dom/Document.cpp:

(WebCore::Document::suspendActiveDOMObjects):
(WebCore::Document::resumeActiveDOMObjects):
(WebCore::Document::stopActiveDOMObjects):

  • dom/Document.h:
  • dom/ScriptExecutionContext.h:
  • page/GeolocationController.cpp:

(WebCore::GeolocationController::suspend):
(WebCore::GeolocationController::resume):

  • page/GeolocationController.h:
8:18 AM Changeset in webkit [97981] by commit-queue@webkit.org
  • 10 edits in trunk/Source/WebCore

Unreviewed, rolling out r97964 and r97972.
http://trac.webkit.org/changeset/97964
http://trac.webkit.org/changeset/97972
https://bugs.webkit.org/show_bug.cgi?id=70502

They broke all geolocation tests in debug mode (Requested by
Ossy on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-20

  • dom/DeviceMotionController.cpp:

(WebCore::DeviceMotionController::timerFired):
(WebCore::DeviceMotionController::addListener):
(WebCore::DeviceMotionController::removeListener):
(WebCore::DeviceMotionController::removeAllListeners):

  • dom/DeviceMotionController.h:
  • dom/DeviceOrientationController.cpp:
  • dom/DeviceOrientationController.h:
  • dom/Document.cpp:
  • dom/Document.h:
  • dom/ScriptExecutionContext.h:
  • page/GeolocationController.cpp:
  • page/GeolocationController.h:
8:18 AM Changeset in webkit [97980] by commit-queue@webkit.org
  • 2 edits in trunk/LayoutTests

[Qt] Removing test from Skipped list. Test passes: fast/text/justify-padding-distribution.html
https://bugs.webkit.org/show_bug.cgi?id=40584

Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2011-10-20
Reviewed by Andreas Kling.

  • platform/qt/Skipped:
8:00 AM Changeset in webkit [97979] by kov@webkit.org
  • 2 edits in trunk/Source/WebKit/gtk

[GTK] webkitgtk's pkgconfig file needs to require javascriptcoregtk
https://bugs.webkit.org/show_bug.cgi?id=70500

Reviewed by Philippe Normand.

  • webkit.pc.in: add javascriptcoregtk to Requires
7:56 AM WebKitGTK/1.6.x edited by kov@webkit.org
(diff)
7:55 AM Changeset in webkit [97978] by loislo@chromium.org
  • 2 edits in trunk/Source/WebCore

Unreviewed fix for Date.prototype.toISO8601Compact.
It was generated wrong string for the dates with no leading zeros like 2011.11.11.

  • inspector/front-end/utilities.js:
7:51 AM Changeset in webkit [97977] by pfeldman@chromium.org
  • 4 edits in trunk/Source/WebCore

Web Inspector: minor CPU profiling UX improvements
https://bugs.webkit.org/show_bug.cgi?id=70499

Store profile type. Store time percentage toggle state.

Reviewed by Yury Semikhatsky.

  • inspector/front-end/ProfileDataGridTree.js:
  • inspector/front-end/ProfileView.js:

(WebInspector.CPUProfileView.profileCallback):
(WebInspector.CPUProfileView.prototype._changeView.set else):

7:29 AM Changeset in webkit [97976] by leandro@webkit.org
  • 3 edits in trunk/Tools

[EFL] Unreviewed. Build fix after r97043.

  • DumpRenderTree/efl/DumpRenderTreeChrome.cpp:

(DumpRenderTreeChrome::resetDefaultsToConsistentValues): Use ewk_view_scale_set() instead of ewk_view_page_scale().

  • DumpRenderTree/efl/EventSender.cpp:

(scalePageByCallback): Ditto.

7:22 AM Changeset in webkit [97975] by vsevik@chromium.org
  • 10 edits in trunk

Web Inspector: Advanced search results should keep working after pretty print toggled.
https://bugs.webkit.org/show_bug.cgi?id=70347

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.SearchScope.prototype.createSearchResultsPane):
(WebInspector.FileBasedSearchResultsPane.prototype.createAnchor):
(WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult):
(WebInspector.FileBasedSearchResultsPane.prototype._regexMatchRanges):
(WebInspector.FileBasedSearchResultsPane.prototype._createContentSpan):

  • inspector/front-end/BreakpointManager.js:

(WebInspector.BreakpointManager.prototype._materializeBreakpoint):

  • inspector/front-end/CompilerSourceMapping.js:

(WebInspector.CompilerSourceMapping.prototype.sourceLocationToCompiledLocation):

  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel.prototype.createLinkifier):
(WebInspector.DebuggerPresentationModel.prototype.continueToLine):
(WebInspector.DebuggerPresentationModel.LinkifierFormatter):
(WebInspector.DebuggerPresentationModel.LinkifierFormatter.prototype.formatRawSourceCodeAnchor):
(WebInspector.DebuggerPresentationModel.DefaultLinkifierFormatter):
(WebInspector.DebuggerPresentationModel.DefaultLinkifierFormatter.prototype.formatRawSourceCodeAnchor):
(WebInspector.DebuggerPresentationModel.Linkifier):
(WebInspector.DebuggerPresentationModel.Linkifier.prototype.linkifyLocation):
(WebInspector.DebuggerPresentationModel.Linkifier.prototype.linkifyResource):
(WebInspector.DebuggerPresentationModel.Linkifier.prototype.linkifyRawSourceCode):
(WebInspector.DebuggerPresentationModel.Linkifier.prototype._updateAnchor):

  • inspector/front-end/RawSourceCode.js:

(WebInspector.RawSourceCode.SourceMapping.prototype.uiLocationToRawLocation):
(WebInspector.RawSourceCode.PlainSourceMapping.prototype.uiLocationToRawLocation):
(WebInspector.RawSourceCode.FormattedSourceMapping.prototype.uiLocationToRawLocation):
(WebInspector.RawSourceCode.CompilerSourceMapping.prototype.uiLocationToRawLocation):

  • inspector/front-end/ScriptsSearchScope.js:

(WebInspector.ScriptsSearchResultsPane):
(WebInspector.ScriptsSearchResultsPane.prototype.createAnchor):
(WebInspector.ScriptsSearchResultsPane.LinkifierFormatter):
(WebInspector.ScriptsSearchResultsPane.LinkifierFormatter.prototype.formatRawSourceCodeAnchor):

  • inspector/front-end/inspector.html:

LayoutTests:

  • inspector/debugger/raw-source-code.html:
7:16 AM WebKitGTK/1.6.x edited by kov@webkit.org
Propose merging of streamlined gtk-doc build (diff)
7:13 AM Changeset in webkit [97974] by leandro@webkit.org
  • 1 edit
    86 adds in trunk/LayoutTests

Unreviewed. Add EFL baselines for dom, editing, fonts, mathml, media, printing, scrollbars and security.

  • platform/efl/dom: [...]
  • platform/efl/editing: [...]
  • platform/efl/fonts: [...]
  • platform/efl/mathml: [...]
  • platform/efl/media: [...]
  • platform/efl/printing: [...]
  • platform/efl/scrollbars: [...]
  • platform/efl/security: [...]
6:38 AM Changeset in webkit [97973] by Csaba Osztrogonác
  • 991 edits
    143 moves
    1067 deletes in trunk/LayoutTests

[Qt] Move qt-4.8 platform to qt platform.

Now Qt 4.8 results are default, 4.7 results aren't supported anymore.

  • platform/qt: [...]
  • platform/qt-4.8: [...]
6:21 AM Changeset in webkit [97972] by kenneth@webkit.org
  • 2 edits in trunk/Source/WebCore

m_client in DeviceMotionController can never be 0, so no need to check for it
https://bugs.webkit.org/show_bug.cgi?id=70490

Reviewed by Simon Hausmann.

No behavior change, thus no new tests.

  • dom/DeviceMotionController.cpp:

(WebCore::DeviceMotionController::timerFired):
(WebCore::DeviceMotionController::addListener):
(WebCore::DeviceMotionController::removeListener):
(WebCore::DeviceMotionController::removeAllListeners):
(WebCore::DeviceMotionController::suspend):
(WebCore::DeviceMotionController::resume):

6:18 AM Changeset in webkit [97971] by caryclark@google.com
  • 2 edits in trunk/Source/WebCore

[Chromium Skia on Mac] Improve focus ring
https://bugs.webkit.org/show_bug.cgi?id=70124

Reviewed by Adam Barth.

The focus ring code formerly outset the bounds of
the component rectangles by fractional amounts. Because
the rectangles are SkIRect (integer based), the fractional
outset had no effect.

The equivalent code in GraphicsContextMac.mm computes
the curve radius and rectangle outset with integers, so
the use of floats in Skia's case, besides not working,
is unnecessary.

The Skia code also failed to take the offset into account.
In LayoutTests, the focus rings either have an offset of
0 or 2. The CoreGraphics code increases the ring's rectangles
by the offset, then passes the result to wkDrawFocusRing.

I did not find any documentation about how wkDrawFocusRing
further inflates the focus ring, but empirically I determined
that adding 2 to the offset generated rings with identical
outer diameters.

With these adjustments, the layout tests generate focus rings
in the Skia on Mac case that match the coverage of the
Chromium CG-based platform, in particular, matching:

editing/inserting/editable-inline-element.html
editing/selection/3690703-2.html

  • platform/graphics/skia/GraphicsContextSkia.cpp:

(WebCore::getFocusRingOutset):
(WebCore::GraphicsContext::drawFocusRing):

6:05 AM Changeset in webkit [97970] by zherczeg@webkit.org
  • 2 edits in trunk/Source/WebCore

Improve NEON based GaussianBlur
https://bugs.webkit.org/show_bug.cgi?id=70493

Reviewed by Csaba Osztrogonác.

vmov instruction is less complex than vtbl.

  • platform/graphics/filters/arm/FEGaussianBlurNEON.cpp:
5:57 AM Changeset in webkit [97969] by leandro@webkit.org
  • 1 edit
    115 adds in trunk/LayoutTests

Unreviewed. Adding EFL baselines for animations, compositing, transforms and transitions.

  • platform/efl/animations: Added.
  • platform/efl/animations/missing-values-first-keyframe-expected.txt: Added.
  • platform/efl/animations/missing-values-last-keyframe-expected.txt: Added.
  • platform/efl/animations/state-at-end-event-expected.txt: Added.
  • platform/efl/compositing: Added.
  • platform/efl/compositing/animation: Added.
  • platform/efl/compositing/animation/state-at-end-event-transform-layer-expected.txt: Added.
  • platform/efl/compositing/color-matching: Added.
  • platform/efl/compositing/color-matching/image-color-matching-expected.txt: Added.
  • platform/efl/compositing/color-matching/pdf-image-match-expected.txt: Added.
  • platform/efl/compositing/compositing-visible-descendant-expected.txt: Added.
  • platform/efl/compositing/direct-image-compositing-expected.txt: Added.
  • platform/efl/compositing/framesets: Added.
  • platform/efl/compositing/generated-content-expected.txt: Added.
  • platform/efl/compositing/geometry: Added.
  • platform/efl/compositing/geometry/abs-position-inside-opacity-expected.txt: Added.
  • platform/efl/compositing/geometry/clipped-video-controller-expected.txt: Added.
  • platform/efl/compositing/geometry/clipping-foreground-expected.txt: Added.
  • platform/efl/compositing/geometry/composited-html-size-expected.txt: Added.
  • platform/efl/compositing/geometry/fixed-in-composited-expected.txt: Added.
  • platform/efl/compositing/geometry/fixed-position-expected.txt: Added.
  • platform/efl/compositing/geometry/horizontal-scroll-composited-expected.txt: Added.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-deep-expected.txt: Added.
  • platform/efl/compositing/geometry/layer-due-to-layer-children-expected.txt: Added.
  • platform/efl/compositing/geometry/limit-layer-bounds-overflow-repaint-expected.txt: Added.
  • platform/efl/compositing/geometry/outline-change-expected.txt: Added.
  • platform/efl/compositing/geometry/partial-layout-update-expected.txt: Added.
  • platform/efl/compositing/geometry/root-layer-update-expected.txt: Added.
  • platform/efl/compositing/geometry/tall-page-composited-expected.txt: Added.
  • platform/efl/compositing/geometry/transfrom-origin-on-zero-size-layer-expected.txt: Added.
  • platform/efl/compositing/geometry/vertical-scroll-composited-expected.txt: Added.
  • platform/efl/compositing/geometry/video-fixed-scrolling-expected.txt: Added.
  • platform/efl/compositing/geometry/video-opacity-overlay-expected.txt: Added.
  • platform/efl/compositing/iframes: Added.
  • platform/efl/compositing/iframes/composited-iframe-alignment-expected.txt: Added.
  • platform/efl/compositing/iframes/iframe-copy-on-scroll-expected.txt: Added.
  • platform/efl/compositing/iframes/iframe-in-composited-layer-expected.txt: Added.
  • platform/efl/compositing/images: Added.
  • platform/efl/compositing/images/direct-image-background-color-expected.txt: Added.
  • platform/efl/compositing/layers-inside-overflow-scroll-expected.txt: Added.
  • platform/efl/compositing/masks: Added.
  • platform/efl/compositing/masks/direct-image-mask-expected.txt: Added.
  • platform/efl/compositing/masks/masked-ancestor-expected.txt: Added.
  • platform/efl/compositing/masks/multiple-masks-expected.txt: Added.
  • platform/efl/compositing/masks/simple-composited-mask-expected.txt: Added.
  • platform/efl/compositing/overflow: Added.
  • platform/efl/compositing/overflow/ancestor-overflow-expected.txt: Added.
  • platform/efl/compositing/overflow/fixed-position-ancestor-clip-expected.txt: Added.
  • platform/efl/compositing/overflow/overflow-compositing-descendant-expected.txt: Added.
  • platform/efl/compositing/overflow/overflow-positioning-expected.txt: Added.
  • platform/efl/compositing/overflow/overflow-scroll-expected.txt: Added.
  • platform/efl/compositing/overflow/parent-overflow-expected.txt: Added.
  • platform/efl/compositing/overflow/scroll-ancestor-update-expected.txt: Added.
  • platform/efl/compositing/overflow/scrollbar-painting-expected.txt: Added.
  • platform/efl/compositing/plugins: Added.
  • platform/efl/compositing/plugins/composited-plugin-expected.txt: Added.
  • platform/efl/compositing/reflections: Added.
  • platform/efl/compositing/reflections/animation-inside-reflection-expected.txt: Added.
  • platform/efl/compositing/reflections/compositing-change-inside-reflection-expected.txt: Added.
  • platform/efl/compositing/reflections/deeply-nested-reflections-expected.txt: Added.
  • platform/efl/compositing/reflections/load-video-in-reflection-expected.txt: Added.
  • platform/efl/compositing/reflections/masked-reflection-on-composited-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-anchor-point-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-animated-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-mask-change-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-on-overflow-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-opacity-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-size-change-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-transformed-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-transformed2-expected.txt: Added.
  • platform/efl/compositing/reflections/nested-reflection-transition-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-in-composited-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-on-composited-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-opacity-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-ordering-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-positioning-expected.txt: Added.
  • platform/efl/compositing/reflections/reflection-positioning2-expected.txt: Added.
  • platform/efl/compositing/reflections/simple-composited-reflections-expected.txt: Added.
  • platform/efl/compositing/reflections/transform-inside-reflection-expected.txt: Added.
  • platform/efl/compositing/repaint: Added.
  • platform/efl/compositing/repaint/become-overlay-composited-layer-expected.txt: Added.
  • platform/efl/compositing/repaint/composited-document-element-expected.txt: Added.
  • platform/efl/compositing/repaint/content-into-overflow-expected.txt: Added.
  • platform/efl/compositing/repaint/layer-repaint-expected.txt: Added.
  • platform/efl/compositing/repaint/layer-repaint-rects-expected.txt: Added.
  • platform/efl/compositing/repaint/opacity-between-absolute-expected.txt: Added.
  • platform/efl/compositing/repaint/opacity-between-absolute2-expected.txt: Added.
  • platform/efl/compositing/repaint/overflow-into-content-expected.txt: Added.
  • platform/efl/compositing/scaling: Added.
  • platform/efl/compositing/self-painting-layers-expected.txt: Added.
  • platform/efl/compositing/shadows: Added.
  • platform/efl/compositing/shadows/shadow-drawing-expected.txt: Added.
  • platform/efl/compositing/sibling-positioning-expected.txt: Added.
  • platform/efl/compositing/text-on-large-layer-expected.txt: Added.
  • platform/efl/compositing/transitions: Added.
  • platform/efl/compositing/transitions/scale-transition-no-start-expected.txt: Added.
  • platform/efl/compositing/transitions/singular-scale-transition-expected.txt: Added.
  • platform/efl/compositing/video: Added.
  • platform/efl/compositing/video/video-background-color-expected.txt: Added.
  • platform/efl/transforms: Added.
  • platform/efl/transforms/2d: Added.
  • platform/efl/transforms/2d/compound-transforms-vs-containers-expected.txt: Added.
  • platform/efl/transforms/2d/hindi-rotated-expected.txt: Added.
  • platform/efl/transforms/2d/transform-borderbox-expected.txt: Added.
  • platform/efl/transforms/2d/transform-fixed-container-expected.txt: Added.
  • platform/efl/transforms/2d/transform-origin-borderbox-expected.txt: Added.
  • platform/efl/transforms/2d/zoom-menulist-expected.txt: Added.
  • platform/efl/transforms/no_transform_hit_testing-expected.txt: Added.
  • platform/efl/transforms/svg-vs-css-expected.txt: Added.
  • platform/efl/transitions: Added.
  • platform/efl/transitions/default-timing-function-expected.txt: Added.
  • platform/efl/transitions/move-after-transition-expected.txt: Added.
  • platform/efl/transitions/svg-text-shadow-transition-expected.txt: Added.
  • platform/efl/transitions/transition-end-event-rendering-expected.txt: Added.
5:50 AM Changeset in webkit [97968] by leandro@webkit.org
  • 1 edit
    967 adds in trunk/LayoutTests

Unreviewed. Add EFL baselines for table tests.

  • platform/efl/tables: Added.
  • platform/efl/tables/layering: Added.
  • platform/efl/tables/layering/paint-test-layering-1-expected.txt: Added.
  • platform/efl/tables/layering/paint-test-layering-2-expected.txt: Added.
  • platform/efl/tables/mozilla: Added.
  • platform/efl/tables/mozilla/bugs: Added.
  • platform/efl/tables/mozilla/bugs/45621-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/adforce_imgis_com-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10009-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug100334-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10036-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10039-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug101201-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug101674-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug102145-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug102145-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug102145-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug102145-4-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10269-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10269-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10296-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10296-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug103533-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1055-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10565-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug106158-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug106158-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug10633-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1067-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1067-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug106795-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug106816-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug108340-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug109043-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug11026-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug110566-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug11321-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug113235-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug113235-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug113235-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug113424-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug11384q-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug11384s-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1163-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1188-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug11944-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug119786-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12008-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug120107-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug120364-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1220-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1224-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12268-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12384-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug123862-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1261-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug126742-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12709-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1271-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug127267-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug128229-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12908-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12908-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12910-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug12910-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1296-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1302-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug131020-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug131020-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug131020_iframe-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13105-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13118-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13169-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1318-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13196-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug133756-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug133756-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug133948-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13484-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug13526-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug137388-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug137388-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug137388-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug138725-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug139524-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug139524-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug139524-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug139524-4-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug14159-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug14159-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1430-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug14323-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug145572-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1474-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug149275-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug149275-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug14929-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug15247-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug154780-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug15544-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug157890-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug159108-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug15933-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug16012-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug16252-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17130-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17130-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17138-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17168-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug175455-4-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17548-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug17587-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1800-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1802-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1802s-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1809-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-4-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-5-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1818-6-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug1828-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug18359-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug18440-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug18558-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug18664-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug18955-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug19061-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug19061-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug19356-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug194024-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug19599-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug196870-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2050-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug20579-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2065-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug20804-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2123-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug21299-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug215629-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug21918-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug219693-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug219693-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22019-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug220536-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug221784-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug221784-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug222336-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22246-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22246-2a-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22246-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22246-3a-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug222467-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug222846-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug22513-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2267-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug227123-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2296-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug23072-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug23151-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug23235-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug23299-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug23994-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug24200-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug24503-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug24627-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug24661-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2469-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2479-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2479-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2479-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2479-4-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug24880-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug25004-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug25074-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug25086-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2509-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2516-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug25367-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug25663-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2585-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug26178-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug26553-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2684-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug269566-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug27038-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug27038-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug27038-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug275625-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2757-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2763-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug277062-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2773-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug278266-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug278385-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug27993-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug28341-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2886-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2886-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug28928-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug28933-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29058-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29058-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29157-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29314-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29326-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug29429-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2947-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2954-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2962-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2973-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2981-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2981-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug2997-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30273-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30332-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30332-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3037-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3037-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30418-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30559-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30692-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug30985-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3103-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3191-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug32205-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug32205-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug32205-5-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug32447-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3260-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3263-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug32841-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3309-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3309-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug33137-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug33855-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug34176-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug34538-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3454-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug35662-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3681-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3681-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3718-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug38916-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug39209-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug3977-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug40828-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4093-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug41890-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug42187-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug42443-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4284-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug43039-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug43204-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4382-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4385-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug43854-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug43854-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4427-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4429-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug44505-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug44523-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4501-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug45055-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug45055-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4520-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4523-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4527-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug45350-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug45486-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4576-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46268-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46268-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46268-3-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46268-5-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46268-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46368-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46368-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46480-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46480-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46623-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46623-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46924-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug46944-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4739-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug47432-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug48028-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug48028-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4803-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4849-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug4849-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug48827-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug50695-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug50695-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug51037-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug51140-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug51727-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5188-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug52505-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug52506-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug53690-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug53690-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug53891-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug54450-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5538-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug55527-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug55545-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug55694-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug55789-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug56201-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug56405-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug56563-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug57300-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug57378-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug57828-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug57828-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5797-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5798-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5799-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5835-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug5838-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug58402-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug59354-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug60013-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug60749-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug60804-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug60807-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug60992-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug6184-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug625-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug6304-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug63785-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug6404-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug641-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug641-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug647-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug650-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug6674-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug67864-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug67915-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug68912-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug68998-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug69187-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug69382-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug69382-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug709-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7112-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7112-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7121-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug72359-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug727-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug73321-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7342-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7471-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug75250-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug7714-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug78162-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8032-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8032-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug80762-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug81934-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug82946-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug82946-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8361-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug83786-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8381-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8411-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug86220-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug86708-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug88035-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug88035-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug88524-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8858-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug8950-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9024-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9072-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9123-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9123-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug92143-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug92647-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9271-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9271-2-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug92868-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug93363-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug963-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug96334-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug96343-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug965-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug97138-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug97383-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug98196-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug9879-1-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug99923-expected.txt: Added.
  • platform/efl/tables/mozilla/bugs/bug99948-expected.txt: Added.
  • platform/efl/tables/mozilla/collapsing_borders: Added.
  • platform/efl/tables/mozilla/collapsing_borders/bug127040-expected.txt: Added.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-3-expected.txt: Added.
  • platform/efl/tables/mozilla/collapsing_borders/bug41262-4-expected.txt: Added.
  • platform/efl/tables/mozilla/core: Added.
  • platform/efl/tables/mozilla/core/bloomberg-expected.txt: Added.
  • platform/efl/tables/mozilla/core/borders-expected.txt: Added.
  • platform/efl/tables/mozilla/core/box_sizing-expected.txt: Added.
  • platform/efl/tables/mozilla/core/captions-expected.txt: Added.
  • platform/efl/tables/mozilla/core/cell_heights-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_span-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_auto-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFix-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoFixPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_autoPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_fix-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_fixPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_auto_per-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_auto-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoFix-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoFixPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_autoPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_fix-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_fixPer-expected.txt: Added.
  • platform/efl/tables/mozilla/core/col_widths_fix_per-expected.txt: Added.
  • platform/efl/tables/mozilla/core/margins-expected.txt: Added.
  • platform/efl/tables/mozilla/core/misc-expected.txt: Added.
  • platform/efl/tables/mozilla/core/nested1-expected.txt: Added.
  • platform/efl/tables/mozilla/core/one_row-expected.txt: Added.
  • platform/efl/tables/mozilla/core/row_span-expected.txt: Added.
  • platform/efl/tables/mozilla/core/table_frame-expected.txt: Added.
  • platform/efl/tables/mozilla/core/table_heights-expected.txt: Added.
  • platform/efl/tables/mozilla/core/table_rules-expected.txt: Added.
  • platform/efl/tables/mozilla/core/table_widths-expected.txt: Added.
  • platform/efl/tables/mozilla/dom: Added.
  • platform/efl/tables/mozilla/dom/appendCol2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/appendRowsExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/appendTbodyExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCellsRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCellsShrink2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCol1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCol2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteCol3-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteColGroup1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteColGroup2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteRowsRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteRowsShrink1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteTbodyExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/deleteTbodyRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCellsExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCellsExpand2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCellsRebuild2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertColGroups1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertColGroups2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCols1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCols2-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCols3-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCols4-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertCols5-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertRowsExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/insertRowsRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla/dom/tableDom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin: Added.
  • platform/efl/tables/mozilla/marvin/backgr_index-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_layers-opacity-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_position-table-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/body_col-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/body_tbody-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/body_tfoot-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/body_thead-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/col_span-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_span-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_width_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/colgroup_width_px-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_frame_border-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_frame_box-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_overflow_hidden_td-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_row_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_row_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_row_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_rules_all-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_rules_groups-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/table_rules_none-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_border_0-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_border_1-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_border_2-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_border_3-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_bot-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_caption_align_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_cellpadding_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_cellspacing-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_default-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_row_th_nowrap-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_colspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_height-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_nowrap-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_rowspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_td_width-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_colspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_height-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_rowspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_th_width-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_width_percent-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tables_width_px-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tbody_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/td_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/td_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/td_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/td_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tfoot_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/th_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/th_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/th_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/th_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/thead_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/tr_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_caption_align_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_caption_align_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_caption_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_caption_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_caption_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_span-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_width_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_width_px-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_col_width_rel-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_span-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_colgroup_width_rel-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_name-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_border-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_border_none-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_border_px-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_cellpadding_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_cellspacing_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_frame_void-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_rules_groups-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_rules_none-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_width_pct-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_table_width_px-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tbody_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_name-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_colspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_height-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_nowrap-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_rowspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_td_width-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tfoot_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_name-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_colspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_height-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_nowrap-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_rowspan-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_th_width-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_thead_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_align_center-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_align_char-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_align_justify-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_name-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_class-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_id-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_style-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_baseline-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla/marvin/x_tr_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla/other: Added.
  • platform/efl/tables/mozilla/other/body_col-expected.txt: Added.
  • platform/efl/tables/mozilla/other/cell_widths-expected.txt: Added.
  • platform/efl/tables/mozilla/other/cellspacing-expected.txt: Added.
  • platform/efl/tables/mozilla/other/move_row-expected.txt: Added.
  • platform/efl/tables/mozilla/other/ms-expected.txt: Added.
  • platform/efl/tables/mozilla/other/nested2-expected.txt: Added.
  • platform/efl/tables/mozilla/other/nestedTables-expected.txt: Added.
  • platform/efl/tables/mozilla/other/padding-expected.txt: Added.
  • platform/efl/tables/mozilla/other/slashlogo-expected.txt: Added.
  • platform/efl/tables/mozilla/other/test3-expected.txt: Added.
  • platform/efl/tables/mozilla/other/test6-expected.txt: Added.
  • platform/efl/tables/mozilla/other/wa_table_thtd_rowspan-expected.txt: Added.
  • platform/efl/tables/mozilla/other/wa_table_tr_align-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/97619-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1010-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10140-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug101759-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug10216-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug104898-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1055-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106336-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug106966-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1128-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11331-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1164-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug11945-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1262-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug128876-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug131020-3-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14159-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug14489-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1647-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug1725-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug17826-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug178855-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug18770-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug19526-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug21518-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug220653-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug22122-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug23847-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug2479-5-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug24880-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug25707-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug27993-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug29058-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3105-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-10-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-11-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-12-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-13-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-14-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-15-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-16-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-17-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-18-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-3-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-4-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-5-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-6-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-7-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-8-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3166-9-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug32205-4-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug33784-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug3517-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug42043-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug4294-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug45621-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug46268-4-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug47163-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug51000-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug58402-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug59252-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug61042-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug65372-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug67915-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug6933-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7113-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7121-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug72393-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug7243-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug73629-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug80762-2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug8499-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug85016-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug89315-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug91057-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92647-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug92868_1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/bugs/bug9879-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders: Added.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core: Added.
  • platform/efl/tables/mozilla_expected_failures/core/backgrounds-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/captions1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/captions2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/captions3-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/col_span2-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/cols1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/columns-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/conflicts-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/core/standards1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCells1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/appendCol1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/appendColGroup1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-cell-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-column-group-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-quirks-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_fixed-bg-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-column-group-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_above-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_below-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_void-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_table-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/other: Added.
  • platform/efl/tables/mozilla_expected_failures/other/empty_cells-expected.txt: Added.
  • platform/efl/tables/mozilla_expected_failures/other/test4-expected.txt: Added.
5:17 AM Changeset in webkit [97967] by leandro@webkit.org
  • 1 edit
    1605 adds in trunk/LayoutTests

Unreviewed. Add CSS1, CSS2.1 and CSS3 baselines for the EFL port.

  • platform/efl/css1: Added.
  • platform/efl/css1/basic: Added.
  • platform/efl/css1/basic/class_as_selector-expected.txt: Added.
  • platform/efl/css1/basic/comments-expected.txt: Added.
  • platform/efl/css1/basic/containment-expected.txt: Added.
  • platform/efl/css1/basic/contextual_selectors-expected.txt: Added.
  • platform/efl/css1/basic/grouping-expected.txt: Added.
  • platform/efl/css1/basic/id_as_selector-expected.txt: Added.
  • platform/efl/css1/basic/inheritance-expected.txt: Added.
  • platform/efl/css1/box_properties: Added.
  • platform/efl/css1/box_properties/acid_test-expected.txt: Added.
  • platform/efl/css1/box_properties/border-expected.txt: Added.
  • platform/efl/css1/box_properties/border_bottom-expected.txt: Added.
  • platform/efl/css1/box_properties/border_bottom_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_bottom_width-expected.txt: Added.
  • platform/efl/css1/box_properties/border_bottom_width_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_color-expected.txt: Added.
  • platform/efl/css1/box_properties/border_color_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_left-expected.txt: Added.
  • platform/efl/css1/box_properties/border_left_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_left_width-expected.txt: Added.
  • platform/efl/css1/box_properties/border_left_width_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_right-expected.txt: Added.
  • platform/efl/css1/box_properties/border_right_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_right_width-expected.txt: Added.
  • platform/efl/css1/box_properties/border_right_width_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_style-expected.txt: Added.
  • platform/efl/css1/box_properties/border_style_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_top-expected.txt: Added.
  • platform/efl/css1/box_properties/border_top_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_top_width-expected.txt: Added.
  • platform/efl/css1/box_properties/border_top_width_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/border_width-expected.txt: Added.
  • platform/efl/css1/box_properties/border_width_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/clear-expected.txt: Added.
  • platform/efl/css1/box_properties/clear_float-expected.txt: Added.
  • platform/efl/css1/box_properties/float-expected.txt: Added.
  • platform/efl/css1/box_properties/float_elements_in_series-expected.txt: Added.
  • platform/efl/css1/box_properties/float_margin-expected.txt: Added.
  • platform/efl/css1/box_properties/float_on_text_elements-expected.txt: Added.
  • platform/efl/css1/box_properties/height-expected.txt: Added.
  • platform/efl/css1/box_properties/margin-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_bottom-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_bottom_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_left-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_left_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_right-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_right_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_top-expected.txt: Added.
  • platform/efl/css1/box_properties/margin_top_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/padding-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_bottom-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_bottom_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_left-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_left_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_right-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_right_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_top-expected.txt: Added.
  • platform/efl/css1/box_properties/padding_top_inline-expected.txt: Added.
  • platform/efl/css1/box_properties/width-expected.txt: Added.
  • platform/efl/css1/cascade: Added.
  • platform/efl/css1/cascade/cascade_order-expected.txt: Added.
  • platform/efl/css1/cascade/important-expected.txt: Added.
  • platform/efl/css1/classification: Added.
  • platform/efl/css1/classification/display-expected.txt: Added.
  • platform/efl/css1/classification/list_style-expected.txt: Added.
  • platform/efl/css1/classification/list_style_image-expected.txt: Added.
  • platform/efl/css1/classification/list_style_position-expected.txt: Added.
  • platform/efl/css1/classification/list_style_type-expected.txt: Added.
  • platform/efl/css1/classification/white_space-expected.txt: Added.
  • platform/efl/css1/color_and_background: Added.
  • platform/efl/css1/color_and_background/background-expected.txt: Added.
  • platform/efl/css1/color_and_background/background_attachment-expected.txt: Added.
  • platform/efl/css1/color_and_background/background_color-expected.txt: Added.
  • platform/efl/css1/color_and_background/background_image-expected.txt: Added.
  • platform/efl/css1/color_and_background/background_position-expected.txt: Added.
  • platform/efl/css1/color_and_background/background_repeat-expected.txt: Added.
  • platform/efl/css1/color_and_background/color-expected.txt: Added.
  • platform/efl/css1/conformance: Added.
  • platform/efl/css1/conformance/forward_compatible_parsing-expected.txt: Added.
  • platform/efl/css1/font_properties: Added.
  • platform/efl/css1/font_properties/font-expected.txt: Added.
  • platform/efl/css1/font_properties/font_family-expected.txt: Added.
  • platform/efl/css1/font_properties/font_size-expected.txt: Added.
  • platform/efl/css1/font_properties/font_style-expected.txt: Added.
  • platform/efl/css1/font_properties/font_variant-expected.txt: Added.
  • platform/efl/css1/font_properties/font_weight-expected.txt: Added.
  • platform/efl/css1/formatting_model: Added.
  • platform/efl/css1/formatting_model/canvas-expected.txt: Added.
  • platform/efl/css1/formatting_model/floating_elements-expected.txt: Added.
  • platform/efl/css1/formatting_model/height_of_lines-expected.txt: Added.
  • platform/efl/css1/formatting_model/horizontal_formatting-expected.txt: Added.
  • platform/efl/css1/formatting_model/inline_elements-expected.txt: Added.
  • platform/efl/css1/formatting_model/replaced_elements-expected.txt: Added.
  • platform/efl/css1/formatting_model/vertical_formatting-expected.txt: Added.
  • platform/efl/css1/pseudo: Added.
  • platform/efl/css1/pseudo/anchor-expected.txt: Added.
  • platform/efl/css1/pseudo/firstletter-expected.txt: Added.
  • platform/efl/css1/pseudo/firstline-expected.txt: Added.
  • platform/efl/css1/pseudo/multiple_pseudo_elements-expected.txt: Added.
  • platform/efl/css1/pseudo/pseudo_elements_in_selectors-expected.txt: Added.
  • platform/efl/css1/text_properties: Added.
  • platform/efl/css1/text_properties/letter_spacing-expected.txt: Added.
  • platform/efl/css1/text_properties/line_height-expected.txt: Added.
  • platform/efl/css1/text_properties/text_align-expected.txt: Added.
  • platform/efl/css1/text_properties/text_decoration-expected.txt: Added.
  • platform/efl/css1/text_properties/text_indent-expected.txt: Added.
  • platform/efl/css1/text_properties/text_transform-expected.txt: Added.
  • platform/efl/css1/text_properties/vertical_align-expected.txt: Added.
  • platform/efl/css1/text_properties/word_spacing-expected.txt: Added.
  • platform/efl/css1/units: Added.
  • platform/efl/css1/units/color_units-expected.txt: Added.
  • platform/efl/css1/units/length_units-expected.txt: Added.
  • platform/efl/css1/units/percentage_units-expected.txt: Added.
  • platform/efl/css1/units/urls-expected.txt: Added.
  • platform/efl/css2.1: Added.
  • platform/efl/css2.1/20110323: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-014-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-016-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-017-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-018-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-019-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-021-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-022-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-023-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-024-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-025-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-026-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-028-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-029-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-030-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-031-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-032-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-033-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-035-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-height-036-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-013-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-015-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-020-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-022-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-027-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-029-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-034-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-036-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-041-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-043-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-048-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-050-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-055-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-057-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-062-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-064-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-069-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-071-expected.txt: Added.
  • platform/efl/css2.1/20110323/absolute-replaced-width-076-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-containing-block-initial-007-ref-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt: Added.
  • platform/efl/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-013-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-014-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-015-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-height-016-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-non-replaced-width-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/block-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/border-conflict-style-079-expected.txt: Added.
  • platform/efl/css2.1/20110323/border-conflict-style-088-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-non-replaced-width-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/float-replaced-width-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/floating-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/height-width-inline-table-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/height-width-table-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-non-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-height-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-011-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-013-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-014-expected.txt: Added.
  • platform/efl/css2.1/20110323/inline-replaced-width-015-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-006-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-007-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-008-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-009-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-010-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-012-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-013-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-014-expected.txt: Added.
  • platform/efl/css2.1/20110323/margin-applies-to-015-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-elements-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-002-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-003-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-004-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-005-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/replaced-min-max-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Added.
  • platform/efl/css2.1/20110323/width-replaced-element-001-expected.txt: Added.
  • platform/efl/css2.1/t010403-shand-border-00-c-expected.txt: Added.
  • platform/efl/css2.1/t010403-shand-font-00-b-expected.txt: Added.
  • platform/efl/css2.1/t010403-shand-font-01-b-expected.txt: Added.
  • platform/efl/css2.1/t010403-shand-font-02-b-expected.txt: Added.
  • platform/efl/css2.1/t010403-shand-font-03-b-expected.txt: Added.
  • platform/efl/css2.1/t040102-keywords-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040102-keywords-01-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-case-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-case-01-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-01-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-02-d-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-03-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-04-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-05-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-06-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-07-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-escapes-08-b-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-00-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-01-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-02-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-03-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-04-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-05-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-06-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-07-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-08-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-09-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-10-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-11-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-12-c-expected.txt: Added.
  • platform/efl/css2.1/t040103-ident-13-c-expected.txt: Added.
  • platform/efl/css2.1/t040105-atkeyw-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atkeyw-01-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atkeyw-02-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atrule-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atrule-01-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atrule-02-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atrule-03-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-atrule-04-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-import-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-import-01-b-expected.txt: Added.
  • platform/efl/css2.1/t040105-import-10-b-expected.txt: Added.
  • platform/efl/css2.1/t040109-c17-comments-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040109-c17-comments-01-b-expected.txt: Added.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-00-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-01-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-02-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-03-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-c71-fwd-parsing-04-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-01-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-02-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-03-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-04-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-05-f-expected.txt: Added.
  • platform/efl/css2.1/t0402-syntax-06-f-expected.txt: Added.
  • platform/efl/css2.1/t040302-c61-ex-len-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t040302-c61-phys-len-00-b-expected.txt: Added.
  • platform/efl/css2.1/t040302-c61-rel-len-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t040303-c62-percent-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t040304-c64-uri-00-a-g-expected.txt: Added.
  • platform/efl/css2.1/t040306-c63-color-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t040306-syntax-01-f-expected.txt: Added.
  • platform/efl/css2.1/t040307-syntax-01-b-expected.txt: Added.
  • platform/efl/css2.1/t050201-c12-grouping-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0505-c16-descendant-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0505-c16-descendant-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0505-c16-descendant-02-e-expected.txt: Added.
  • platform/efl/css2.1/t050803-c14-classes-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0509-c15-ids-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0509-c15-ids-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0509-id-sel-syntax-01-f-expected.txt: Added.
  • platform/efl/css2.1/t0509-id-sel-syntax-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.txt: Added.
  • platform/efl/css2.1/t0511-c21-pseud-anch-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t0511-c21-pseud-link-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0511-c21-pseud-link-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0511-c21-pseud-link-02-e-expected.txt: Added.
  • platform/efl/css2.1/t0511-c21-pseud-link-03-e-expected.txt: Added.
  • platform/efl/css2.1/t051103-c21-activ-ln-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t051103-c21-focus-ln-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t051103-c21-hover-ln-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t051103-dom-hover-01-c-io-expected.txt: Added.
  • platform/efl/css2.1/t051103-dom-hover-02-c-io-expected.txt: Added.
  • platform/efl/css2.1/t051201-c23-first-line-00-b-expected.txt: Added.
  • platform/efl/css2.1/t051202-c24-first-lttr-00-b-expected.txt: Added.
  • platform/efl/css2.1/t051202-c26-psudo-nest-00-c-expected.txt: Added.
  • platform/efl/css2.1/t0602-c13-inh-underlin-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0602-c13-inheritance-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0602-inherit-bdr-pad-b-00-expected.txt: Added.
  • platform/efl/css2.1/t0603-c11-import-00-b-expected.txt: Added.
  • platform/efl/css2.1/t060401-c32-cascading-00-b-expected.txt: Added.
  • platform/efl/css2.1/t060402-c31-important-00-b-expected.txt: Added.
  • platform/efl/css2.1/t060403-c21-pseu-cls-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t060403-c21-pseu-id-00-e-i-expected.txt: Added.
  • platform/efl/css2.1/t0801-c412-hz-box-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-02-c-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5502-mrgn-r-03-c-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-02-c-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5504-mrgn-l-03-c-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5505-imrgn-00-a-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5505-mrgn-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5505-mrgn-01-e-a-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5505-mrgn-02-c-expected.txt: Added.
  • platform/efl/css2.1/t0803-c5505-mrgn-03-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t080301-c411-vt-mrgn-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5506-padn-t-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-padn-r-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-padn-r-01-c-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-padn-r-02-f-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5507-padn-r-03-f-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-padn-l-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-padn-l-01-b-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-padn-l-02-f-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5509-padn-l-03-f-g-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5510-ipadn-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5510-padn-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5510-padn-01-e-a-expected.txt: Added.
  • platform/efl/css2.1/t0804-c5510-padn-02-f-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5511-brdr-tw-03-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5512-brdr-rw-03-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5513-brdr-bw-03-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5513-ibrdr-bw-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5514-brdr-lw-03-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5514-ibrdr-lw-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5515-brdr-w-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5515-brdr-w-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5515-brdr-w-02-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5515-ibrdr-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5516-brdr-c-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5516-ibrdr-c-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5517-brdr-s-00-c-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5517-ibrdr-s-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5518-brdr-t-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5518-brdr-t-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5518-ibrdr-t-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5519-brdr-r-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5519-brdr-r-02-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5519-ibrdr-r-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5520-brdr-b-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5520-brdr-b-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5520-ibrdr-b-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5521-brdr-l-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5521-brdr-l-01-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5521-brdr-l-02-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5521-ibrdr-l-00-a-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5522-brdr-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5522-brdr-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5522-brdr-02-e-expected.txt: Added.
  • platform/efl/css2.1/t0805-c5522-ibrdr-00-a-expected.txt: Added.
  • platform/efl/css2.1/t09-c5526c-display-00-e-expected.txt: Added.
  • platform/efl/css2.1/t090204-display-change-01-b-ao-expected.txt: Added.
  • platform/efl/css2.1/t090402-c42-ibx-pad-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-00-d-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-01-d-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-02-c-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-03-c-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-04-c-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-fit-00-d-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-wrap-00-e-expected.txt: Added.
  • platform/efl/css2.1/t0905-c414-flt-wrap-01-d-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltblck-01-d-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltclr-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltcont-00-d-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-flthw-00-c-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltinln-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltmrgn-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltmult-00-d-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltwidth-00-c-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltwidth-01-c-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltwidth-02-c-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltwidth-03-c-g-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5525-fltwrap-00-b-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5526-fltclr-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t0905-c5526-flthw-00-c-g-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-00-d-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-01-b-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-02-d-g-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-03-b-g-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-ln-00-d-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-ln-01-d-g-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-ln-02-d-expected.txt: Added.
  • platform/efl/css2.1/t090501-c414-flt-ln-03-d-expected.txt: Added.
  • platform/efl/css2.1/t090501-c5525-flt-l-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t090501-c5525-flt-r-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-01-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-02-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-03-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-04-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-05-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-06-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-07-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-08-b-expected.txt: Added.
  • platform/efl/css2.1/t1001-abs-pos-cb-09-b-expected.txt: Added.
  • platform/efl/css2.1/t1002-c5523-width-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1002-c5523-width-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1002-c5523-width-02-b-g-expected.txt: Added.
  • platform/efl/css2.1/t100303-c412-blockw-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-00-d-g-expected.txt: Added.
  • platform/efl/css2.1/t100304-c43-rpl-bbx-01-d-g-expected.txt: Added.
  • platform/efl/css2.1/t1004-c43-rpl-bbx-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1004-c43-rpl-ibx-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1004-c5524-width-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1005-c5524-width-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1005-c5524-width-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1008-c44-ln-box-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1008-c44-ln-box-01-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1008-c44-ln-box-02-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1008-c44-ln-box-03-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c42-ibx-ht-00-d-a-expected.txt: Added.
  • platform/efl/css2.1/t100801-c544-valgn-00-a-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c544-valgn-01-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c544-valgn-02-d-agi-expected.txt: Added.
  • platform/efl/css2.1/t100801-c544-valgn-03-d-agi-expected.txt: Added.
  • platform/efl/css2.1/t100801-c544-valgn-04-d-agi-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-leadin-00-d-a-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-ln-ht-00-c-a-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-ln-ht-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-ln-ht-02-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-ln-ht-03-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t100801-c548-ln-ht-04-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-01-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-02-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-03-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-04-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-05-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-06-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-07-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-08-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-09-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-11-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-12-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-13-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-14-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-15-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counter-16-f-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-01-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-02-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-03-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-04-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-05-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-06-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-07-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-08-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-09-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-11-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-12-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-13-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-14-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-15-b-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-16-c-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-17-d-expected.txt: Added.
  • platform/efl/css2.1/t1202-counters-18-f-expected.txt: Added.
  • platform/efl/css2.1/t1204-implied-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1204-implied-01-c-expected.txt: Added.
  • platform/efl/css2.1/t1204-implied-02-d-expected.txt: Added.
  • platform/efl/css2.1/t1204-multiple-00-c-expected.txt: Added.
  • platform/efl/css2.1/t1204-multiple-01-c-expected.txt: Added.
  • platform/efl/css2.1/t1204-order-00-c-expected.txt: Added.
  • platform/efl/css2.1/t1204-order-01-d-expected.txt: Added.
  • platform/efl/css2.1/t1204-root-e-expected.txt: Added.
  • platform/efl/css2.1/t120401-scope-00-b-expected.txt: Added.
  • platform/efl/css2.1/t120401-scope-01-c-expected.txt: Added.
  • platform/efl/css2.1/t120401-scope-02-c-expected.txt: Added.
  • platform/efl/css2.1/t120401-scope-03-c-expected.txt: Added.
  • platform/efl/css2.1/t120401-scope-04-d-expected.txt: Added.
  • platform/efl/css2.1/t120403-content-none-00-c-expected.txt: Added.
  • platform/efl/css2.1/t120403-display-none-00-c-expected.txt: Added.
  • platform/efl/css2.1/t120403-visibility-00-c-expected.txt: Added.
  • platform/efl/css2.1/t1205-c561-list-displ-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1205-c563-list-type-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1205-c563-list-type-01-b-expected.txt: Added.
  • platform/efl/css2.1/t1205-c564-list-img-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t1205-c565-list-pos-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1205-c566-list-stl-00-e-ag-expected.txt: Added.
  • platform/efl/css2.1/t1205-c566-list-stl-01-c-g-expected.txt: Added.
  • platform/efl/css2.1/t1401-c531-color-00-a-expected.txt: Added.
  • platform/efl/css2.1/t1402-c45-bg-canvas-00-b-expected.txt: Added.
  • platform/efl/css2.1/t140201-c532-bgcolor-00-a-expected.txt: Added.
  • platform/efl/css2.1/t140201-c532-bgcolor-01-b-expected.txt: Added.
  • platform/efl/css2.1/t140201-c533-bgimage-00-a-expected.txt: Added.
  • platform/efl/css2.1/t140201-c533-bgimage-01-b-g-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgre-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgre-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-01-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-02-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-03-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-04-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c534-bgreps-05-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c535-bg-fixd-00-b-g-expected.txt: Added.
  • platform/efl/css2.1/t140201-c536-bgpos-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c536-bgpos-01-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t140201-c537-bgfxps-00-c-ag-expected.txt: Added.
  • platform/efl/css2.1/t1503-c522-font-family-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1504-c523-font-style-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1504-c543-txt-decor-00-d-g-expected.txt: Added.
  • platform/efl/css2.1/t1505-c524-font-var-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1506-c525-font-wt-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1507-c526-font-sz-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1507-c526-font-sz-01-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1507-c526-font-sz-02-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1507-c526-font-sz-03-f-a-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-01-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-02-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-03-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-04-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-05-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-06-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-07-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-08-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-09-b-expected.txt: Added.
  • platform/efl/css2.1/t1508-c527-font-10-c-expected.txt: Added.
  • platform/efl/css2.1/t1601-c547-indent-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1601-c547-indent-01-d-expected.txt: Added.
  • platform/efl/css2.1/t1602-c43-center-00-d-ag-expected.txt: Added.
  • platform/efl/css2.1/t1602-c546-txt-align-00-b-expected.txt: Added.
  • platform/efl/css2.1/t1604-c541-word-sp-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1604-c541-word-sp-01-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1604-c542-letter-sp-00-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1604-c542-letter-sp-01-b-a-expected.txt: Added.
  • platform/efl/css2.1/t1605-c545-txttrans-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t1606-c562-white-sp-00-b-ag-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-00-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-01-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-02-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-03-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-04-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-05-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-06-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-07-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-08-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-09-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-10-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-11-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-12-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-13-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-14-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-15-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-16-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-17-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-18-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-19-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-20-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-21-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-22-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-23-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-24-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-25-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-26-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-27-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-28-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-29-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-30-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-31-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-32-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-33-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-34-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-35-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-36-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-37-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-38-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-39-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-40-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-41-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-42-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-43-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-44-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-45-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-46-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-47-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-48-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-49-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-50-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-51-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-52-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-53-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-54-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-55-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-56-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-57-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-58-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-59-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-60-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-61-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-62-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-63-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-64-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-65-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-66-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-67-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-68-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-69-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-70-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-71-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-72-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-73-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-74-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-75-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-76-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-77-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-78-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-79-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-80-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-81-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-82-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-83-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-84-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-85-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-86-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-87-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-88-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-89-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-90-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-91-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-92-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-93-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-94-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-95-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-96-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-97-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-98-d-expected.txt: Added.
  • platform/efl/css2.1/t170602-bdr-conflct-w-99-d-expected.txt: Added.
  • platform/efl/css3: Added.
  • platform/efl/css3/bdi-element-expected.txt: Added.
  • platform/efl/css3/css3-modsel-33-expected.txt: Added.
  • platform/efl/css3/css3-modsel-35-expected.txt: Added.
  • platform/efl/css3/css3-modsel-36-expected.txt: Added.
  • platform/efl/css3/css3-modsel-37-expected.txt: Added.
  • platform/efl/css3/font-feature-settings-rendering-expected.txt: Added.
  • platform/efl/css3/selectors3: Added.
  • platform/efl/css3/selectors3/html: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-1-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-10-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-11-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-13-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-14-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-144-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-148-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-149-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-149b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-14b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-14c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-14d-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-14e-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-15-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-150-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-151-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-152-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-154-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-155-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-155a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-155b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-155c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-155d-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-156-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-156b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-156c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-157-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-158-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-159-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-15b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-16-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-160-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-161-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-166-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-166a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-167-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-167a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-168-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-168a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-169-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-169a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-17-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-170-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-170a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-170b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-170c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-170d-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-175a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-175b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-175c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-176-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-177a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-177b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-178-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-179-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-179a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-18-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-180a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-181-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-183-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184d-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184e-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-184f-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-18a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-18b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-18c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-19-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-19b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-2-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-20-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-21-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-21b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-21c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-22-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-23-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-24-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-25-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-27-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-27a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-27b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-28-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-28b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-29-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-29b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-30-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-31-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-32-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-33-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-34-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-35-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-36-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-37-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-38-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-39-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-39a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-39b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-39c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-3a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-4-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-41-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-41a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-42-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-42a-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-43-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-43b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-44-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-44b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-44c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-44d-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-45-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-45b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-45c-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-46-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-46b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-5-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-54-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-55-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-56-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-59-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-6-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-60-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-61-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-62-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-63-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-64-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-65-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-66-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-66b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-67-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-68-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-69-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-7-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-70-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-72-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-72b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-73-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-73b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-74-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-74b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-75-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-75b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-76-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-76b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-77-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-77b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-78-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-78b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-79-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-7b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-8-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-80-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-81-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-81b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-82-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-82b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-83-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-86-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-87-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-87b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-88-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-88b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-89-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-9-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-90-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-90b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-d1-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-d1b-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-d2-expected.txt: Added.
  • platform/efl/css3/selectors3/html/css3-modsel-d4-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-1-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-10-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-100b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-101b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-102b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-103b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-104b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-105b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-106b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-107b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-108b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-109b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-11-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-110b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-111b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-112b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-113b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-114b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-115b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-116b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-117b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-118-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-119-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-120-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-121-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-122-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-123-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-123b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-124b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-125b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-126b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-127b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-128b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-129b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-13-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-130b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-131b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-132b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-133b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-134b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-135b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-136b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-137b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-138b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-139b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-140b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-141b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-142b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-143b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-144-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-145b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-146b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-147b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-148-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-149-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-149b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14d-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-14e-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-150-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-151-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-152-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-153-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-154-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-155d-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-156c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-157-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-158-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-159-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-15c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-16-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-160-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-161-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-166a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-167a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-168a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-169a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-17-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-170d-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-171-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-172b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-173b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-174b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-175c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-176-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-177a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-177b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-178-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-179-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-179a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-180a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-181-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-182-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-183-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184d-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184e-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-184f-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-18c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-19b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-2-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-20-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-21c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-22-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-23-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-24-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-25-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-27b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-28b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-29b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-30-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-31-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-32-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-33-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-34-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-35-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-36-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-37-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-38-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-39c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-3a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-4-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-41a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-42a-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-43b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-44d-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-45c-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-46b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-47-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-48-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-49-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-5-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-50-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-51-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-52-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-53-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-54-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-55-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-56-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-57b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-59-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-6-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-60-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-61-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-62-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-63-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-64-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-65-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-66b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-67-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-68-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-69-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-70-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-72b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-73b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-74b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-75b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-76b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-77b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-78b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-79-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-7b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-8-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-80-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-81b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-82b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-83-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-86-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-87b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-88b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-89-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-9-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-90b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-91-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-92-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-93-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-94b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-95-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-96b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-97b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-98b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-99b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d1b-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d2-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d3-expected.txt: Added.
  • platform/efl/css3/selectors3/xhtml/css3-modsel-d4-expected.txt: Added.
  • platform/efl/css3/selectors3/xml: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-1-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-10-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-100-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-100b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-101-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-101b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-102-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-102b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-103-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-103b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-104-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-104b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-105-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-105b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-106-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-106b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-107-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-107b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-108-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-108b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-109-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-109b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-11-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-110-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-110b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-111-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-111b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-112-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-112b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-113-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-113b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-114-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-114b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-115-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-115b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-116-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-116b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-117-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-117b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-118-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-119-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-120-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-121-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-122-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-123-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-123b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-124-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-124b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-125-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-125b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-126-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-126b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-127-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-127b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-128-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-128b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-129-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-129b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-13-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-130-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-130b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-131-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-131b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-132-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-132b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-133-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-133b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-134-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-134b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-135-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-135b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-136-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-136b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-137-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-137b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-138-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-138b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-139-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-139b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-14-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-140-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-140b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-141-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-141b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-142-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-142b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-143-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-143b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-144-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-145a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-145b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-146a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-146b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-147a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-147b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-148-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-149-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-149b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-14b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-14c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-14d-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-14e-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-15-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-150-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-151-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-152-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-153-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-154-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-155-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-155a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-155b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-155c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-155d-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-156-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-156b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-156c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-157-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-158-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-159-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-15b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-15c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-16-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-160-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-161-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-166-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-166a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-167-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-167a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-168-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-168a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-169-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-169a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-17-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-170-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-170a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-170b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-170c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-170d-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-171-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-172a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-172b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-173a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-173b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-174a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-174b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-175a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-175b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-175c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-176-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-177a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-177b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-178-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-179-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-179a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-18-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-180a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-181-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-182-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-183-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184d-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184e-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-184f-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-18a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-18b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-18c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-19-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-19b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-2-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-20-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-21-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-21b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-21c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-22-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-23-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-24-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-25-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-27-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-27a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-27b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-28-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-28b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-29-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-29b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-3-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-30-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-31-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-32-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-33-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-34-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-35-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-36-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-37-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-38-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-39-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-39a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-39b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-39c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-3a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-4-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-41-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-41a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-42-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-42a-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-43-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-43b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-44-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-44b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-44c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-44d-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-45-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-45b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-45c-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-46-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-46b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-47-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-48-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-49-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-5-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-50-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-51-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-52-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-53-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-54-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-55-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-56-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-57-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-57b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-59-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-6-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-60-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-61-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-62-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-63-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-64-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-65-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-66-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-66b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-67-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-68-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-69-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-7-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-70-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-72-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-72b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-73-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-73b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-74-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-74b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-75-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-75b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-76-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-76b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-77-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-77b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-78-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-78b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-79-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-7b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-8-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-80-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-81-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-81b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-82-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-82b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-83-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-86-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-87-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-87b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-88-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-88b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-89-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-9-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-90-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-90b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-91-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-92-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-93-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-94-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-94b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-95-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-96-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-96b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-97-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-97b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-98-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-98b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-99-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-99b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-d1b-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-d2-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-d3-expected.txt: Added.
  • platform/efl/css3/selectors3/xml/css3-modsel-d4-expected.txt: Added.
  • platform/efl/css3/unicode-bidi-isolate-aharon-expected.txt: Added.
  • platform/efl/css3/unicode-bidi-isolate-basic-expected.txt: Added.
4:55 AM Changeset in webkit [97966] by pfeldman@chromium.org
  • 4 edits in trunk/Source/WebCore

Not reviewed: follow up to 97961 - dispatching of hide on detach was missing.

  • inspector/front-end/AuditsPanel.js:

(WebInspector.AuditsPanel.prototype.show):

  • inspector/front-end/View.js:

(WebInspector.View.prototype.detach):

  • inspector/front-end/utilities.js:
4:37 AM Changeset in webkit [97965] by leandro@webkit.org
  • 1 edit
    2 adds in trunk/LayoutTests

Unreviewed. Create EFL platform directory by adding the Skipped file.

  • platform/efl: Added.
  • platform/efl/Skipped: Added.
4:36 AM Changeset in webkit [97964] by kenneth@webkit.org
  • 10 edits in trunk/Source/WebCore

Properly suspend/resume Geolocation/DeviceMotion/DeviceOrientation objects
https://bugs.webkit.org/show_bug.cgi?id=70328

Reviewed by Simon Hausmann.

Based on code from iOS and the N9.

No new tests, as the suspend/resume functionality is not fully working yet.

  • dom/DeviceMotionController.cpp:

(WebCore::DeviceMotionController::suspend):
(WebCore::DeviceMotionController::resume):

  • dom/DeviceMotionController.h:
  • dom/DeviceOrientationController.cpp:

(WebCore::DeviceOrientationController::addListener):
(WebCore::DeviceOrientationController::removeListener):
(WebCore::DeviceOrientationController::removeAllListeners):
(WebCore::DeviceOrientationController::suspend):
(WebCore::DeviceOrientationController::resume):

  • dom/DeviceOrientationController.h:
  • dom/Document.cpp:

(WebCore::Document::suspendActiveDOMObjects):
(WebCore::Document::resumeActiveDOMObjects):
(WebCore::Document::stopActiveDOMObjects):

  • dom/Document.h:
  • dom/ScriptExecutionContext.h:
  • page/GeolocationController.cpp:

(WebCore::GeolocationController::suspend):
(WebCore::GeolocationController::resume):

  • page/GeolocationController.h:
4:36 AM Changeset in webkit [97963] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

fast/frames/frame-element-name.html fails intermittently after r97881
https://bugs.webkit.org/show_bug.cgi?id=70487

Reviewed by Zoltán Herczeg.

r97881 made js/resources/js-test-pre.js (used in fast/frames/resource/frame-element-name.html)
slower with loading css dynamically. We have to wait for loading all frames to get correct results.

  • fast/frames/frame-element-name.html:
4:24 AM Changeset in webkit [97962] by Antti Koivisto
  • 3 edits in trunk/Source/WebCore

Move rule matching and applying to separate functions from CSSStyleSelector::styleForElement
https://bugs.webkit.org/show_bug.cgi?id=70408

Reviewed by Andreas Kling.

  • Move matching code to matchAllRules and applying to applyMatchedDeclarations.
  • Encapsulate the matching results into a struct, use everywhere.
  • Move first-line style adjustment to adjustRenderStyle().
  • Remove unnecessary tests for resolveForRootDefault when applying the style
  • Use applyMatchedDeclarations also from pseudoStyleForElement
  • css/CSSStyleSelector.cpp:

(WebCore::CSSStyleSelector::matchAllRules):
(WebCore::CSSStyleSelector::matchUARules):
(WebCore::CSSStyleSelector::styleForElement):
(WebCore::CSSStyleSelector::pseudoStyleForElement):
(WebCore::CSSStyleSelector::styleForPage):
(WebCore::CSSStyleSelector::adjustRenderStyle):
(WebCore::CSSStyleSelector::pseudoStyleRulesForElement):
(WebCore::CSSStyleSelector::applyMatchedDeclarations):

  • css/CSSStyleSelector.h:

(WebCore::CSSStyleSelector::MatchResult::MatchResult):

4:23 AM Changeset in webkit [97961] by pfeldman@chromium.org
  • 36 edits in trunk

Web Inspector: get rid of manual view hierarchy management.
https://bugs.webkit.org/show_bug.cgi?id=70417

Reviewed by Yury Semikhatsky.

Source/WebCore:

  • inspector/front-end/AuditsPanel.js:

(WebInspector.AuditsPanel.prototype.show):
(WebInspector.AuditsPanel.prototype._clearButtonClicked):

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.show):
(WebInspector.ConsolePanel.prototype.hide):

  • inspector/front-end/DetailedHeapshotGridNodes.js:

(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent.else.formatResult):
(WebInspector.HeapSnapshotGenericObjectNode.prototype.queryObjectContent):

  • inspector/front-end/DetailedHeapshotView.js:

(WebInspector.DetailedHeapshotView.prototype.show.profileCallback2):
(WebInspector.DetailedHeapshotView.prototype.show):
(WebInspector.DetailedHeapshotView.prototype._changeView):

  • inspector/front-end/IFrameView.js:
  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView):
(WebInspector.NetworkLogView.prototype._initializeView):
(WebInspector.NetworkPanel.prototype.show):
(WebInspector.NetworkPanel.prototype._showResource):
(WebInspector.NetworkPanel.prototype._closeVisibleResource):

  • inspector/front-end/Panel.js:

(WebInspector.Panel.prototype.show):
(WebInspector.Panel.prototype.detach):

  • inspector/front-end/ProfilesPanel.js:

(WebInspector.ProfilesPanel.prototype._reset):
(WebInspector.ProfilesPanel.prototype.closeVisibleView):

  • inspector/front-end/RemoteObject.js:
  • inspector/front-end/ResourcePreviewView.js:

(WebInspector.ResourcePreviewView.prototype.contentLoaded):

  • inspector/front-end/ResourceResponseView.js:

(WebInspector.ResourceResponseView.prototype.contentLoaded):

  • inspector/front-end/ResourceTimingView.js:

(WebInspector.ResourceTimingView.prototype.show):

  • inspector/front-end/ResourcesPanel.js:

(WebInspector.ResourcesPanel.prototype.reset):
(WebInspector.ResourcesPanel.prototype._innerShowView):
(WebInspector.FrameResourceTreeElement.prototype._recreateSourceView):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._uiSourceCodeRemoved):
(WebInspector.ScriptsPanel.prototype._createSourceFrame):
(WebInspector.ScriptsPanel.prototype._removeSourceFrame):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame):
(WebInspector.SourceFrame.prototype.show):

  • inspector/front-end/TabbedPane.js:

(WebInspector.TabbedPane):
(WebInspector.TabbedPane.prototype.appendTab):
(WebInspector.TabbedPane.prototype._hideTab):

  • inspector/front-end/View.js:

(WebInspector.View):
(WebInspector.View.prototype.show):
(WebInspector.View.prototype.hide):
(WebInspector.View.prototype.attach):
(WebInspector.View.prototype.detach):
(WebInspector.View.prototype._addChildView):
(WebInspector.View.prototype._removeChildView):
(WebInspector.View.prototype.dispatchToVisibleChildren):
(WebInspector.View.prototype._handleInsertedIntoDocument):
(WebInspector.View.prototype._handleRemovedFromDocument):
(WebInspector.View.prototype.printViewHierarchy):
(WebInspector.View.prototype._collectViewHierarchy):

  • inspector/front-end/inspector.html:
  • inspector/front-end/inspector.js:

LayoutTests:

  • inspector/view-events-expected.txt:
  • inspector/view-events.html:
4:16 AM Changeset in webkit [97960] by Carlos Garcia Campos
  • 6 edits
    1 copy in trunk/Source/WebKit2

[GTK] Remove WebKitWebLoaderClientPrivate
https://bugs.webkit.org/show_bug.cgi?id=70488

Reviewed by Philippe Normand.

It's unused since r97920.

  • GNUmakefile.am: Add WebKitWebLoaderClientPrivate.h.
  • UIProcess/API/gtk/WebKitWebLoaderClient.cpp:

(webkitWebLoaderClientAttachLoaderClientToPage): Renamed to make
it clear it's a private method of WebKitWebLoaderClient.
(webkit_web_loader_client_init): Remove
WebKitWebLoaderClientPrivate initialization.
(webkit_web_loader_client_class_init): Removed adding
WebKitWebLoaderClientPrivate struct as private data.

  • UIProcess/API/gtk/WebKitWebLoaderClient.h: Remove

WebKitWebLoaderClientPrivate definition.

  • UIProcess/API/gtk/WebKitWebLoaderClientPrivate.h: Move

webkitWebLoaderClientAttachLoaderClientToPage method here since
it's a private method implemented in WebKitWebLoaderClient, not in
WebKitWebView.

  • UIProcess/API/gtk/WebKitWebView.cpp:

(webkit_web_view_set_loader_client): Use
webkitWebLoaderClientAttachLoaderClientToPage.

  • UIProcess/API/gtk/WebKitWebViewPrivate.h: Remove

webkitWebLoaderClientAttachLoaderClientToPage prototype.

4:03 AM Changeset in webkit [97959] by vsevik@chromium.org
  • 10 edits
    2 adds in trunk

Web Inspector: Enable support for advanced search in script's static content provider.
https://bugs.webkit.org/show_bug.cgi?id=70354

Reviewed by Pavel Feldman.

Source/WebCore:

Test: http/tests/inspector/search/search-in-static.html

  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult):

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.performSearch):

  • inspector/front-end/ContentProviders.js:

(WebInspector.StaticContentProvider.prototype.searchInContent):

  • inspector/front-end/ElementsTreeOutline.js:

():

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype.performSearch):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._showSourceLine):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.createSearchRegex):

  • inspector/front-end/utilities.js:

():

LayoutTests:

  • http/tests/inspector/search/search-in-static-expected.txt: Added.
  • http/tests/inspector/search/search-in-static.html: Added.
4:00 AM BuildingQt5OnHarmattan edited by Simon Hausmann
(diff)
3:38 AM Changeset in webkit [97958] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] Do not manually set the frameRect in different places in ScrollbarEfl.
https://bugs.webkit.org/show_bug.cgi?id=70427

Patch by Raphael Kubo da Costa <kubo@profusion.mobi> on 2011-10-20
Reviewed by Kenneth Rohde Christiansen.

This commit is related to the effort towards having a different
scrollbar (with a size > 0) for DumpRenderTree.

Scrollbar::Scrollbar() already calls setFrameRect() with the size
obtained from ScrollbarTheme::scrollbarThickness(), which is currently
always 0 for us, so the call to setFrameRect() in ScrollbarEfl's
constructor is not needed and would break things if scrollbarThickness
is changed to return another value.

The frameRect is also not changed in ScrollbarEfl::setParent() anymore,
as it also does not take scrollbarThickness() into account and thus
breaks using other themes such as ScrollbarThemeMock in DumpRenderTree.
Right now, it is always going to be 0 anyway.

It is still work in progress, though -- it'd be good to somehow move the
theming code to ScrollbarThemeEfl, as right now scrollbar EDCs with a
non-zero min size will not cause the scrollbars to have non-zero size.

No new tests, this is machinery needed to run the current tests.

  • platform/efl/ScrollbarEfl.cpp:

(ScrollbarEfl::ScrollbarEfl):
(ScrollbarEfl::setParent):

3:25 AM Changeset in webkit [97957] by loislo@chromium.org
  • 7 edits
    2 adds
    1 delete in trunk/Source/WebCore

Unreviewed, rolling out r97954.
http://trac.webkit.org/changeset/97954
https://bugs.webkit.org/show_bug.cgi?id=70486

clean build failed on chromium.mac: File
"../inspector/CodeGeneratorInspector.py", line 34, in <module>
import json (Requested by loislo on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-20

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • inspector/CodeGeneratorInspector.pm: Added.

(new):
(GenerateModule):
(GenerateInterface):
(generateAgentDeclaration):
(generateFrontendConstructorImpl):
(generateFunctions):
(generateFrontendFunction):
(camelCase):
(generateBackendFunction):
(generateBackendSendResponse):
(generateBackendReportProtocolError):
(generateArgumentGetters):
(generateBackendDispatcher):
(generateBackendMessageParser):
(collectBackendJSStubFunctions):
(collectBackendJSStubEvents):
(generateBackendStubJS):
(generateHeader):
(generateSource):
(typeTraits):
(paramTypeTraits):
(generateBackendAgentFieldsAndConstructor):
(finish):

  • inspector/CodeGeneratorInspector.py: Removed.
  • inspector/Inspector.json:
  • inspector/generate-inspector-idl: Added.
3:22 AM Changeset in webkit [97956] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

Enable geolocation client based flag for Qt5
https://bugs.webkit.org/show_bug.cgi?id=70330

Patch by Adenilson Cavalcanti <adenilson.silva@openbossa.org> on 2011-10-20
Reviewed by Kenneth Rohde Christiansen.

This will enable client based geolocation for Qt5.

No new tests, this enables flags for Qt5.

  • features.pri:
2:57 AM Changeset in webkit [97955] by haraken@chromium.org
  • 7 edits
    1 add in trunk

Implement a MessageEvent constructor for V8
https://bugs.webkit.org/show_bug.cgi?id=70296

Reviewed by Adam Barth.

Source/WebCore:

Test: fast/events/constructors/message-event-constructor.html

  • bindings/v8/OptionsObject.cpp:

(WebCore::OptionsObject::getKeyValue): Returns RefPtr<DOMWindow> corresponding to a given key.
(WebCore::OptionsObject::getKeyValue): Returns MessagePortArray corresponding to a given key.

  • bindings/v8/OptionsObject.h:
  • bindings/v8/custom/V8EventConstructors.cpp: Added a MessageEvent constructor.
  • dom/MessageEvent.idl: Makes MessageEvent constructible for V8.

LayoutTests:

Enabled message-event-constructor.html for chromium,
since now V8 has the MessageEvent constructor.

  • platform/chromium/test_expectations.txt:
  • platform/chromium/fast/events/constructors/message-event-constructor-expected.txt: Added.
2:50 AM Changeset in webkit [97954] by loislo@chromium.org
  • 7 edits
    1 add
    2 deletes in trunk/Source/WebCore

Web Inspector: reimplement protocol backend/frontend source generator
https://bugs.webkit.org/show_bug.cgi?id=69295

Patch by Peter Rybin <peter.rybin@gmail.com> on 2011-10-20
Reviewed by Pavel Feldman.

Old 2-stage python+perf generator that uses intermediate IDL output is
being replaced with a solid python script. This is for simplicity and
as a base for the future JSON validator.

  • CMakeLists.txt:
  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • inspector/CodeGeneratorInspector.pm: Removed.
  • inspector/CodeGeneratorInspector.py: Added.
  • inspector/Inspector.json:
  • inspector/generate-inspector-idl: Removed.
2:34 AM Changeset in webkit [97953] by Philippe Normand
  • 2 edits in trunk/LayoutTests

Unreviewed, skip failing test in GTK.

  • platform/gtk/Skipped: Skip fast/events/drag-selects-image.html
2:33 AM Changeset in webkit [97952] by podivilov@chromium.org
  • 7 edits in trunk

Web Inspector: encode source map url as source map page url query parameter.
https://bugs.webkit.org/show_bug.cgi?id=70327

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/front-end/CompilerSourceMappingProvider.js:

(WebInspector.CompilerSourceMappingProvider):
(WebInspector.CompilerSourceMappingProvider.prototype.loadSourceMapping.frameLoaded):
(WebInspector.CompilerSourceMappingProvider.prototype.loadSourceMapping):
(WebInspector.CompilerSourceMappingProvider.prototype.loadSourceCode):
(WebInspector.CompilerSourceMappingProvider.prototype._sendRequest):

  • inspector/front-end/RawSourceCode.js:

(WebInspector.RawSourceCode.CompilerSourceMapping.prototype.uiSourceCodeList):

LayoutTests:

  • http/tests/inspector/compiler-source-mapping-provider.html:
  • http/tests/inspector/resources/compiler-source-mapping-provider/app-map.html:
2:10 AM Changeset in webkit [97951] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

https://bugs.webkit.org/show_bug.cgi?id=70482
DFG-related stubs in the old JIT should not be built if the DFG is disabled

Reviewed by Zoltan Herczeg.

Aiming for a slight code size/build time reduction if the DFG is not in
play. This should also make further DFG development slightly easier since
the bodies of these JIT stubs can now safely refer to things that are only
declared when the DFG is enabled.

  • jit/JITStubs.cpp:
  • jit/JITStubs.h:
1:19 AM Changeset in webkit [97950] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Yet another test expectation change for platform/chromium/compositing/zoom-animator-scale-test2.html

Unreviewed.

  • platform/chromium/test_expectations.txt:
1:15 AM Changeset in webkit [97949] by apavlov@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: The "x" in "980px x 36px" looks weird in the inspector node callout
https://bugs.webkit.org/show_bug.cgi?id=69857

Reviewed by Pavel Feldman.

  • inspector/DOMNodeHighlighter.cpp:
1:00 AM Changeset in webkit [97948] by Philippe Normand
  • 2 edits in trunk/Tools

Unreviewed. Adding myself to watchlists.

  • Scripts/webkitpy/common/config/watchlist:
12:56 AM Changeset in webkit [97947] by Philippe Normand
  • 7 edits in trunk/LayoutTests

Unreviewed, GTK rebaseline after r97926 and skip a failing plugin
test.

  • platform/gtk/Skipped: Skip plugins/resize-from-plugin.html.
  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt:
  • platform/gtk/fast/dom/call-a-constructor-as-a-function-expected.txt:
  • platform/gtk/fast/dom/prototype-inheritance-2-expected.txt:
  • platform/gtk/fast/js/global-constructors-expected.txt:
12:34 AM Changeset in webkit [97946] by loislo@chromium.org
  • 13 edits in trunk/Source

Unreviewed, rolling out r97917.
http://trac.webkit.org/changeset/97917
https://bugs.webkit.org/show_bug.cgi?id=70475

number of crashes on Snow Leopard/Lion tests bots
http://build.webkit.org/results/Lion%20Intel%20Release%20(Tests)/r97917%20(2020)/http/tests/inspector
/extensions-network-redirect-crash-log.txt (Requested by
loislo on #webkit).

Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-10-20

Source/WebCore:

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkOneSelector):

  • dom/OptionElement.cpp:

(WebCore::OptionElement::setSelectedState):
(WebCore::OptionElement::optionIndex):
(WebCore::OptionElement::collectOptionLabelOrText):
(WebCore::OptionElement::collectOptionInnerText):
(WebCore::OptionElement::normalizeText):
(WebCore::OptionElement::collectOptionTextRespectingGroupLabel):
(WebCore::OptionElementData::OptionElementData):
(WebCore::OptionElementData::~OptionElementData):
(WebCore::toOptionElement):
(WebCore::isOptionElement):

  • dom/OptionElement.h:

(WebCore::OptionElement::~OptionElement):
(WebCore::OptionElementData::value):
(WebCore::OptionElementData::setValue):
(WebCore::OptionElementData::label):
(WebCore::OptionElementData::setLabel):
(WebCore::OptionElementData::selected):
(WebCore::OptionElementData::setSelected):

  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::HTMLOptionElement):
(WebCore::HTMLOptionElement::createForJSConstructor):
(WebCore::HTMLOptionElement::text):
(WebCore::HTMLOptionElement::index):
(WebCore::HTMLOptionElement::parseMappedAttribute):
(WebCore::HTMLOptionElement::value):
(WebCore::HTMLOptionElement::selected):
(WebCore::HTMLOptionElement::setSelected):
(WebCore::HTMLOptionElement::setSelectedState):
(WebCore::HTMLOptionElement::defaultSelected):
(WebCore::HTMLOptionElement::setDefaultSelected):
(WebCore::HTMLOptionElement::label):
(WebCore::HTMLOptionElement::textIndentedToRespectGroupLabel):
(WebCore::HTMLOptionElement::insertedIntoTree):

  • html/HTMLOptionElement.h:
  • html/HTMLSelectElement.cpp:

(WebCore::HTMLSelectElement::nextValidIndex):
(WebCore::HTMLSelectElement::saveLastSelection):
(WebCore::HTMLSelectElement::setActiveSelectionAnchorIndex):
(WebCore::HTMLSelectElement::updateListBoxSelection):
(WebCore::HTMLSelectElement::listBoxOnChange):
(WebCore::HTMLSelectElement::recalcListItems):
(WebCore::HTMLSelectElement::selectedIndex):
(WebCore::HTMLSelectElement::setSelectedIndex):
(WebCore::HTMLSelectElement::optionToListIndex):
(WebCore::HTMLSelectElement::listToOptionIndex):
(WebCore::HTMLSelectElement::deselectItemsWithoutValidation):
(WebCore::HTMLSelectElement::saveFormControlState):
(WebCore::HTMLSelectElement::restoreFormControlState):
(WebCore::HTMLSelectElement::appendFormData):
(WebCore::HTMLSelectElement::reset):
(WebCore::HTMLSelectElement::updateSelectedState):
(WebCore::HTMLSelectElement::lastSelectedListIndex):
(WebCore::HTMLSelectElement::typeAheadFind):
(WebCore::HTMLSelectElement::accessKeySetSelectedIndex):
(WebCore::HTMLSelectElement::length):

  • platform/graphics/cg/ImageBufferCG.cpp:

(WebCore::ImageBuffer::copyImage):

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::updateFromElement):
(WebCore::RenderListBox::addFocusRingRects):
(WebCore::RenderListBox::paintItemForeground):
(WebCore::RenderListBox::paintItemBackground):

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth):
(WebCore::RenderMenuList::setTextFromOption):
(WebCore::RenderMenuList::itemText):
(WebCore::RenderMenuList::itemIsSelected):

Source/WebKit/chromium:

  • src/WebOptionElement.cpp:

(WebKit::WebOptionElement::defaultSelected):
(WebKit::WebOptionElement::setDefaultSelected):

  • src/WebSearchableFormData.cpp:

(HTMLNames::IsSelectInDefaultState):

12:22 AM Changeset in webkit [97945] by carol@webkit.org
  • 6 edits
    1 move in trunk/Source

Tiled Backing Store does not regenerate tiles when it should
https://bugs.webkit.org/show_bug.cgi?id=57798

Reviewed by Darin Adler.

Source/WebCore:

Changed TiledBackingStore::adjustVisibleRect to take into account
contentsSize, the same way as it is done when tiles are generated.

This is an issue that requires a certain sequence of API calls which
may not be easily simulated from DumpRenderTree, but which is
easily reproduced with QtTest. This is why I have provided only
a Qt specific test despite this being a generic problem.

  • platform/graphics/TiledBackingStore.cpp:

(WebCore::TiledBackingStore::adjustVisibleRect):
Changed to take into account ContentsSize.
(WebCore::TiledBackingStore::visibleContentsRect):
Added to return the intersection of the viewport's visible rect with
the ContentsRect.
(WebCore::TiledBackingStore::createTiles):
Changed to take into account the ContentsSize when calculating the
previously visible rect.

  • platform/graphics/TiledBackingStore.h:

Source/WebKit/qt:

Provided test for this bug. Changed the name of the resource I added
for a previous test so that the name is descriptive such that it can
be shared across several tests.

  • tests/qgraphicswebview/tst_qgraphicswebview.cpp:

(tst_QGraphicsWebView::bug57798):
(tst_QGraphicsWebView::bug56929):

  • tests/qgraphicswebview/tst_qgraphicswebview.qrc:
12:20 AM Changeset in webkit [97944] by jer.noble@apple.com
  • 2 edits in trunk/Source/WebCore

compositing/video tests time out on Lion
https://bugs.webkit.org/show_bug.cgi?id=70448

Reviewed by Eric Carlson.

Covered by existing tests.

AVFoundation will occasionally fill it's playback buffers before collecting enough
statistical information to answer YES to isLikelyToKeepUp. In this situation, set the
ready state to HAVE_ENOUGH_DATA, on the presumption that if the playback buffers are
full, playback will probably not stall.

  • platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:

(WebCore::MediaPlayerPrivateAVFoundation::updateStates):

Oct 19, 2011:

11:47 PM Changeset in webkit [97943] by Csaba Osztrogonác
  • 3 edits in trunk/LayoutTests

[Qt] Unreviewed morning gardning.

11:39 PM Changeset in webkit [97942] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

DFG ConvertThis emits slow code when the source node is known to be,
but not predicted to be, a final object
https://bugs.webkit.org/show_bug.cgi?id=70466

Reviewed by Oliver Hunt.

Added a new case in ConvertThis compilation.

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

11:36 PM Changeset in webkit [97941] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expectation change for platform/chromium/compositing/zoom-animator-scale-test2.html

Unreviewed.

  • platform/chromium/test_expectations.txt:
11:33 PM Changeset in webkit [97940] by fpizlo@apple.com
  • 3 edits in trunk/Source/JavaScriptCore

Optimization triggers in the old JIT may sometimes fire repeatedly even
though there is no optimization to be done
https://bugs.webkit.org/show_bug.cgi?id=70467

Reviewed by Oliver Hunt.

If optimize_from_ret does nothing, it delays the next optimization trigger.
This is performance-neutral.

  • jit/JITStubs.cpp:

(JSC::DEFINE_STUB_FUNCTION):

  • runtime/Heuristics.cpp:

(JSC::Heuristics::initializeHeuristics):

11:02 PM Changeset in webkit [97939] by haraken@chromium.org
  • 9 edits in trunk

MessageEvent.data can be stored as ScriptValue.
https://bugs.webkit.org/show_bug.cgi?id=68978

Reviewed by Hajime Morita.

Source/WebCore:

Currently, the following test cases fail or crash:

  • shouldBe("new MessageEvent('eventType', { data: test_object }).data", "test_object") -> FAIL
  • new MessageEvent('eventType', { data: document }).data -> CRASH

This is because MessageEvent.data is implemented just as SerializedScriptValue
and it cannot keep ScriptValue passed by JavaScript. This patch makes the following changes:

  • If MessageEvent is constructed with ScriptValue, it is stored as ScriptValue internally.

When MessageEvent.data is called, the ScriptValue is returned.

  • If MessageEvent is constructed with SerializedScriptValue, it is stored as

SerializedScriptValue internally (since we cannot deserialize it into ScriptValue
at this point because of lack of ExecState). When MessageEvent.data is called,
the SerializedScriptValue is deserialized into the corresponding ScriptValue,
and the ScriptValue is returned.

This patch does not make a fix for ObjC bindings code, since we need to first fix
the bug 28774, as commented in dom/MessageEvent.h and dom/MessageEvent.cpp.

Test: fast/events/constructors/message-event-constructor.html

fast/dom/message-port-deleted-by-accessor.html
fast/events/init-events.html
fast/eventsource/eventsource-attribute-listeners.html

  • bindings/js/JSMessageEventCustom.cpp:

(WebCore::JSMessageEvent::data): Custom getter for MessageEvent.data. Supported ScriptValue.
(WebCore::JSMessageEvent::handleInitMessageEvent): Changed SerializedScriptValue to ScriptValue. Removed a 'doTransfer' parameter.
(WebCore::JSMessageEvent::initMessageEvent): Removed a 'doTransfer' parameter.
(WebCore::JSMessageEvent::webkitInitMessageEvent): Ditto.

  • bindings/v8/custom/V8MessageEventCustom.cpp:

(WebCore::V8MessageEvent::dataAccessorGetter): Custom getter for MessageEvent.data. Supported ScriptValue.
(WebCore::V8MessageEvent::portsAccessorGetter): Removed extra spaces.
(WebCore::V8MessageEvent::initMessageEventCallback): Changed SerializedScriptValue to ScriptValue.

  • dom/MessageEvent.cpp:

(WebCore::MessageEvent::MessageEvent): Supported ScriptValue.
(WebCore::MessageEvent::initMessageEvent): Supported ScriptValue.
(WebCore::MessageEvent::isMessageEvent): Removed extra spaces.

  • dom/MessageEvent.h: Added DataType::DataTypeScriptValue.

(WebCore::MessageEvent::create): Supported ScriptValue.
(WebCore::MessageEvent::dataAsScriptValue): Getter for data. Insert ASSERT() to guarantee that this accessor is not called for unintended type of data.
(WebCore::MessageEvent::dataAsSerializedScriptValue): Ditto.
(WebCore::MessageEvent::dataAsString): Ditto.
(WebCore::MessageEvent::dataAsBlob): Ditto.
(WebCore::MessageEvent::dataAsArrayBuffer): Ditto.

  • dom/MessageEvent.idl: Changed SerializedScriptValue to DOMObject (i.e. ScriptValue). This patch does not touch an ObjC part. Removed [CachedAttribute] from MessageEvent.data, since it is now a DOMObject and needs not to be cached.

LayoutTests:

Removed failures and crashes.

  • fast/events/constructors/message-event-constructor-expected.txt:
  • fast/events/constructors/message-event-constructor.html:
10:19 PM Changeset in webkit [97938] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix GTK build.

  • GNUmakefile.am:
10:16 PM Changeset in webkit [97937] by abarth@webkit.org
  • 1 edit
    1 copy in trunk/Source/WebCore

Rolled over to ChangeLog-2011-10-19

10:11 PM Changeset in webkit [97936] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Another attempted build fix. I managed to screw up every line of this file.

  • CodeGenerators.pri:
10:03 PM Changeset in webkit [97935] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Revert test expectaion change by 97932.

Unreviewed.

  • platform/chromium/test_expectations.txt:
10:03 PM Changeset in webkit [97934] by abarth@webkit.org
  • 2 edits in trunk/Source/WebCore

Attempt to fix the Qt build.

  • CodeGenerators.pri:
9:50 PM Changeset in webkit [97933] by abarth@webkit.org
  • 13 edits
    3 adds in trunk/Source

Document.cpp shouldn't need to know about every event for every feature
https://bugs.webkit.org/show_bug.cgi?id=70469

Reviewed by Eric Seidel.

make_event_factory.pl generates the implementation of EventFactory
based on a simple ".in" file.

  • CodeGenerators.pri:
  • DerivedSources.make:
  • GNUmakefile.am:
  • WebCore.gyp/WebCore.gyp:
  • WebCore.gyp/scripts/action_makenames.py:
  • WebCore.xcodeproj/project.pbxproj:
  • dom/Document.cpp:

(WebCore::Document::createEvent):

  • dom/EventFactory.h: Added.
  • dom/EventFactory.in: Added.
  • dom/make_event_factory.pl: Added.

(defaultEventPropertyHash):
(eventHandler):
(parametersHandler):
(readNames):
(readEvents):
(interfaceForEvent):
(printCppFile):
(printLicenseHeader):

9:43 PM Changeset in webkit [97932] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expectation change for platform/chromium/compositing/zoom-animator-scale-test2.html

Unreviewed.

  • platform/chromium/test_expectations.txt:
9:22 PM Changeset in webkit [97931] by eric@webkit.org
  • 6 edits in trunk/Tools

Reviewed by Adam Barth.

Teach new-run-webkit-tests about #CRASHED and #CRASHED - WebProcess
https://bugs.webkit.org/show_bug.cgi?id=63683

  • Scripts/webkitpy/common/net/layouttestresults.py:
  • Scripts/webkitpy/common/net/resultsjsonparser.py:
  • Scripts/webkitpy/layout_tests/layout_package/manager.py:
  • Scripts/webkitpy/layout_tests/layout_package/single_test_runner.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_failures.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_failures_unittest.py:
  • Scripts/webkitpy/layout_tests/layout_package/test_result_writer.py:
  • Scripts/webkitpy/layout_tests/layout_package/worker.py:
  • Scripts/webkitpy/layout_tests/port/base.py:
  • Scripts/webkitpy/layout_tests/port/server_process.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
  • Scripts/webkitpy/layout_tests/run_webkit_tests_integrationtest.py:
9:03 PM Changeset in webkit [97930] by yutak@chromium.org
  • 2 edits in trunk/LayoutTests

WebSocket layout tests are flaky on Chromium Win
https://bugs.webkit.org/show_bug.cgi?id=66730

Reviewed by Mihai Parparita.

Remove test expectations for WebSocket tests which have not been failing since
TcpClientSocketWin fix on Chromium (http://crrev.com/104852).

  • platform/chromium/test_expectations.txt:
8:53 PM Changeset in webkit [97929] by haraken@chromium.org
  • 14 edits in trunk/Source/WebCore

Added a ConstructorMode check to all existing custom V8 constructors.
https://bugs.webkit.org/show_bug.cgi?id=70464

Reviewed by Adam Barth.

This patch adds the following two lines to all existing custom V8 constructors:

if (ConstructorMode::current() == ConstructorMode::WrapExistingObject)

return args.Holder();

This checks whether a programmer is trying to allocate an object via "new X",
or C++ is trying to allocate an object via the function template and wrap the
object with a JS flavor. (See here for more details: bug 70015) In the latter case,
a constructor callback should not be executed (i.e. should return immediately).

No new tests. No change in behavior.

  • bindings/v8/custom/V8ArrayBufferCustom.cpp: Added the ConstructorMode check.

(WebCore::V8ArrayBuffer::constructorCallback):

  • bindings/v8/custom/V8ArrayBufferViewCustom.h: Ditto.

(WebCore::constructWebGLArray):

  • bindings/v8/custom/V8AudioContextCustom.cpp: Ditto.

(WebCore::V8AudioContext::constructorCallback):

  • bindings/v8/custom/V8DOMFormDataCustom.cpp: Ditto.

(WebCore::V8DOMFormData::constructorCallback):

  • bindings/v8/custom/V8DataViewCustom.cpp: Ditto.

(WebCore::V8DataView::constructorCallback):

  • bindings/v8/custom/V8HTMLAudioElementConstructor.cpp: Ditto.

(WebCore::v8HTMLAudioElementConstructorCallback):

  • bindings/v8/custom/V8HTMLImageElementConstructor.cpp: Ditto.

(WebCore::v8HTMLImageElementConstructorCallback):

  • bindings/v8/custom/V8HTMLOptionElementConstructor.cpp: Ditto.

(WebCore::v8HTMLOptionElementConstructorCallback):

  • bindings/v8/custom/V8MessageChannelConstructor.cpp: Ditto.

(WebCore::V8MessageChannel::constructorCallback):

  • bindings/v8/custom/V8WebKitMutationObserverCustom.cpp: Ditto.

(WebCore::V8WebKitMutationObserver::constructorCallback):

  • bindings/v8/custom/V8WebKitPointConstructor.cpp: Ditto.

(WebCore::V8WebKitPoint::constructorCallback):

  • bindings/v8/custom/V8WebSocketCustom.cpp: Ditto.

(WebCore::V8WebSocket::constructorCallback):

  • bindings/v8/custom/V8XMLHttpRequestConstructor.cpp: Ditto.

(WebCore::V8XMLHttpRequest::constructorCallback):

8:32 PM Changeset in webkit [97928] by commit-queue@webkit.org
  • 3 edits in trunk/Source/JavaScriptCore

DFG JIT 32_64 - remove unnecessary double unboxings in fillDouble/fillSpeculateDouble
https://bugs.webkit.org/show_bug.cgi?id=70460

Patch by Yuqiang Xian <yuqiang.xian@intel.com> on 2011-10-19
Reviewed by Filip Pizlo.

As pointed out by Gavin in bug #70418, when a value is already in memory
we can avoid loading it to two GPRs at first and then unboxing them to a FPR.
This gives 9% improvement on Kraken if without the change in bug #70418,
and 1% if based on the code with bug #70418 change.
Performance is neutral in V8 and SunSpider.

  • dfg/DFGJITCodeGenerator32_64.cpp:

(JSC::DFG::JITCodeGenerator::fillDouble):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):

8:16 PM Changeset in webkit [97927] by carol@webkit.org
  • 4 edits
    2 adds in trunk

CSS Counters have wrong values
https://bugs.webkit.org/show_bug.cgi?id=69605

Reviewed by Darin Adler.

Source/WebCore:

Test: fast/css/counters/after-continuation.html

Added a new method for getting the renderer of the "after"
pseudo-element that handles continuations.
Hooked up the new method with the CSS counter code.

  • rendering/RenderCounter.cpp:

(WebCore::rendererOfAfterPseudoElement):
(WebCore::previousInPreOrder):
(WebCore::nextInPreOrder):

  • rendering/RenderObject.h:

LayoutTests:

This test highlights the ability of the CSS counter handling code to
find a counter attached to a continuation of a renderer.

  • fast/css/counters/after-continuation-expected.txt: Added.
  • fast/css/counters/after-continuation.html: Added.
7:53 PM Changeset in webkit [97926] by annacc@chromium.org
  • 24 edits
    3 copies
    2 adds in trunk/Source/WebCore

Adding some IDL files for <track>.
https://bugs.webkit.org/show_bug.cgi?id=62887

Reviewed by Adam Barth.

Tests:
MutableTextTrack.idl and addTrack() in HTMLMediaElement.idl are tested by:
media/track/track-mutable.html

TextTrack.idl is tested by:
media/track/track-text-track.html

TextTrackCue.idl is tested by:
media/track/track-webvtt-tc006-cue-identifiers.html
media/track/track-webvtt-tc007-cue-no-id.html
media/track/track-webvtt-tc008-timings-no-hours.html
media/track/track-webvtt-tc009-timings-hour.html
media/track/track-webvtt-tc013-settings.html
media/track/track-webvtt-tc023-markup.html

TextTrackCueList.idl is tested by:
media/track/track-text-track-cue-list.html

  • CMakeLists.txt: Adding files to build systems.
  • CodeGenerators.pri: Adding files to build systems.
  • DerivedSources.cpp: Adding files to build systems.
  • DerivedSources.make: Adding files to build systems.
  • GNUmakefile.list.am: Adding files to build systems.
  • WebCore.gypi: Adding files to build systems.
  • WebCore.pro: Adding files to build systems.
  • WebCore.xcodeproj/project.pbxproj: Adding files to build systems.
  • bindings/gobject/GNUmakefile.am: Adding files to build systems.
  • bindings/gobject/WebKitHTMLElementWrapperFactory.cpp: Adding files to build systems.
  • bindings/js/JSBindingsAllInOne.cpp: Adding files to build systems.
  • bindings/js/JSTextTrackCustom.cpp: Added.

(WebCore::toJS):

  • bindings/scripts/CodeGeneratorV8.pm:

(HasCustomToV8Implementation): Special check for TextTrack since V8 can auto-generate
it, but JS cannot yet.

  • html/HTMLMediaElement.cpp:

(WebCore::HTMLMediaElement::addTrack): creates and returns a new MutableTextTrack.

  • html/HTMLMediaElement.h: Adding addTrack() function.
  • html/HTMLMediaElement.idl: Adding addTrack() function.
  • html/HTMLTrackElement.cpp:

(WebCore::HTMLTrackElement::track): Adding track getter.

  • html/HTMLTrackElement.h: Adding track getter.
  • html/HTMLTrackElement.idl: Adding track getter.
  • html/MutableTextTrack.idl: Added.
  • html/TextTrack.idl: Added.
  • html/TextTrackCue.idl: Added.
  • html/TextTrackCueList.cpp:

(WebCore::TextTrackCueList::length):
(WebCore::TextTrackCueList::item): Used for [] operator.

  • html/TextTrackCueList.h: Added item() for [] operator.
  • html/TextTrackCueList.idl: Added.
  • page/DOMWindow.idl: Adding TextTrackCue new operator.
7:48 PM Changeset in webkit [97925] by arv@chromium.org
  • 28 edits
    1 delete in trunk/LayoutTests

Clean up tests to not depend on js-test-style.css
https://bugs.webkit.org/show_bug.cgi?id=70462

Reviewed by Ojan Vafai.

  • fast/css/limited-vendor-prefix-behavior.html-disabled:
  • fast/css/link-disabled-attr-expected.txt:
  • fast/css/link-disabled-attr.html:
  • fast/dom/Geolocation/page-reload-cancel-permission-requests.html:
  • fast/dom/SelectorAPI/caseTagX.xhtml:
  • fast/dom/StyleSheet/detached-parent-rule-without-wrapper.html:
  • fast/dom/StyleSheet/detached-style-pi.xhtml:
  • fast/dom/StyleSheet/detached-stylesheet-without-wrapper.html:
  • fast/dom/StyleSheet/gc-declaration-parent-rule.html:
  • fast/dom/StyleSheet/gc-parent-rule.html:
  • fast/dom/StyleSheet/gc-parent-stylesheet.html:
  • fast/dom/StyleSheet/gc-styleheet-wrapper.xhtml:
  • fast/dom/Window/window-resize-nan.html-disabled:
  • fast/dom/dataset-xhtml.xhtml:
  • fast/dom/domListEnumeration-expected.txt:
  • fast/dom/domListEnumeration.html:
  • fast/dom/script-tests/domListEnumeration.js:
  • fast/dom/script-tests/webtiming-document-open.js:

(testTimingWithDocumentOpen):

  • fast/dom/title-content-set-innerText-get.xhtml:
  • fast/forms/focus-selection-input.html:
  • fast/forms/focus-selection-textarea.html:
  • fast/forms/option-value-trim-html-spaces.html:
  • fast/js/garbage-collect-after-string-appends.html-disabled:
  • fast/js/kde/Date.html-disabled:
  • fast/js/string-concatenate-outofmemory.html-disabled:
  • fast/mutation/observe-attributes.html:
  • fast/mutation/observe-characterdata.html:
  • platform/chromium/fast/dom/domListEnumeration-expected.txt: Removed.
7:42 PM Changeset in webkit [97924] by commit-queue@webkit.org
  • 5 edits in trunk/Source/WebCore

[chromium] Fix webkit style on a few files.
https://bugs.webkit.org/show_bug.cgi?id=70441

Patch by Shawn Singh <shawnsingh@chromium.org> on 2011-10-19
Reviewed by James Robinson.

Tested with existing layout and unit tests.

  • platform/graphics/chromium/LayerChromium.cpp:
  • platform/graphics/chromium/LayerChromium.h:

(WebCore::LayerChromium::setIsMask):

  • platform/graphics/chromium/LayerRendererChromium.cpp:

(WebCore::LayerRendererChromium::initialize):

  • platform/graphics/chromium/LayerRendererChromium.h:
7:28 PM Changeset in webkit [97923] by jochen@chromium.org
  • 2 edits in trunk/Tools

Chromium doesn't support git branch builds, so don't add the branch to the product dir
https://bugs.webkit.org/show_bug.cgi?id=70449

Reviewed by Eric Seidel.

  • Scripts/webkitdirs.pm:

(determineBaseProductDir):

7:23 PM Changeset in webkit [97922] by nduca@chromium.org
  • 14 edits in trunk/Source

[chromium] Route requestAnimationFrame through CCProxy in threaded mode
https://bugs.webkit.org/show_bug.cgi?id=70160

Reviewed by James Robinson.

Source/WebCore:

  • platform/graphics/chromium/cc/CCLayerTreeHost.cpp:

(WebCore::CCLayerTreeHost::setNeedsAnimate):

  • platform/graphics/chromium/cc/CCLayerTreeHost.h:
  • platform/graphics/chromium/cc/CCProxy.h:
  • platform/graphics/chromium/cc/CCScheduler.cpp:

(WebCore::CCScheduler::requestAnimate):

  • platform/graphics/chromium/cc/CCScheduler.h:
  • platform/graphics/chromium/cc/CCSingleThreadProxy.cpp:

(WebCore::CCSingleThreadProxy::setNeedsAnimate):

  • platform/graphics/chromium/cc/CCSingleThreadProxy.h:
  • platform/graphics/chromium/cc/CCThreadProxy.cpp:

(WebCore::CCThreadProxy::setNeedsAnimate):
(WebCore::CCThreadProxy::setNeedsAnimateOnCCThread):

  • platform/graphics/chromium/cc/CCThreadProxy.h:

Source/WebKit/chromium:

  • src/ChromeClientImpl.cpp:

(WebKit::ChromeClientImpl::scheduleAnimation):

  • src/WebViewImpl.cpp:

(WebKit::WebViewImpl::scheduleAnimation):

  • src/WebViewImpl.h:
7:15 PM Changeset in webkit [97921] by thakis@chromium.org
  • 2 edits in trunk/Source/WebKit/chromium

[chromium/mac] Use clang as compiler!
https://bugs.webkit.org/show_bug.cgi?id=70425

Reviewed by Adam Barth.

It looks like http://trac.webkit.org/changeset/97415 was all that's
needed to get this to work.

  • gyp_webkit:

Don't force clang off, which means it's now on by default on mac.

7:14 PM Changeset in webkit [97920] by Martin Robinson
  • 10 edits
    1 copy in trunk/Source/WebKit2

[GTK] [WebKit2] Allow sharing page clients between WebViews
https://bugs.webkit.org/show_bug.cgi?id=69814

No longer associate WebPage client wrappers with a WebKitWebView. This allows the
same client to be used with more than one WebKitWebView.

Reviewed by Xan Lopez.

  • GNUmakefile.am: Add the new WebKitWebViewPrivate header.
  • UIProcess/API/gtk/WebKitDefines.h: Added some forward declarations for API classes.
  • UIProcess/API/gtk/WebKitWebLoaderClient.cpp: C API callbacks now convert their WKPageRef argument

into a WebKitWebView directly and pass it as a parameter to signals. Remove the web-view property.

  • UIProcess/API/gtk/WebKitWebLoaderClient.h: Move the estimated-progress property to WebKitWebView.
  • UIProcess/API/gtk/WebKitWebView.cpp: Add an estimated-load-progress property.

(webkitWebViewConstructed):Only allocate one default WebKitWebLoaderClient.
(webkitWebViewGetProperty): Add support for the new property.
(webkit_web_view_class_init): Ditto.
(webkitWebViewSetEstimatedLoadProgress): Added this private method so that the WebKitWebLoaderClient
can update the appropriate WebKitWebView.
(webkit_web_view_set_loader_client): Attach the C API callbacks here now.
(webkit_web_view_get_estimated_load_progress): Moved from WebKitWebLoaderClient.

  • UIProcess/API/gtk/WebKitWebView.h: Added new method definition.
  • UIProcess/API/gtk/WebKitWebViewPrivate.h: Copied from Source/WebKit2/UIProcess/API/gtk/WebKitDefines.h.
  • UIProcess/API/gtk/tests/LoadTrackingTest.cpp: Updated the load tracking tests callbacks to take the new parameter.

(LoadTrackingTest::LoadTrackingTest): Listen to the WebKitWebView property now.
(LoadTrackingTest::estimatedProgressChanged):

  • UIProcess/API/gtk/tests/TestWebKitWebView.cpp: Added a test to verify that two WebViews share the same default client.
  • UIProcess/API/gtk/webkit2marshal.list: Updated the marshallers here.
7:13 PM Changeset in webkit [97919] by yuzo@google.com
  • 1 edit
    1 move
    1 add in trunk/LayoutTests

[chromium] Test expectation change.

Unreviewed.

  • platform/chromium-cg-mac-snowleopard/editing/pasteboard/drag-selected-image-to-contenteditable-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png: Renamed from LayoutTests/platform/chromium-mac/editing/pasteboard/drag-selected-image-to-contenteditable-expected.png.
7:12 PM Changeset in webkit [97918] by tkent@chromium.org
  • 2 edits in trunk/Source/WebCore

Reject invalid MIME type strings for a file selection dialog parameter
https://bugs.webkit.org/show_bug.cgi?id=70095

Reviewed by Darin Fisher and Darin Adler.

No new tests. This affect only a value passed to WebKit layer.

  • html/HTMLInputElement.cpp:

(WebCore::isRFC2616TokenCharacter): Added.
(WebCore::HTMLInputElement::acceptMIMETypes):
Validate a MIME type string, and don't add invalid strings to the output Vector.

7:08 PM Changeset in webkit [97917] by Darin Adler
  • 13 edits in trunk/Source

Remove OptionElement (first half)
https://bugs.webkit.org/show_bug.cgi?id=70276

Reviewed by Kent Tamura.

Source/WebCore:

Refactoring that does not require new tests.

  • css/SelectorChecker.cpp:

(WebCore::SelectorChecker::checkOneSelector): Use hasTagName
and toHTMLOptionElement instead of toOptionElement.

  • dom/OptionElement.cpp: Deleted contents. Remove file later.
  • dom/OptionElement.h: Ditto.
  • html/HTMLOptionElement.cpp:

(WebCore::HTMLOptionElement::HTMLOptionElement): Initialize m_isSelected.
(WebCore::HTMLOptionElement::createForJSConstructor): Initialize the
selected attribute rather than calling setDefaultSelected.
(WebCore::HTMLOptionElement::text): Moved the code here from
OptionElement::collectOptionLabelOrText.
(WebCore::HTMLOptionElement::index): Moved the code here from
OptionElement::optionIndex.
(WebCore::HTMLOptionElement::parseMappedAttribute): Removed unneeded
code to call setValue and setLabel. Changed the code that called
setSelected to instead set m_isSelected and added a FIXME about why
that's probably wrong, but same behavior as before.
(WebCore::HTMLOptionElement::value): Moved the code here from
OptionElement::collectOptionValue. Added a FIXME about incorrect
whitespace stripping.
(WebCore::HTMLOptionElement::selected): Use m_isSelected.
(WebCore::HTMLOptionElement::setSelected): Use m_isSelected and
call setSelectedState instead of OptionElement::setSelectedState.
(WebCore::HTMLOptionElement::setSelectedState): Moved the code
here from OptionElement::setSelectedState.
(WebCore::HTMLOptionElement::label): Streamlined the code.
(WebCore::HTMLOptionElement::textIndentedToRespectGroupLabel):
Moved the code here from OptionElement::collectOptionTextRespectingGroupLabel.
(WebCore::HTMLOptionElement::insertedIntoTree): Use m_isSelected
and rewrote comment for clarity.
(WebCore::HTMLOptionElement::collectOptionInnerText): Moved this
here from OptionElement, and changed to use StringBuilder.
(WebCore::toHTMLOptionElement): Added.

  • html/HTMLOptionElement.h: Removed OptionElement.h include.

Removed OptionElement base class. Removed unneeded friend declarations.
Made value and selected functions non-virtual. Removed unneeded
defaultSelected and setDefaultSelected functions. Made the
textIndentedToRespectGroupLabel and setSelectedState functions
be non-virtual and public. Added a collectOptionInnerText function.
Replaced m_data with m_value, m_label, and m_selected.

  • html/HTMLSelectElement.cpp:

(WebCore::toOptionElement): Added. Helper to keep existing code
close to the same.
(WebCore::HTMLSelectElement::nextValidIndex): Use hasTagName
instead of isOptionElement.
(WebCore::HTMLSelectElement::saveLastSelection): Use HTMLOptionElement
type instead of OptionElement.
(WebCore::HTMLSelectElement::setActiveSelectionAnchorIndex): Ditto.
(WebCore::HTMLSelectElement::updateListBoxSelection): Ditto.
(WebCore::HTMLSelectElement::listBoxOnChange): Ditto.
(WebCore::HTMLSelectElement::recalcListItems): Ditto.
(WebCore::HTMLSelectElement::selectedIndex): Ditto.
(WebCore::HTMLSelectElement::setSelectedIndex): Ditto.
(WebCore::HTMLSelectElement::optionToListIndex): Ditto.
(WebCore::HTMLSelectElement::listToOptionIndex): Ditto.
(WebCore::HTMLSelectElement::deselectItemsWithoutValidation): Ditto.
(WebCore::HTMLSelectElement::saveFormControlState): Ditto.
(WebCore::HTMLSelectElement::restoreFormControlState): Ditto.
(WebCore::HTMLSelectElement::appendFormData): Ditto.
(WebCore::HTMLSelectElement::reset): Ditto.
(WebCore::HTMLSelectElement::updateSelectedState): Ditto.
(WebCore::HTMLSelectElement::lastSelectedListIndex): Ditto.
(WebCore::HTMLSelectElement::typeAheadFind): Ditto.
(WebCore::HTMLSelectElement::accessKeySetSelectedIndex): Ditto.
(WebCore::HTMLSelectElement::length): Ditto.

  • rendering/RenderListBox.cpp:

(WebCore::RenderListBox::updateFromElement): Use HTMLOptionElement,
hasTagName, and toHTMLOptionElement.
(WebCore::RenderListBox::addFocusRingRects): Ditto.
(WebCore::RenderListBox::paintItemForeground): Ditto.
(WebCore::RenderListBox::paintItemBackground): Ditto.

  • rendering/RenderMenuList.cpp:

(WebCore::RenderMenuList::updateOptionsWidth): Ditto.
(WebCore::RenderMenuList::setTextFromOption): Ditto.
(WebCore::RenderMenuList::itemText): Ditto.
(WebCore::RenderMenuList::itemIsSelected): Ditto.

Source/WebKit/chromium:

Update hand-written binding for option element so it does not depend on otherwise-unneeded functions.

  • src/WebOptionElement.cpp:

(WebKit::WebOptionElement::defaultSelected): Call hasAttribute.
(WebKit::WebOptionElement::setDefaultSelected): Call setAttribute.

  • src/WebSearchableFormData.cpp:

(HTMLNames::IsSelectInDefaultState): Call hasAttribute.

7:06 PM Changeset in webkit [97916] by wjmaclean@chromium.org
  • 3 edits in trunk/LayoutTests

[chromium] Rebaseline layout test zoom-animator-scale-test2.html for win, mac
https://bugs.webkit.org/show_bug.cgi?id=69624

Mark test as SLOW and increase test's internal timeout value to attempt to
eliminate flakiness on WIN GPU.

Reviewed by Kenneth Russell.

  • platform/chromium/compositing/zoom-animator-scale-test2.html:
  • platform/chromium/test_expectations.txt:
7:02 PM Changeset in webkit [97915] by ojan@chromium.org
  • 2 edits in trunk/Tools

Unreviewed. Adding myself to watchlists.

  • Scripts/webkitpy/common/config/watchlist:
7:02 PM Changeset in webkit [97914] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebKit/efl

[EFL] Fix typos on ewk_view and ewk_js.
https://bugs.webkit.org/show_bug.cgi?id=70430

Unreviewed build fix.

Fixes for typos that were introduced when renaming variables to follow
webkit coding style.

Patch by Rafael Antognolli <antognolli@profusion.mobi> on 2011-10-19

  • ewk/ewk_js.cpp:

(ewk_js_property_set):
(ewk_js_class_new):
(ewk_js_npobject_to_object):
(ewk_js_object_new):
(ewk_js_object_invoke):
(ewk_js_object_type_get):
(ewk_js_object_type_set):
(ewk_js_variant_free):

  • ewk/ewk_view.cpp:

(ewk_view_js_object_add):

6:54 PM Changeset in webkit [97913] by kov@webkit.org
  • 3 edits in trunk/Source/WebKit/gtk

GTK+ build fix. Rename the INCLUDES variable so it is not picked
up by random bystanders. Also do some more cleanup on stuff we
inherited from gtk-doc.make.

Patch by Gustavo Noronha Silva <Gustavo Noronha Silva> on 2011-10-19

  • GNUmakefile.gtk-doc.am:
  • docs/GNUmakefile.am:
6:52 PM Changeset in webkit [97912] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

Flush denormals to zero on Windows.
https://bugs.webkit.org/show_bug.cgi?id=70140

Patch by Raymond Toy <Raymond Toy> on 2011-10-19
Reviewed by Kenneth Russell.

  • platform/audio/AudioBus.cpp:

(WebCore::AudioBus::processWithGainFromMonoStereo):
Flush any denormals to zero before saving the result. Change
double gain to float gain to match existing float operations.

  • platform/audio/DenormalDisabler.h:

(WebCore::DenormalDisabler::flushDenormalFloatToZero):
New function to flush the given float to zero, if it is a denormal
number.

6:51 PM Changeset in webkit [97911] by commit-queue@webkit.org
  • 3 edits in trunk/Source/WebCore

[EFL] Remove the empty paint() implementation in ScrollbarEfl.
https://bugs.webkit.org/show_bug.cgi?id=70428

Patch by Raphael Kubo da Costa <kubo@profusion.mobi> on 2011-10-19
Reviewed by Antonio Gomes.

Remove the empty reimplementation of Scrollbar::paint(), as this would
cause ScrollView::paintScrollbars() to paint nothing at all.

If we have mock scrollbars enabled, this will paint them; otherwise,
the code path will end up in WidgetEfl::paint(), which also does
nothing, so the behavior should not change.

No new tests, this is machinery needed to run the current ones.

  • platform/efl/ScrollbarEfl.cpp:

(ScrollbarEfl::frameRectsChanged):

  • platform/efl/ScrollbarEfl.h:
6:47 PM Changeset in webkit [97910] by tkent@chromium.org
  • 3 edits in trunk/Source/WebKit/chromium

[Chromium]: Move from FileChooserSettings deprecatedAcceptType to acceptMIMETypes
https://bugs.webkit.org/show_bug.cgi?id=70003

Reviewed by Darin Fisher.

  • public/WebFileChooserParams.h:

Add acceptMIMETypes, and make acceptTypes deprecated.

  • src/ChromeClientImpl.cpp:

(WebKit::ChromeClientImpl::runOpenPanel):

  • Set WebFileChooserParams::acceptMIMETypes
  • Set a joined string to WebFileChooserParams::acceptTypes until we remove acceptTypes.
6:47 PM Changeset in webkit [97909] by imasaki@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Update the test expectation file for fullscreen tests.

Unreviewed.

  • platform/chromium/test_expectations.txt:
6:39 PM Changeset in webkit [97908] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] Do not always consider a ScrollView will have an Evas/Evas_Object.
https://bugs.webkit.org/show_bug.cgi?id=70426

Patch by Raphael Kubo da Costa <kubo@profusion.mobi> on 2011-10-19
Reviewed by Antonio Gomes.

After r95234 turned on a new code path for the port (we erroneously used
ENABLE_AS_IMAGE instead of ENABLE_SVG_AS_IMAGE before), some tests, such
as compositing/image/direct-svg-image.html or
fast/writing-mode/block-level-images.html started writing stderr
messages about the parent passed to ScrollbarEfl::setParent not having
an Evas.

It turns out that a FrameView can be created in places other than
ewk_frame_view_create_for_view, in which case the view will not have an
Evas or an Evas_Object. This is not an error condition, so we can just
return earlier.

No new tests, this was detected by existing ones.

  • platform/efl/ScrollbarEfl.cpp:

(ScrollbarEfl::setParent):

6:36 PM Changeset in webkit [97907] by jchaffraix@webkit.org
  • 3 edits
    4 adds in trunk

Multiple crashes in RenderTable during layout
https://bugs.webkit.org/show_bug.cgi?id=70392

Reviewed by Simon Fraser.

Source/WebCore:

Tests: fast/table/crash-anonymous-table-computeLogicalWidth.html

fast/table/crash-anonymous-table-layout.html

r97555 forgot to take into account anonymous tables during layout
where RenderObject::node() is NULL.

  • rendering/RenderTable.cpp:

(WebCore::RenderTable::computeLogicalWidth):
(WebCore::RenderTable::layout):
Added a check for node() before calling Node::hasTagName.

LayoutTests:

  • fast/table/crash-anonymous-table-computeLogicalWidth-expected.txt: Added.
  • fast/table/crash-anonymous-table-computeLogicalWidth.html: Added.
  • fast/table/crash-anonymous-table-layout-expected.txt: Added.
  • fast/table/crash-anonymous-table-layout.html: Added.
6:24 PM Changeset in webkit [97906] by dpranke@chromium.org
  • 3 edits
    2 copies
    2 moves
    3 adds
    10 deletes in trunk/LayoutTests

Update chromium expectations after r97889.

Unreviewed, expectations change.

  • platform/chromium-cg-mac-snowleopard/fast/dom/call-a-constructor-as-a-function-expected.txt: Removed.
  • platform/chromium-cg-mac-snowleopard/fast/dom/error-to-string-stack-overflow-expected.txt: Removed.
  • platform/chromium-linux-x86/fast/dom/call-a-constructor-as-a-function-expected.txt: Removed.
  • platform/chromium-linux-x86/fast/dom/error-to-string-stack-overflow-expected.txt: Removed.
  • platform/chromium-linux-x86/fast/parser/entity-end-script-tag-expected.txt: Removed.
  • platform/chromium-linux/fast/dom/call-a-constructor-as-a-function-expected.txt: Removed.
  • platform/chromium-linux/fast/dom/error-to-string-stack-overflow-expected.txt: Removed.
  • platform/chromium-linux/fast/parser/entity-end-script-tag-expected.txt: Removed.
  • platform/chromium-mac-snowleopard/fast/dom/call-a-constructor-as-a-function-expected.txt: Copied from LayoutTests/platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt.
  • platform/chromium-mac-snowleopard/fast/dom/error-to-string-stack-overflow-expected.txt: Copied from LayoutTests/platform/chromium/fast/dom/error-to-string-stack-overflow-expected.txt.
  • platform/chromium-mac-snowleopard/fast/parser/entity-end-script-tag-expected.txt: Renamed from LayoutTests/platform/chromium-cg-mac/fast/parser/entity-end-script-tag-expected.txt.
  • platform/chromium-mac/fast/parser/entity-end-script-tag-expected.txt: Removed.
  • platform/chromium-win/fast/parser/entity-end-script-tag-expected.txt: Removed.
  • platform/chromium/fast/dom/call-a-constructor-as-a-function-expected.txt:
  • platform/chromium/fast/dom/error-to-string-stack-overflow-expected.txt:
  • platform/chromium/fast/parser/entity-end-script-tag-expected.txt: Renamed from LayoutTests/platform/chromium-cg-mac-snowleopard/fast/parser/entity-end-script-tag-expected.txt.
6:18 PM Changeset in webkit [97905] by barraclough@apple.com
  • 14 edits in trunk

Poisoning of strict caller,arguments inappropriately poisoning "in"
https://bugs.webkit.org/show_bug.cgi?id=63398

Reviewed by Oliver Hunt.

Source/JavaScriptCore:

This fixes the problem by correctly implementing the spec -
the error should actually be being thrown from a standard JS getter/setter.
This implements spec correct behaviour for strict mode JS functions & bound
functions, I'll follow up with a patch to do the same for arguments.

  • runtime/JSBoundFunction.cpp:

(JSC::JSBoundFunction::finishCreation):

  • Add the poisoned caller/arguments properties.
  • runtime/JSBoundFunction.h:
  • runtime/JSFunction.cpp:

(JSC::JSFunction::finishCreation):
(JSC::JSFunction::getOwnPropertySlot):
(JSC::JSFunction::getOwnPropertyDescriptor):
(JSC::JSFunction::put):

  • If the caller/arguments are accessed on a strict mode function, lazily add the ThrowTypeError getter.
  • runtime/JSFunction.h:
  • runtime/JSGlobalObject.cpp:

(JSC::JSGlobalObject::createThrowTypeError):
(JSC::JSGlobalObject::visitChildren):

  • runtime/JSGlobalObject.h:

(JSC::JSGlobalObject::throwTypeErrorGetterSetter):

  • Add a ThrowTypeError type, per ES5 13.2.3.
  • runtime/JSGlobalObjectFunctions.cpp:

(JSC::globalFuncThrowTypeError):

  • runtime/JSGlobalObjectFunctions.h:
    • Implementation of ThrowTypeError.
  • runtime/JSObject.cpp:

(JSC::JSObject::initializeGetterSetterProperty):

  • runtime/JSObject.h:
    • This function adds a new property (must not exist already) that is an initialized getter/setter.

LayoutTests:

  • fast/js/basic-strict-mode-expected.txt:
  • fast/js/script-tests/basic-strict-mode.js:
    • Add tests.
5:53 PM Changeset in webkit [97904] by commit-queue@webkit.org
  • 19 edits
    4 deletes in trunk/Source

Update MediaStream to use WebCore platform interfaces
https://bugs.webkit.org/show_bug.cgi?id=68464

Patch by Adam Bergkvist <adam.bergkvist@ericsson.com> on 2011-10-19
Reviewed by Adam Barth.

Source/WebCore:

This is one in a series of patches that update the MediaStream feature
to use WebCore platform interfaces.

Tests will be provided by http://webkit.org/b/56587

  • dom/LocalMediaStream.cpp:

(WebCore::LocalMediaStream::create):
(WebCore::LocalMediaStream::LocalMediaStream):
(WebCore::LocalMediaStream::stop):
(WebCore::LocalMediaStream::stopTimerFired):
(WebCore::LocalMediaStream::~LocalMediaStream):
(WebCore::LocalMediaStream::toLocalMediaStream):

  • dom/LocalMediaStream.h:
  • dom/LocalMediaStream.idl:
  • dom/MediaStream.cpp:

(WebCore::MediaStream::create):
(WebCore::MediaStream::MediaStream):
(WebCore::MediaStream::~MediaStream):
(WebCore::MediaStream::readyState):
(WebCore::MediaStream::streamEnded):
(WebCore::MediaStream::scriptExecutionContext):

  • dom/MediaStream.h:

(WebCore::MediaStream::label):
(WebCore::MediaStream::tracks):
(WebCore::MediaStream::descriptor):

  • dom/MediaStreamTrack.cpp:

(WebCore::MediaStreamTrack::create):
(WebCore::MediaStreamTrack::MediaStreamTrack):
(WebCore::MediaStreamTrack::kind):
(WebCore::MediaStreamTrack::label):
(WebCore::MediaStreamTrack::enabled):
(WebCore::MediaStreamTrack::setEnabled):

  • dom/MediaStreamTrack.h:
  • dom/MediaStreamTrack.idl:
  • dom/MediaStreamTrackList.cpp:

(WebCore::MediaStreamTrackList::create):
(WebCore::MediaStreamTrackList::MediaStreamTrackList):
(WebCore::MediaStreamTrackList::length):
(WebCore::MediaStreamTrackList::item):

  • dom/MediaStreamTrackList.h:
  • p2p/PeerConnection.cpp:

(WebCore::PeerConnection::addStream):
(WebCore::PeerConnection::removeStream):
(WebCore::PeerConnection::remoteStreamAdded):

  • page/MediaStreamClient.h:
  • page/MediaStreamController.cpp:

(WebCore::MediaStreamController::unregisterFrameController):
(WebCore::MediaStreamController::streamGenerated):

  • page/MediaStreamController.h:
  • page/MediaStreamFrameController.cpp:

(WebCore::MediaStreamFrameController::enterDetachedState):
(WebCore::MediaStreamFrameController::disconnectFrame):
(WebCore::MediaStreamFrameController::streamGenerated):

  • page/MediaStreamFrameController.h:

Source/WebKit/chromium:

Removed WebMediaStreamTrack* since they will no longer be needed.

  • WebKit.gyp:
  • public/WebMediaStreamTrack.h: Removed.
  • public/WebMediaStreamTrackList.h: Removed.
  • src/WebMediaStreamTrack.cpp: Removed.
  • src/WebMediaStreamTrackList.cpp: Removed.
5:48 PM Changeset in webkit [97903] by commit-queue@webkit.org
  • 7 edits in trunk/Source/JavaScriptCore

DFG JIT 32_64 - improve double boxing/unboxing
https://bugs.webkit.org/show_bug.cgi?id=70418

Patch by Yuqiang Xian <yuqiang.xian@intel.com> on 2011-10-19
Reviewed by Gavin Barraclough.

Double boxing/unboxing in DFG JIT 32_64 is currently implemented inefficiently,
which tries to exchange data through memory.
On X86 some SSE instructions can help us on such operations with better performance.
This improves 32-bit DFG performance by 29% on Kraken, 7% on SunSpider,
and 2% on V8, tested on Linux X86 (Core i7 Nehalem).

  • assembler/MacroAssemblerX86Common.h:

(JSC::MacroAssemblerX86Common::lshiftPacked):
(JSC::MacroAssemblerX86Common::rshiftPacked):
(JSC::MacroAssemblerX86Common::orPacked):
(JSC::MacroAssemblerX86Common::moveInt32ToPacked):
(JSC::MacroAssemblerX86Common::movePackedToInt32):

  • assembler/X86Assembler.h:

(JSC::X86Assembler::movd_rr):
(JSC::X86Assembler::psllq_i8r):
(JSC::X86Assembler::psrlq_i8r):
(JSC::X86Assembler::por_rr):

  • dfg/DFGJITCodeGenerator.h:

(JSC::DFG::JITCodeGenerator::boxDouble):
(JSC::DFG::JITCodeGenerator::unboxDouble):

  • dfg/DFGJITCodeGenerator32_64.cpp:

(JSC::DFG::JITCodeGenerator::fillDouble):
(JSC::DFG::JITCodeGenerator::fillJSValue):
(JSC::DFG::JITCodeGenerator::nonSpeculativeValueToNumber):
(JSC::DFG::JITCodeGenerator::nonSpeculativeUInt32ToNumber):
(JSC::DFG::JITCodeGenerator::nonSpeculativeKnownConstantArithOp):
(JSC::DFG::JITCodeGenerator::nonSpeculativeBasicArithOp):

  • dfg/DFGJITCompiler.h:

(JSC::DFG::JITCompiler::boxDouble):
(JSC::DFG::JITCompiler::unboxDouble):

  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::fillSpeculateDouble):
(JSC::DFG::SpeculativeJIT::convertToDouble):
(JSC::DFG::SpeculativeJIT::compile):

5:44 PM Changeset in webkit [97902] by wjmaclean@chromium.org
  • 2 edits in trunk/Source/WebCore

[chromium] Shorten animation time for ZoomAnimator.
https://bugs.webkit.org/show_bug.cgi?id=70419

Reviewed by Kenneth Russell.

Shorten animation time for ZoomAnimator.

Existing test coverage sufficient.

  • platform/ScrollAnimatorNone.cpp:

(WebCore::ScrollAnimatorNone::zoom):

5:35 PM Changeset in webkit [97901] by kov@webkit.org
  • 7 edits
    1 add in trunk

[GTK] Streamline wk1 documentation build
https://bugs.webkit.org/show_bug.cgi?id=70447

Reviewed by Martin Robinson.

.:

  • GNUmakefile.am: include the documentation's GNUmakefile.am;
  • autogen.sh: we no longer call gtkdocize, since we now ship a modified gtk-doc.make;
  • configure.ac: no longer generate a separate GNUmakefile for the documentation build.

Source/WebKit/gtk:

  • GNUmakefile.am: move files pertaining to the docs build to the docs GNUmakefile.am;
  • GNUmakefile.gtk-doc.make: incorporate the gtk-doc makefile, and customize it to our non-recursive build;
  • docs/GNUmakefile.am: simplification and adaption to work with the rest of the build system.
5:30 PM Changeset in webkit [97900] by gyuyoung.kim@samsung.com
  • 2 edits in trunk/Source/JavaScriptCore

[EFL] Fix DSO linkage of wtf_efl.

Unreviewed build fix.

Need to add -ldl to jsc_efl (requested by dladdr).

  • wtf/CMakeListsEfl.txt:
5:11 PM Changeset in webkit [97899] by arv@chromium.org
  • 3 edits in trunk/LayoutTests

Fix test breakage after r97881

  • fast/forms/file/file-input-change-event-expected.txt:
  • fast/forms/file/file-input-change-event.html:
5:08 PM Changeset in webkit [97898] by dpranke@chromium.org
  • 1 edit
    1 add in trunk/LayoutTests

Add win baseline for new test.

Unreviewed, expectations change.

  • platform/chromium-win/fast/multicol/flipped-blocks-border-after-expected.png: Added.
5:01 PM Changeset in webkit [97897] by Beth Dakin
  • 5 edits in trunk/WebKitLibraries

Try to fix the Chromium build.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLeopard.a:
  • libWebKitSystemInterfaceLion.a:
  • libWebKitSystemInterfaceSnowLeopard.a:
4:58 PM Changeset in webkit [97896] by zmo@google.com
  • 23 edits
    6 adds in trunk/Source

Implement WEBGL_debug_shaders and WEBGL_debug_renderer_info extensions
https://bugs.webkit.org/show_bug.cgi?id=70077

Reviewed by Kenneth Russell.

Source/WebCore:

  • WebCore.gypi: added new extension class files.
  • WebCore.xcodeproj/project.pbxproj: ditto.
  • WebCore.pro: ditto.
  • CMakeLists.txt: ditto.
  • GNUmakefile.list.am: ditto.
  • bindings/js/JSWebGLRenderingContextCustom.cpp:

(WebCore::toJS): Handles two new extensions.

  • bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:

(WebCore::toV8Object): Ditto.

  • html/canvas/WebGLDebugRendererInfo.cpp: Added.

(WebCore::WebGLDebugRendererInfo::WebGLDebugRendererInfo):
(WebCore::WebGLDebugRendererInfo::~WebGLDebugRendererInfo):
(WebCore::WebGLDebugRendererInfo::getName):
(WebCore::WebGLDebugRendererInfo::create):

  • html/canvas/WebGLDebugRendererInfo.h: Added.
  • html/canvas/WebGLDebugRendererInfo.idl: Added.
  • html/canvas/WebGLDebugShaders.cpp: Added.

(WebCore::WebGLDebugShaders::WebGLDebugShaders):
(WebCore::WebGLDebugShaders::~WebGLDebugShaders):
(WebCore::WebGLDebugShaders::getName):
(WebCore::WebGLDebugShaders::create):
(WebCore::WebGLDebugShaders::getTranslatedShaderSource):

  • html/canvas/WebGLDebugShaders.h: Added.
  • html/canvas/WebGLDebugShaders.idl: Added.
  • html/canvas/WebGLExtension.h:
  • html/canvas/WebGLRenderingContext.cpp:

(WebCore::WebGLRenderingContext::allowPrivilegedExtensions): To be implemented - deciding whether the two extensions should be allowed or not.
(WebCore::WebGLRenderingContext::getExtension): Handles two new extensions.
(WebCore::WebGLRenderingContext::getParameter): Handles UNMASKED_VENDOR_WEBGL / UNMASKED_RENDERER_WEBGL
(WebCore::WebGLRenderingContext::getSupportedExtensions): Handles two new extensions.

  • html/canvas/WebGLRenderingContext.h:
  • platform/graphics/Extensions3D.h: Ditto.
  • platform/graphics/GraphicsTypes3D.h: Add GC3Dchar.
  • platform/graphics/chromium/Extensions3DChromium.h: Handles two new extensions.
  • platform/graphics/opengl/Extensions3DOpenGL.cpp: Ditto.

(WebCore::getTranslatedShaderSourceANGLE):

  • platform/graphics/opengl/Extensions3DOpenGL.h: Ditto.
  • platform/graphics/qt/Extensions3DQt.cpp: Ditto.

(WebCore::Extensions3DQt::getTranslatedShaderSourceANGLE):

  • platform/graphics/qt/Extensions3DQt.h: Ditto.

Source/WebKit/chromium:

  • public/WebGraphicsContext3D.h: Added support for getTranslatedShaderSourceANGLE.

(WebKit::WebGraphicsContext3D::getTranslatedShaderSourceANGLE):

  • src/Extensions3DChromium.cpp: Ditto.

(WebCore::Extensions3DChromium::getTranslatedShaderSourceANGLE):

  • src/GraphicsContext3DChromium.cpp: Ditto.
  • src/GraphicsContext3DPrivate.h: Ditto.
4:58 PM Changeset in webkit [97895] by andersca@apple.com
  • 2 edits in trunk/Source/WebKit2

White flash when painting a previously crashed WKView
https://bugs.webkit.org/show_bug.cgi?id=70453
<rdar://problem/10306906>

Reviewed by John Sullivan.

  • UIProcess/WebPageProxy.cpp:

(WebKit::WebPageProxy::reattachToWebProcess):
Call waitForBackingStoreUpdateOnNextPaint so we'll wait for the next paint instead of painting white.

4:55 PM Changeset in webkit [97894] by ggaren@apple.com
  • 11 edits
    4 deletes in trunk/Source

Removed StringImplBase, fusing it into StringImpl
https://bugs.webkit.org/show_bug.cgi?id=70443

Reviewed by Gavin Barraclough.

../JavaScriptCore:

(WTF::StringImpl::StringImpl):
(WTF::StringImpl::ref):
(WTF::StringImpl::length):

  • wtf/text/StringImplBase.h: Removed.
  • wtf/wtf.pri: Removed!

../JavaScriptGlue:

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

../WebCore:

  • ForwardingHeaders/runtime/RopeImpl.h: Removed.
  • ForwardingHeaders/wtf/text/StringImplBase.h: Removed.
4:31 PM Changeset in webkit [97893] by commit-queue@webkit.org
  • 6 edits in trunk

ArrayBuffer should have slice method.
https://bugs.webkit.org/show_bug.cgi?id=66646

Patch by Shinya Kawanaka <shinyak@google.com> on 2011-10-19
Reviewed by Kenneth Russell.

Source/WebCore:

  • html/canvas/ArrayBuffer.cpp:

(WebCore::clampValue):
(WebCore::ArrayBuffer::slice):
(WebCore::ArrayBuffer::sliceImpl):
(WebCore::ArrayBuffer::clampIndex):

  • html/canvas/ArrayBuffer.h: Added declaration.
  • html/canvas/ArrayBuffer.idl: Added interface.

LayoutTests:

  • fast/canvas/webgl/array-unit-tests.html: Aded.
4:27 PM Changeset in webkit [97892] by mhahnenberg@apple.com
  • 6 edits in trunk/Source

Add getConstructData to the MethodTable
https://bugs.webkit.org/show_bug.cgi?id=70163

Reviewed by Geoffrey Garen.

Source/JavaScriptCore:

Adding getConstructData to the MethodTable in order to be able to
remove all calls to getConstructDataVirtual soon. Part of the process
of de-virtualizing JSCell.

Source/WebCore:

No new tests.

Adding getConstructData to the MethodTable in order to be able to
remove all calls to getConstructDataVirtual soon. Part of the process
of de-virtualizing JSCell.

  • WebCore.exp.in:
4:25 PM Changeset in webkit [97891] by commit-queue@webkit.org
  • 3 edits
    2 adds in trunk/Tools

Add a suggest-nominations command to webkit-patch for computing potential committer/reviewer nominations
https://bugs.webkit.org/show_bug.cgi?id=62166

Patch by Tom Zakrajsek <tomz@codeaurora.org> on 2011-10-19
Reviewed by Eric Seidel.

Included options to control committer/reviewer patch count requirements,
an age-limit on patches, and verbose output for more in-depth analysis.

  • Scripts/webkitpy/common/checkout/changelog.py:
  • Scripts/webkitpy/tool/commands/init.py:
  • Scripts/webkitpy/tool/commands/suggestnominations.py: Added.
  • Scripts/webkitpy/tool/commands/suggestnominations_unittest.py: Added.
4:02 PM Changeset in webkit [97890] by dpranke@chromium.org
  • 9 edits
    2 deletes in trunk

Unreviewed, rolling out r97850.
http://trac.webkit.org/changeset/97850
https://bugs.webkit.org/show_bug.cgi?id=70334

tests are crashing on xp debug

Source/WebKit/chromium:

  • DEPS:

LayoutTests:

  • http/tests/inspector/extensions-headers.html:
  • http/tests/inspector/resources/extension-main.js:

():

  • inspector/extensions/extensions-audits.html:
  • inspector/extensions/extensions-console.html:
  • inspector/extensions/extensions-resources.html:
  • platform/chromium/inspector/extensions/extensions-api-expected.txt: Removed.
  • platform/chromium/inspector/extensions/extensions-eval-expected.txt: Removed.
  • platform/chromium/test_expectations.txt:
4:02 PM WatchList edited by levin@chromium.org
more witty message (diff)
3:54 PM Changeset in webkit [97889] by arv@chromium.org
  • 1 edit
    13 adds in trunk/LayoutTests

[Chromium] Update the test expectations for r97881.

  • platform/chromium-cg-mac-snowleopard/fast/dom/call-a-constructor-as-a-function-expected.txt: Added.
  • platform/chromium-cg-mac-snowleopard/fast/dom/error-to-string-stack-overflow-expected.txt: Added.
  • platform/chromium-cg-mac-snowleopard/fast/parser/entity-end-script-tag-expected.txt: Added.
  • platform/chromium-linux-x86/fast/dom/call-a-constructor-as-a-function-expected.txt: Added.
  • platform/chromium-linux-x86/fast/dom/error-to-string-stack-overflow-expected.txt: Added.
  • platform/chromium-linux-x86/fast/parser/entity-end-script-tag-expected.txt: Added.
  • platform/chromium-linux/fast/dom/call-a-constructor-as-a-function-expected.txt: Added.
  • platform/chromium-linux/fast/dom/error-to-string-stack-overflow-expected.txt: Added.
  • platform/chromium-linux/fast/parser/entity-end-script-tag-expected.txt: Added.
3:42 PM Changeset in webkit [97888] by mitz@apple.com
  • 3 edits
    3 adds in trunk

Incorrect pagination in flipped-blocks writing modes with border/padding before
https://bugs.webkit.org/show_bug.cgi?id=70444

Reviewed by Darin Adler.

Source/WebCore:

Test: fast/multicol/flipped-blocks-border-after.html

  • rendering/LayoutState.cpp:

(WebCore::LayoutState::LayoutState): Account for flipped blocks when adjusting the page offset.

LayoutTests:

  • fast/multicol/flipped-blocks-border-after-expected.png: Added.
  • fast/multicol/flipped-blocks-border-after-expected.txt: Added.
  • fast/multicol/flipped-blocks-border-after.html: Added.
3:40 PM WatchList edited by levin@chromium.org
Minor revision. (diff)
3:40 PM Changeset in webkit [97887] by eric@webkit.org
  • 3 edits in trunk/Tools

new-run-webkit-tests -2 was crashing due to both "java" and "java/" being listed in Skipped files.
Make NRWT normalize directory names in Skipped files during parsing.

Unreviewed. Very simple (tested) change.

  • Scripts/webkitpy/layout_tests/port/mac_unittest.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
3:37 PM Changeset in webkit [97886] by Beth Dakin
  • 20 edits
    3 adds in trunk

https://bugs.webkit.org/show_bug.cgi?id=70396
Focus rings are too thin in HiDPI in WebKit2
-and corresponding-
<rdar://problem/10086876>

Reviewed by Dan Bernstein.

Source/WebCore:

Rename wkSetPatternBaseCTM to wkSetBaseCTM

  • WebCore.exp.in:
  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

New CG-only function calls into wkSetBaseCTM.

  • platform/graphics/GraphicsContext.h:
  • platform/graphics/cg/GraphicsContextCG.cpp:

(WebCore::GraphicsContext::setBaseCTM):

Call GraphicsContext::setBaseCTM() rather than calling into WebKitSystemInterface
directly.

  • platform/graphics/cg/ImageCG.cpp:

(WebCore::Image::drawPattern):

Source/WebKit/mac:

Rename wkSetPatternBaseCTM to wkSetBaseCTM

  • WebCoreSupport/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

To create a HiDPI context in DRT, we have to set the base CTM, which currently
requires CG SPI, so we have to do it through WebKitSystemInterface.

  • WebView/WebView.mm:

(-[WebView _setBaseCTM:forContext:]):

  • WebView/WebViewPrivate.h:

Source/WebKit2:

Rename wkSetPatternBaseCTM to wkSetBaseCTM

  • WebProcess/WebCoreSupport/mac/WebSystemInterface.mm:

(InitWebCoreSystemInterface):

When setting up a HiDPI context, we must also set the base CTM.

  • WebProcess/WebPage/DrawingAreaImpl.cpp:

(WebKit::DrawingAreaImpl::display):

  • WebProcess/WebPage/WebPage.cpp:

(WebKit::WebPage::scaledSnapshotInDocumentCoordinates):
(WebKit::WebPage::snapshotInViewCoordinates):

WebKitLibraries:

Renamed an existing WebKitSystemInterface function.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterfaceLion.a:
  • libWebKitSystemInterfaceSnowLeopard.a:

LayoutTests:

  • fast/hidpi/focus-rings.html: Added.
  • platform/mac/fast/hidpi/focus-rings-expected.png: Added.
  • platform/mac/fast/hidpi/focus-rings-expected.txt: Added.
3:33 PM Changeset in webkit [97885] by levin@chromium.org
  • 10 edits in trunk/Tools

watchlist: Should be more robust to bad regex.
https://bugs.webkit.org/show_bug.cgi?id=69486

Reviewed by Adam Barth.

  • Scripts/webkitpy/common/config/watchlist: Change the instructions due to watchlist being checked by check-webkit-style (bug 69487) and remove the .* from file patterns since they are no longer anchored on the right hand side.
  • Scripts/webkitpy/common/watchlist/amountchangedpattern.py: Change *pattern to take a compiled regex directly.
  • Scripts/webkitpy/common/watchlist/amountchangedpattern_unittest.py: Ditto.
  • Scripts/webkitpy/common/watchlist/changedlinepattern.py: Ditto.
  • Scripts/webkitpy/common/watchlist/changedlinepattern_unittest.py: Ditto.
  • Scripts/webkitpy/common/watchlist/filenamepattern.py: Ditto.
  • Scripts/webkitpy/common/watchlist/filenamepattern_unittest.py: Ditto and change a test now that

filenames are no longer anchored on the right hand side.

  • Scripts/webkitpy/common/watchlist/watchlistparser.py: Catch regex errors and log them as errors.
  • Scripts/webkitpy/common/watchlist/watchlistparser_unittest.py: Add some tests to verify that bad regexes

don't kill everything.

3:31 PM Changeset in webkit [97884] by levin@chromium.org
  • 2 edits
    2 adds in trunk/Tools

watchlist: Add a stylecheck to do validity checks for the watchlist config.
https://bugs.webkit.org/show_bug.cgi?id=69487

Reviewed by Adam Barth.

  • Scripts/webkitpy/style/checker.py: Add the watchlist file type.
  • Scripts/webkitpy/style/checkers/watchlist.py: Added.
  • Scripts/webkitpy/style/checkers/watchlist_unittest.py: Added.
3:30 PM Changeset in webkit [97883] by annacc@chromium.org
  • 2 edits in trunk/Source/WebCore

Update WebVTTParser to require at least one space between timestamps and arrows, e.g.:
00:04:01.000 --> 00:03:00.500 is OK
00:04:01.000-->00:03:00.500 is not OK
https://bugs.webkit.org/show_bug.cgi?id=70274

Reviewed by Eric Carlson.

Existing tests:
media/track/track-webvtt-tc008-timings-no-hours.html
(see media/track/captions-webvtt/tc008-timings-no-hour-errors.vtt #6)
media/track/track-webvtt-tc009-timings-hour.html
(see media/track/captions-webvtt/tc009-timings-hour-error.vtt #6)

  • html/track/WebVTTParser.cpp:

(WebCore::WebVTTParser::collectTimingsAndSettings): Check that the

character before and after the '-->' is a space character

3:05 PM WikiStart edited by levin@chromium.org
add a watch list link (diff)
3:03 PM Changeset in webkit [97882] by weinig@apple.com
  • 4 edits
    6 adds in trunk/Source/WebKit2

Add skeleton of an Objective-C WebKit2 API
https://bugs.webkit.org/show_bug.cgi?id=70438

Reviewed by Anders Carlsson.

Adds WKBrowsingContextController (WKPageRef wrapper) and WKProcessCluster
(WKContextRef wrapper) as initial files of an Objective-C WebKit2 API. Also,
hook them up so that you can get a WKBrowsingContextController from the WKView
and you can create a WKView associated with a WKProcessCluster. These names are
not final, and this work is mainly about getting the wrapper lifetimes worked
out.

  • UIProcess/API/mac/WKBrowsingContextController.h: Added.
  • UIProcess/API/mac/WKBrowsingContextController.mm: Added.

(-[WKBrowsingContextController dealloc]):
(-[WKBrowsingContextController pageRef]):
(-[WKBrowsingContextController loadRequest:]):
(-[WKBrowsingContextController loadFileURL:restrictToFilesWithin:]):
(-[WKBrowsingContextController stopLoading]):
(-[WKBrowsingContextController reload]):
(-[WKBrowsingContextController reloadFromOrigin]):
(-[WKBrowsingContextController goForward]):
(-[WKBrowsingContextController canGoForward]):
(-[WKBrowsingContextController goBack]):
(-[WKBrowsingContextController canGoBack]):
(-[WKBrowsingContextController initWithPageRef:]):

  • UIProcess/API/mac/WKBrowsingContextControllerInternal.h: Added.

Add wrapper for WKPageRef.

  • UIProcess/API/mac/WKProcessCluster.h: Added.
  • UIProcess/API/mac/WKProcessCluster.mm: Added.

(-[WKProcessCluster init]):
(-[WKProcessCluster initWithInjectedBundleURL:]):
(-[WKProcessCluster dealloc]):
(-[WKProcessCluster contextRef]):

  • UIProcess/API/mac/WKProcessClusterInternal.h: Added.

Add wrapper for WKContextRef.

  • UIProcess/API/mac/WKView.h:
  • UIProcess/API/mac/WKView.mm:

(-[WKView initWithFrame:processCluster:]):
Add new init method which takes a WKProcessCluster.

(-[WKView browsingContextController]):
Add accessor for the WKBrowsingContextController. This works by lazily creating
the wrapper and caching it in the view itself.

  • WebKit2.xcodeproj/project.pbxproj:

Add new files.

3:01 PM WatchList created by levin@chromium.org
instructions about using the watch list
2:54 PM Changeset in webkit [97881] by arv@chromium.org
  • 1626 edits in trunk/LayoutTests

JS Test Harness: Insert the stylesheet dynamically
https://bugs.webkit.org/show_bug.cgi?id=70432

Reviewed by Ojan Vafai.

This injects the js-test-style.css file dynamically so that the test files can be simpler.
This patch also removes the markup from the existing files in LayoutTests/fast/

  • fast/*.html: Remove <link rel=:"stylesheet" href="...js-test-style.css">
  • fast/js/resources/js-test-pre.js: Inject the stylesheet dynamically.
2:44 PM Changeset in webkit [97880] by dcheng@chromium.org
  • 3 edits in trunk/LayoutTests

Add missing expectations updates for r97878.

  • platform/mac/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt:
  • platform/mac/editing/selection/drag-to-contenteditable-iframe-expected.txt:
2:38 PM Changeset in webkit [97879] by eric@webkit.org
  • 4 edits in trunk/Tools

NRWT ServerProcess can't read lines from stderr and stdio separately
https://bugs.webkit.org/show_bug.cgi?id=70435

Reviewed by Adam Barth.

This is the underlying bug behind our lack of WK2 support, and timeout detection on Windows.
DRT expects RWT to read one line at a time from stderr and stdout independently.
This allows DRT to communicate errors over stderr and have them responded to immediately
regardless of what state the stdio stream may be in. Previously NRWT's ServerProcess
class only exposed a read_line function which would read a line from stdout
and batch all output from stderr into an error buffer. Callers would only be able
to respond to commands over stderr if they happened to correspond with a stdout line boundary.

  • Scripts/webkitpy/layout_tests/port/server_process.py:
  • Scripts/webkitpy/layout_tests/port/webkit.py:
2:38 PM Changeset in webkit [97878] by dcheng@chromium.org
  • 8 edits
    2 adds in trunk

Don't always select images during an image drag.
https://bugs.webkit.org/show_bug.cgi?id=62998

Reviewed by Tony Chang.

Source/WebCore:

Only select an image being dragged if it is contenteditable.

Test: fast/events/drag-selects-image.html

  • dom/Node.cpp:

(WebCore::Node::isContentRichlyEditable):

  • dom/Node.h:
  • page/DragController.cpp:

(WebCore::prepareClipboardForImageDrag):

LayoutTests:

  • fast/events/drag-selects-image-expected.txt: Added.
  • fast/events/drag-selects-image.html: Added.
  • platform/chromium-win/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt:
  • platform/chromium-win/editing/selection/drag-to-contenteditable-iframe-expected.txt:
  • platform/chromium/test_expectations.txt:
  • platform/mac/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt:
  • platform/mac/editing/selection/drag-to-contenteditable-iframe-expected.txt:
2:28 PM Changeset in webkit [97877] by andreas.kling@nokia.com
  • 3 edits in trunk/Source/WebCore

HTMLBodyElement: Simplify link/alink/vlink attribute parsing.
https://bugs.webkit.org/show_bug.cgi?id=70429

Reviewed by Antonio Gomes.

Instead of carrying around a CSSMutableStyleDeclaration with the body element,
just use CSSParser::parseColor() to parse the three link color attributes.

  • html/HTMLBodyElement.h:
  • html/HTMLBodyElement.cpp:

(WebCore::HTMLBodyElement::~HTMLBodyElement):

Remove HTMLBodyElement::m_linkDecl and all the voodoo that went along with it.

(WebCore::HTMLBodyElement::parseMappedAttribute):

Use CSSParser directly to parse the color values for {link,alink,vlink}Attr.

2:25 PM Changeset in webkit [97876] by oliver@apple.com
  • 17 edits in trunk/Source

Support CanvasPixelArray in the DFG
https://bugs.webkit.org/show_bug.cgi?id=70384

Reviewed by Filip Pizlo.

Source/JavaScriptCore:

Add support for the old CanvasPixelArray optimisations to the
DFG. This removes the regression seen in the DFG when using
a CPA.

  • assembler/MacroAssemblerX86Common.h:

(JSC::MacroAssemblerX86Common::store8):
(JSC::MacroAssemblerX86Common::truncateDoubleToInt32):

  • assembler/X86Assembler.h:

(JSC::X86Assembler::movb_rm):
(JSC::X86Assembler::X86InstructionFormatter::oneByteOp8):

  • bytecode/PredictedType.cpp:

(JSC::predictionToString):
(JSC::predictionFromClassInfo):

  • bytecode/PredictedType.h:

(JSC::isByteArrayPrediction):

  • dfg/DFGAbstractState.cpp:

(JSC::DFG::AbstractState::initialize):
(JSC::DFG::AbstractState::execute):

  • dfg/DFGNode.h:

(JSC::DFG::Node::shouldSpeculateByteArray):

  • dfg/DFGPropagator.cpp:

(JSC::DFG::Propagator::propagateNodePredictions):
(JSC::DFG::Propagator::fixupNode):
(JSC::DFG::Propagator::performNodeCSE):

  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::checkArgumentTypes):
(JSC::DFG::compileClampDoubleToByte):
(JSC::DFG::SpeculativeJIT::compilePutByValForByteArray):
(JSC::DFG::SpeculativeJIT::compileGetByValOnByteArray):

  • dfg/DFGSpeculativeJIT.h:
  • dfg/DFGSpeculativeJIT32_64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • dfg/DFGSpeculativeJIT64.cpp:

(JSC::DFG::SpeculativeJIT::compile):

  • runtime/JSByteArray.h:

(JSC::JSByteArray::offsetOfStorage):

  • wtf/ByteArray.cpp:
  • wtf/ByteArray.h:

(WTF::ByteArray::offsetOfSize):
(WTF::ByteArray::offsetOfData):

Source/WebCore:

Make CanvasPixelArray inherit from ByteArray's ClassInfo so
can identify it more sensibly.

  • bindings/js/JSImageDataCustom.cpp:

(WebCore::toJS):

2:07 PM Changeset in webkit [97875] by chang.shu@nokia.com
  • 4 edits in trunk

[Qt] Disable fullscreen api on Qt by default
https://bugs.webkit.org/show_bug.cgi?id=70413

Reviewed by Noam Rosenthal.

Source/WebCore:

As the WebKit side of implementation for fullscreen api feature has not been done yet,
we'd better turn off the feature on the WebCore side by default.

  • features.pri:

LayoutTests:

  • platform/qt/Skipped:
1:34 PM Changeset in webkit [97874] by imasaki@chromium.org
  • 2 edits in trunk/LayoutTests

[Chromium] Update the test expectation file for fullscreen related tests.
https://bugs.webkit.org/show_bug.cgi?id=70378

Reviewed by David Levin.

  • platform/chromium/test_expectations.txt:
1:22 PM Changeset in webkit [97873] by krit@webkit.org
  • 3660 edits in trunk/LayoutTests

2011-10-19 Dirk Schulze <krit@webkit.org>

Unreviewed, rolling out r97867.
http://trac.webkit.org/changeset/97863
https://bugs.webkit.org/show_bug.cgi?id=65769

Rollout rebaseline of RenderSVGShape patch after assertions in RenderSVGShape::createShape().

12:45 PM Changeset in webkit [97872] by ggaren@apple.com
  • 19 edits
    2 deletes in trunk/Source/JavaScriptCore

Some rope cleanup following r97827
https://bugs.webkit.org/show_bug.cgi?id=70398

Reviewed by Oliver Hunt.

9% speedup on date-format-xparb, neutral overall.

  • Removed RopeImpl*.
  • Removed JSString::m_fiberCount, since this can be deduced from other data.
  • Renamed a jsString() variant to jsStringFromArguments for clarity.
  • dfg/DFGSpeculativeJIT.cpp:

(JSC::DFG::SpeculativeJIT::compileGetCharCodeAt):
(JSC::DFG::SpeculativeJIT::compileGetByValOnString):

  • jit/JITInlineMethods.h:

(JSC::JIT::emitLoadCharacterString):

  • jit/JITPropertyAccess.cpp:

(JSC::JIT::stringGetByValStubGenerator):

  • jit/JITPropertyAccess32_64.cpp:

(JSC::JIT::stringGetByValStubGenerator):

  • jit/SpecializedThunkJIT.h:

(JSC::SpecializedThunkJIT::loadJSStringArgument):

  • jit/ThunkGenerators.cpp:

(JSC::stringCharLoad): Use a NULL m_value to signal rope-iness, instead
of testing m_fiberCount, since m_fiberCount is gone now.

  • runtime/JSString.cpp:

(JSC::JSString::RopeBuilder::expand):
(JSC::JSString::visitChildren):
(JSC::JSString::resolveRope):
(JSC::JSString::resolveRopeSlowCase):
(JSC::JSString::outOfMemory): Use a NULL fiber to indicate "last fiber
in the vector" instead of testing m_fiberCount, since m_fiberCount is gone now.

  • runtime/JSString.h:

(JSC::RopeBuilder::JSString):
(JSC::RopeBuilder::finishCreation):
(JSC::RopeBuilder::offsetOfLength):
(JSC::RopeBuilder::isRope):
(JSC::RopeBuilder::string): Removed m_fiberCount. Renamed
jsString => jsStringFromArguments for clarity.

  • runtime/Operations.h:

(JSC::jsStringFromArguments): Renamed.

  • runtime/RopeImpl.cpp: Removed.
  • runtime/RopeImpl.h: Removed.
  • runtime/SmallStrings.cpp:

(JSC::SmallStrings::createEmptyString): Switched to StringImpl::empty,
which is slightly faster.

  • runtime/StringPrototype.cpp:

(JSC::stringProtoFuncConcat): Updated for rename.

  • wtf/text/StringImplBase.h:

(WTF::StringImplBase::StringImplBase): Removed the concept of an invalid
StringImpl, since this was only used by RopeImpl, which is now gone.

11:54 AM Changeset in webkit [97871] by kov@webkit.org
  • 4 edits in trunk/Source/WebKit/gtk

[Gtk][Geolocation] Build guards missing in geolocation clients
https://bugs.webkit.org/show_bug.cgi?id=70420

Patch by Zan Dobersek <zandobersek@gmail.com> on 2011-10-19
Reviewed by Gustavo Noronha Silva.

Adds build guards that were forgotten when client-based
geolocation was introduced in r97746. This should make builds
without geolocation support succeed again.

  • WebCoreSupport/GeolocationClientGtk.cpp:
  • WebCoreSupport/GeolocationClientGtk.h:
  • webkit/webkitwebview.cpp:

(webkit_web_view_init):

10:44 AM Changeset in webkit [97870] by krit@webkit.org
  • 40 edits
    8 deletes in trunk

Unreviewed, rolling out r97863.
http://trac.webkit.org/changeset/97863
https://bugs.webkit.org/show_bug.cgi?id=65769

Source/WebCore:

Rollout

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/FloatRect.cpp:
  • platform/graphics/FloatRect.h:

(WebCore::FloatRect::contains):

  • rendering/RenderObject.h:

(WebCore::RenderObject::isSVGPath):

  • rendering/RenderTreeAsText.cpp:

(WebCore::write):

  • rendering/svg/RenderSVGAllInOne.cpp:
  • rendering/svg/RenderSVGModelObject.cpp:

(WebCore::isGraphicsElement):

  • rendering/svg/RenderSVGPath.cpp:

(WebCore::BoundingRectStrokeStyleApplier::BoundingRectStrokeStyleApplier):
(WebCore::BoundingRectStrokeStyleApplier::strokeStyle):
(WebCore::RenderSVGPath::RenderSVGPath):
(WebCore::RenderSVGPath::fillContains):
(WebCore::RenderSVGPath::strokeContains):
(WebCore::RenderSVGPath::layout):
(WebCore::RenderSVGPath::shouldStrokeZeroLengthSubpath):
(WebCore::RenderSVGPath::zeroLengthSubpathRect):
(WebCore::RenderSVGPath::setupSquareCapPath):
(WebCore::RenderSVGPath::setupNonScalingStrokePath):
(WebCore::RenderSVGPath::fillAndStrokePath):
(WebCore::RenderSVGPath::paint):
(WebCore::RenderSVGPath::addFocusRingRects):
(WebCore::RenderSVGPath::nodeAtFloatPoint):
(WebCore::RenderSVGPath::calculateMarkerBoundsIfNeeded):
(WebCore::RenderSVGPath::updateCachedBoundaries):

  • rendering/svg/RenderSVGPath.h:

(WebCore::RenderSVGPath::path):
(WebCore::RenderSVGPath::setNeedsPathUpdate):
(WebCore::RenderSVGPath::setNeedsBoundariesUpdate):
(WebCore::RenderSVGPath::setNeedsTransformUpdate):
(WebCore::RenderSVGPath::objectBoundingBox):
(WebCore::RenderSVGPath::strokeBoundingBox):
(WebCore::RenderSVGPath::repaintRectInLocalCoordinates):
(WebCore::RenderSVGPath::localToParentTransform):
(WebCore::RenderSVGPath::localTransform):
(WebCore::toRenderSVGPath):

  • rendering/svg/RenderSVGRect.cpp: Removed.
  • rendering/svg/RenderSVGRect.h: Removed.
  • rendering/svg/RenderSVGResource.h:

(WebCore::RenderSVGResource::postApplyResource):

  • rendering/svg/RenderSVGResourceClipper.cpp:

(WebCore::RenderSVGResourceClipper::drawContentIntoMaskImage):
(WebCore::RenderSVGResourceClipper::calculateClipContentRepaintRect):
(WebCore::RenderSVGResourceClipper::hitTestClipContent):

  • rendering/svg/RenderSVGResourceContainer.cpp:

(WebCore::RenderSVGResourceContainer::transformOnNonScalingStroke):

  • rendering/svg/RenderSVGResourceFilter.cpp:

(WebCore::RenderSVGResourceFilter::postApplyResource):

  • rendering/svg/RenderSVGResourceFilter.h:
  • rendering/svg/RenderSVGResourceGradient.cpp:

(WebCore::RenderSVGResourceGradient::applyResource):

  • rendering/svg/RenderSVGResourceGradient.h:
  • rendering/svg/RenderSVGResourcePattern.cpp:

(WebCore::RenderSVGResourcePattern::postApplyResource):

  • rendering/svg/RenderSVGResourcePattern.h:
  • rendering/svg/RenderSVGResourceSolidColor.cpp:

(WebCore::RenderSVGResourceSolidColor::postApplyResource):

  • rendering/svg/RenderSVGResourceSolidColor.h:
  • rendering/svg/RenderSVGRoot.cpp:

(WebCore::RenderSVGRoot::paint):

  • rendering/svg/RenderSVGShape.cpp: Removed.
  • rendering/svg/RenderSVGShape.h: Removed.
  • rendering/svg/SVGInlineTextBox.cpp:

(WebCore::SVGInlineTextBox::releasePaintingResource):

  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::prepareToRenderSVGContent):
(WebCore::SVGRenderSupport::finishRenderSVGContent):
(WebCore::SVGRenderSupport::layoutChildren):

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeStyle):
(WebCore::operator<<):
(WebCore::write):

  • rendering/svg/SVGRenderTreeAsText.h:
  • rendering/svg/SVGTextRunRenderingContext.cpp:

(WebCore::SVGTextRunRenderingContext::drawSVGGlyphs):

  • svg/SVGCircleElement.cpp:

(WebCore::SVGCircleElement::svgAttributeChanged):

  • svg/SVGEllipseElement.cpp:

(WebCore::SVGEllipseElement::svgAttributeChanged):

  • svg/SVGLineElement.cpp:

(WebCore::SVGLineElement::svgAttributeChanged):

  • svg/SVGPathElement.cpp:

(WebCore::SVGPathElement::svgAttributeChanged):
(WebCore::SVGPathElement::pathSegListChanged):

  • svg/SVGPathElement.h:
  • svg/SVGPolyElement.cpp:

(WebCore::SVGPolyElement::svgAttributeChanged):

  • svg/SVGRectElement.cpp:

(WebCore::SVGRectElement::svgAttributeChanged):

  • svg/SVGRectElement.h:

LayoutTests:

Rollout RenderSVGShape patch after assertions in RenderSVGShape::createShape().

  • svg/custom/pointer-events-on-rounded-rect-expected.txt: Removed.
  • svg/custom/pointer-events-on-rounded-rect.xhtml: Removed.
  • svg/custom/pointer-events-with-linecaps-and-miterlimits-expected.txt: Removed.
  • svg/custom/pointer-events-with-linecaps-and-miterlimits.xhtml: Removed.
10:12 AM Changeset in webkit [97869] by caryclark@google.com
  • 19 edits
    4 adds in trunk/LayoutTests

Unreviewed gardening: rebaseline remaining diffs for Chromium-Skia on
SnowLeopard.

  • platform/chromium-gpu-mac/compositing/color-matching/image-color-matching-expected.png:
  • platform/chromium-gpu-mac/compositing/masks/direct-image-mask-expected.png:
  • platform/chromium-gpu-mac/compositing/plugins/composited-plugin-expected.png:
  • platform/chromium-gpu-mac/compositing/reflections/deeply-nested-reflections-expected.png:
  • platform/chromium-gpu-mac/compositing/reflections/simple-composited-reflections-expected.png:
  • platform/chromium-gpu-mac/compositing/shadows/shadow-drawing-expected.png:
  • platform/chromium-gpu-mac/fast/canvas/canvas-text-alignment-expected.png:
  • platform/chromium-gpu-mac/platform/chromium/compositing/plugins: Added.
  • platform/chromium-gpu-mac/platform/chromium/compositing/plugins/webplugin-alpha-expected.png: Added.
  • platform/chromium-gpu-mac/platform/chromium/compositing/plugins/webplugin-alpha-expected.txt: Added.
  • platform/chromium-gpu-mac/platform/chromium/compositing/plugins/webplugin-reflection-expected.txt: Added.
  • platform/chromium-mac-snowleopard/editing/deleting/delete-and-undo-expected.png:
  • platform/chromium-mac/fast/text/justify-ideograph-leading-expansion-expected.png:
  • platform/chromium-mac/fast/text/justify-ideograph-leading-expansion-expected.txt:
  • platform/chromium-mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.png:
  • platform/chromium-mac/fast/writing-mode/Kusa-Makura-background-canvas-expected.txt:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-horizontal-bt-expected.png:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-horizontal-bt-expected.txt:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-vertical-lr-expected.png:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-vertical-lr-expected.txt:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-vertical-rl-expected.png:
  • platform/chromium-mac/fast/writing-mode/japanese-ruby-vertical-rl-expected.txt:
10:02 AM Changeset in webkit [97868] by yurys@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: worker inspector title should contain worker URL
https://bugs.webkit.org/show_bug.cgi?id=70424

Worker inspector title is now evaluated when the front-end starts.

Reviewed by Pavel Feldman.

  • inspector/front-end/WorkerManager.js:

(WebInspector.WorkerManager.loaded):
(WebInspector.WorkerManager._calculateWorkerInspectorTitle):

9:29 AM Changeset in webkit [97867] by reni@webkit.org
  • 3660 edits in trunk/LayoutTests

Unreviewed, rebaseline SVG related tests after r97863.

Patch by Renata Hodovan <reni@webkit.org> on 2011-10-19

8:37 AM Changeset in webkit [97866] by chang.shu@nokia.com
  • 4 edits
    2 adds in trunk

[Qt] Support WK1-only Skipped list
https://bugs.webkit.org/show_bug.cgi?id=70254

Reviewed by Csaba Osztrogonác.

Tools:

Added a new search path qt-wk1 for skipping WK1-only tests.

  • Scripts/webkitpy/layout_tests/port/qt.py: NRWT
  • Scripts/old-run-webkit-tests: ORWT

LayoutTests:

  • platform/qt-wk1: Added.
  • platform/qt-wk1/Skipped: Added.
8:25 AM Changeset in webkit [97865] by Martin Robinson
  • 2 edits in trunk/Source/WebCore

[GTK] Avoid unecessarily calling gtk_widget_size_allocate on plugin widgets
https://bugs.webkit.org/show_bug.cgi?id=70190

Reviewed by Xan Lopez.

Instead of always calling gtk_widget_size_allocate on every single plugin
widget during scrolling, only call it on widgets that are both in the view
and that have moved.

No new tests. It's difficult to test scrolling performance in an
automated way.

  • plugins/gtk/PluginViewGtk.cpp:

(WebCore::PluginView::setNPWindowIfNeeded): Reverse the if statement detecting a
clipped out plugin. It was incorrect.
(WebCore::PluginView::updateWidgetAllocationAndClip): If the current allocation of
the plugin widget has not changed or if the widget remains scrolled out, do not call
gtk_widget_size_allocate.

8:13 AM Changeset in webkit [97864] by commit-queue@webkit.org
  • 2 edits in trunk/Source/JavaScriptCore

[EFL] Fix DSO linkage of jsc_efl.
https://bugs.webkit.org/show_bug.cgi?id=70412

Unreviewed build fix.

Need to add -ldl to jsc_efl (requested by dladdr).

Patch by Rafael Antognolli <antognolli@profusion.mobi> on 2011-10-19

  • shell/CMakeListsEfl.txt:
7:59 AM Changeset in webkit [97863] by reni@webkit.org
  • 40 edits
    8 adds in trunk

Add new renderer for SVGRectElement.
https://bugs.webkit.org/show_bug.cgi?id=65769

Source/WebCore:

Patch by Renata Hodovan <reni@webkit.org> on 2011-10-19
Reviewed by Dirk Schulze.

This patch introduces a new common base class called RenderSVGShape which
replaces the RenderSVGPath. This new base class has the same purpose
as the replaced class and has specialized descendants for common
shapes (like Rectangles and Circles), which allows faster painting
of these shapes when certain conditions are fulfilled. On some
benchmark programs we have seen 5% speedup.

The biggest motivation of this refactor is taking advantage
of faster primitive drawing in the most common and frequent
cases. However in some rare cases, like painting rounded
rects, we need to fallback to the original code path, which
is fully kept in the RenderSVGShape base class. Some other
cases, like dashed strokes, can be painted but mouse pointer
events cannot be handled by the descendant classes. A different
fallback mechanism is used in such cases which redirects
only the pointer event handling to the base class.

Tests: svg/custom/pointer-events-on-rounded-rect.xhtml

svg/custom/pointer-events-with-linecaps-and-miterlimits.xhtml

  • CMakeLists.txt:
  • GNUmakefile.list.am:
  • WebCore.gypi:
  • WebCore.pro:
  • WebCore.vcproj/WebCore.vcproj:
  • platform/graphics/FloatRect.cpp:

(WebCore::FloatRect::contains):

  • platform/graphics/FloatRect.h:

(WebCore::FloatRect::contains):

  • rendering/RenderObject.h:

(WebCore::RenderObject::isSVGRect):
(WebCore::RenderObject::isSVGShape):

  • rendering/RenderTreeAsText.cpp:

(WebCore::write):

  • rendering/svg/RenderSVGAllInOne.cpp:
  • rendering/svg/RenderSVGModelObject.cpp:

(WebCore::isGraphicsElement):

  • rendering/svg/RenderSVGPath.cpp:

(WebCore::RenderSVGPath::RenderSVGPath):
(WebCore::RenderSVGPath::inflateWithMarkerBounds): Unite the markerBounds with strokeBoundingBox.

  • rendering/svg/RenderSVGPath.h:
  • rendering/svg/RenderSVGRect.cpp: Added.

(WebCore::RenderSVGRect::RenderSVGRect):
(WebCore::RenderSVGRect::~RenderSVGRect):
(WebCore::RenderSVGRect::createShape):
(WebCore::RenderSVGRect::objectBoundingBox):
(WebCore::RenderSVGRect::strokeBoundingBox):
(WebCore::RenderSVGRect::fillShape):
(WebCore::RenderSVGRect::strokeShape):
(WebCore::RenderSVGRect::shapeDependentStrokeContains):
(WebCore::RenderSVGRect::shapeDependentFillContains):

  • rendering/svg/RenderSVGRect.h: Added.

(WebCore::RenderSVGRect::isSVGRect):
(WebCore::RenderSVGRect::renderName):
(WebCore::RenderSVGRect::isEmpty):

  • rendering/svg/RenderSVGResource.h:

(WebCore::RenderSVGResource::postApplyResource): A new shape argument was added to allow shape specific faster painting.

  • rendering/svg/RenderSVGResourceClipper.cpp:

(WebCore::RenderSVGResourceClipper::drawContentIntoMaskImage):
(WebCore::RenderSVGResourceClipper::calculateClipContentRepaintRect):
(WebCore::RenderSVGResourceClipper::hitTestClipContent):

  • rendering/svg/RenderSVGResourceContainer.cpp:

(WebCore::RenderSVGResourceContainer::transformOnNonScalingStroke):

  • rendering/svg/RenderSVGResourceFilter.cpp:

(WebCore::RenderSVGResourceFilter::postApplyResource):

  • rendering/svg/RenderSVGResourceFilter.h:
  • rendering/svg/RenderSVGResourceGradient.cpp:

(WebCore::RenderSVGResourceGradient::applyResource):

  • rendering/svg/RenderSVGResourceGradient.h:
  • rendering/svg/RenderSVGResourcePattern.cpp:

(WebCore::RenderSVGResourcePattern::postApplyResource):

  • rendering/svg/RenderSVGResourcePattern.h:
  • rendering/svg/RenderSVGResourceSolidColor.cpp:

(WebCore::RenderSVGResourceSolidColor::postApplyResource):

  • rendering/svg/RenderSVGResourceSolidColor.h:
  • rendering/svg/RenderSVGShape.cpp: Copied from Source/WebCore/rendering/svg/RenderSVGPath.cpp.

(WebCore::RenderSVGShape::RenderSVGShape):
(WebCore::RenderSVGShape::~RenderSVGShape):
(WebCore::RenderSVGShape::createShape):
(WebCore::RenderSVGShape::isEmpty):
(WebCore::RenderSVGShape::fillShape):
(WebCore::RenderSVGShape::objectBoundingBox):
(WebCore::RenderSVGShape::strokeBoundingBox):
(WebCore::RenderSVGShape::strokeShape):
(WebCore::RenderSVGShape::shapeDependentStrokeContains):
The purpose of this virtual function allows decendants to use their own fast checks.
(WebCore::RenderSVGShape::shapeDependentFillContains):
The purpose of this virtual function allows decendants to use their own fast checks.
(WebCore::RenderSVGShape::fillContains):
(WebCore::RenderSVGShape::strokeContains):
(WebCore::RenderSVGShape::layout):
(WebCore::RenderSVGShape::shouldStrokeZeroLengthSubpath):
(WebCore::RenderSVGShape::zeroLengthSubpathRect):
(WebCore::RenderSVGShape::setupSquareCapPath):
(WebCore::RenderSVGShape::setupNonScalingStrokePath):
(WebCore::RenderSVGShape::fillAndStrokePath):
(WebCore::RenderSVGShape::paint):
(WebCore::RenderSVGShape::addFocusRingRects):
(WebCore::RenderSVGShape::nodeAtFloatPoint):
(WebCore::RenderSVGShape::calculateMarkerBoundsIfNeeded):
(WebCore::RenderSVGShape::updateCachedBoundaries):
(WebCore::RenderSVGShape::strokeWidth):

  • rendering/svg/RenderSVGShape.h: Copied from Source/WebCore/rendering/svg/RenderSVGPath.h.

(WebCore::BoundingRectStrokeStyleApplier::BoundingRectStrokeStyleApplier):
(WebCore::BoundingRectStrokeStyleApplier::strokeStyle):
(WebCore::RenderSVGShape::setNeedsShapeUpdate):
(WebCore::RenderSVGShape::setNeedsBoundariesUpdate):
(WebCore::RenderSVGShape::setNeedsTransformUpdate):
(WebCore::RenderSVGShape::isPaintingFallback):
(WebCore::RenderSVGShape::path):
(WebCore::RenderSVGShape::setIsPaintingFallback):
(WebCore::RenderSVGShape::setStrokeAndMarkerBoundingBox):
(WebCore::RenderSVGShape::hasPath):
(WebCore::RenderSVGShape::repaintRectInLocalCoordinates):
(WebCore::RenderSVGShape::localToParentTransform):
(WebCore::RenderSVGShape::localTransform):
(WebCore::RenderSVGShape::isSVGShape):
(WebCore::RenderSVGShape::renderName):
(WebCore::RenderSVGShape::isRoundedRect):
(WebCore::RenderSVGShape::inflateWithMarkerBounds):
(WebCore::toRenderSVGShape):

  • rendering/svg/SVGInlineTextBox.cpp:

(WebCore::SVGInlineTextBox::releasePaintingResource):

  • rendering/svg/SVGRenderSupport.cpp:

(WebCore::SVGRenderSupport::finishRenderSVGContent):
(WebCore::SVGRenderSupport::layoutChildren):

  • rendering/svg/SVGRenderTreeAsText.cpp:

(WebCore::writeStyle):
(WebCore::operator<<):
(WebCore::write):

  • rendering/svg/SVGRenderTreeAsText.h:
  • rendering/svg/SVGTextRunRenderingContext.cpp:

(WebCore::SVGTextRunRenderingContext::drawSVGGlyphs):

  • svg/SVGCircleElement.cpp:

(WebCore::SVGCircleElement::svgAttributeChanged):

  • svg/SVGEllipseElement.cpp:

(WebCore::SVGEllipseElement::svgAttributeChanged):

  • svg/SVGLineElement.cpp:

(WebCore::SVGLineElement::svgAttributeChanged):

  • svg/SVGPathElement.cpp:

(WebCore::SVGPathElement::svgAttributeChanged):
(WebCore::SVGPathElement::pathSegListChanged):
(WebCore::SVGPathElement::createRenderer):

  • svg/SVGPathElement.h:
  • svg/SVGPolyElement.cpp:

(WebCore::SVGPolyElement::svgAttributeChanged):

  • svg/SVGRectElement.cpp:

(WebCore::SVGRectElement::svgAttributeChanged):
(WebCore::SVGRectElement::createRenderer):

  • svg/SVGRectElement.h:

LayoutTests:

Add new tests to check the new shape based rendering mechanism of SVGRectElement.

Patch by Renata Hodovan <reni@webkit.org> on 2011-10-19
Reviewed by Dirk Schulze.

  • svg/custom/pointer-events-on-rounded-rect-expected.txt: Added.
  • svg/custom/pointer-events-on-rounded-rect.xhtml: Added.
  • svg/custom/pointer-events-with-linecaps-and-miterlimits-expected.txt: Added.
  • svg/custom/pointer-events-with-linecaps-and-miterlimits.xhtml: Added.
7:50 AM Changeset in webkit [97862] by kbalazs@webkit.org
  • 3 edits in trunk/LayoutTests

inspector/cookie-parser.html is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=62662

Unreviewed gardening. Skip the next test that have became crashing after
skipping cookie-parser in the hope that the bug won't spread further.

  • platform/qt/Skipped:
  • platform/qt/test_expectations.txt:
7:33 AM Changeset in webkit [97861] by Philippe Normand
  • 32 edits in trunk/LayoutTests

Unreviewed, GTK rebaseline.

  • platform/gtk/fast/block/margin-collapse/010-expected.txt:
  • platform/gtk/fast/block/margin-collapse/011-expected.txt:
  • platform/gtk/fast/block/margin-collapse/012-expected.txt:
  • platform/gtk/fast/block/margin-collapse/015-expected.txt:
  • platform/gtk/fast/block/margin-collapse/016-expected.txt:
  • platform/gtk/fast/block/margin-collapse/020-expected.txt:
  • platform/gtk/fast/block/margin-collapse/056-expected.txt:
  • platform/gtk/fast/block/margin-collapse/059-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/010-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/011-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/012-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/015-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/016-expected.txt:
  • platform/gtk/fast/block/margin-collapse/block-inside-inline/020-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_layers-opacity-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_position-table-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-cell-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-column-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_border-table-row-group-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-hide-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-row-group-expected.txt:
7:30 AM Changeset in webkit [97860] by Csaba Osztrogonác
  • 5 edits in trunk/LayoutTests

[Qt] Fix failing tests after migrating to refactored Qt5
https://bugs.webkit.org/show_bug.cgi?id=69104

Move tests from qt-wk2/Skipped to qt-5.0, because these
fails are related to Qt 5, not to Qt-WK2.

Unreviewed gardening.

  • platform/qt-5.0/Skipped:
  • platform/qt-wk2/Skipped:
  • platform/qt/Skipped:
  • platform/qt/test_expectations.txt:
7:12 AM Changeset in webkit [97859] by kbalazs@webkit.org
  • 2 edits in trunk/LayoutTests

2 inspector/extensions tests times out on Mac after r97850 https://bugs.webkit.org/show_bug.cgi?id=70414

Unreviewed gardening.

  • platform/qt-mac/Skipped:
7:09 AM Changeset in webkit [97858] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Skipping test permanently because it is out of date to the current spec.
https://bugs.webkit.org/show_bug.cgi?id=68796

Patch by Zoltan Arvai <zarvai@inf.u-szeged.hu> on 2011-10-19
Reviewed by Csaba Osztrogonác.

  • platform/qt/Skipped:
7:02 AM Changeset in webkit [97857] by Chris Fleizach
  • 2 edits in trunk/Source/WebCore

AX: buttons of number type <input> controls are not fully accessible
https://bugs.webkit.org/show_bug.cgi?id=70241

Unreviewed. Fix missing </File> tag in Windows WebCore project file.

  • WebCore.vcproj/WebCore.vcproj:
6:59 AM Changeset in webkit [97856] by rgabor@webkit.org
  • 2 edits in trunk/Tools

[GTK] Enable to use built-product-archive on GTK platform
https://bugs.webkit.org/show_bug.cgi?id=70319

Reviewed by Csaba Osztrogonác.

  • BuildSlaveSupport/built-product-archive:
6:36 AM Changeset in webkit [97855] by loislo@chromium.org
  • 6 edits in trunk/Source/WebCore

Web Inspector: [Chromium] Add an ability to show the objects that were allocated between snapshot N-2 and snapshot N-1 and still alive in snapshot N.
https://bugs.webkit.org/show_bug.cgi?id=61178

This ability will help us to see only the leaked objects.
Scenario:
1) do an action on inspected page which leaks javascript data;
2) make snapshot;
3) repeat first two steps three or more times;
4) select the last snapshot and select the filter 'Objects allocated between Snapshot 1 and Snapshot2' instead of 'All objects'.
The view shows the object that were allocated between snapshot N-2 and snapshot N-1 and still alive in snapshot N

Reviewed by Pavel Feldman.

  • English.lproj/localizedStrings.js:
  • inspector/front-end/DetailedHeapshotGridNodes.js:

(WebInspector.HeapSnapshotConstructorNode):
(WebInspector.HeapSnapshotConstructorNode.prototype._createNodesProvider):

  • inspector/front-end/DetailedHeapshotView.js:

(WebInspector.HeapSnapshotConstructorsDataGrid):
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype.setDataSource):
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype.populateChildren):
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype._filterSelectIndexChanged.firstSnapshotLoaded):
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype._filterSelectIndexChanged.secondSnapshotLoaded):
(WebInspector.HeapSnapshotConstructorsDataGrid.prototype._filterSelectIndexChanged):
(WebInspector.HeapSnapshotDiffDataGrid.prototype._baseProfileIndexChanged):
(WebInspector.HeapSnapshotDiffDataGrid.prototype.populateChildren):
(WebInspector.DetailedHeapshotView.profileCallback):
(WebInspector.DetailedHeapshotView):
(WebInspector.DetailedHeapshotView.prototype.get statusBarItems):
(WebInspector.DetailedHeapshotView.prototype._changeBase):
(WebInspector.DetailedHeapshotView.prototype._changeFilter):
(WebInspector.DetailedHeapshotView.prototype._loadProfileByIndex):
(WebInspector.DetailedHeapshotView.prototype._changeView):
(WebInspector.DetailedHeapshotView.prototype._updateFilterOptions):

  • inspector/front-end/HeapSnapshot.js:

(WebInspector.HeapSnapshot.prototype.dispose):
(WebInspector.HeapSnapshot.prototype.get maxNodeId):
(WebInspector.HeapSnapshot.prototype.aggregates):
(WebInspector.HeapSnapshot.prototype._buildAggregates):
(WebInspector.HeapSnapshot.prototype._sortAggregateIndexes):
(WebInspector.HeapSnapshot.prototype.createNodesProviderForClass):
(WebInspector.HeapSnapshot.prototype.updateStaticData):

  • inspector/front-end/HeapSnapshotProxy.js:

(WebInspector.HeapSnapshotWorker):
(WebInspector.HeapSnapshotProxy.prototype.aggregates):
(WebInspector.HeapSnapshotProxy.prototype.createNodesProviderForClass):
(WebInspector.HeapSnapshotProxy.prototype.get maxNodeId):
(WebInspector.HeapSnapshotProxy.prototype.startLoading):

6:31 AM Changeset in webkit [97854] by apavlov@chromium.org
  • 90 edits in trunk/Source/WebCore

Strip trailing whitespace in the WebCore/css C++ code.
https://bugs.webkit.org/show_bug.cgi?id=70410

Reviewed by Dirk Schulze.

Only affected file names retained below for brevity.
Multiline boolean expression were fixed where necessary to avoid patch style violations.

  • css/CSSBorderImageSliceValue.cpp:
  • css/CSSBorderImageSliceValue.h:
  • css/CSSBorderImageValue.cpp:
  • css/CSSCanvasValue.cpp:
  • css/CSSCanvasValue.h:
  • css/CSSComputedStyleDeclaration.cpp:
  • css/CSSCursorImageValue.cpp:
  • css/CSSFontFace.cpp:
  • css/CSSFontFace.h:
  • css/CSSFontFaceSource.cpp:
  • css/CSSFontFaceSource.h:
  • css/CSSFontFaceSrcValue.cpp:
  • css/CSSFontFaceSrcValue.h:
  • css/CSSFontSelector.cpp:
  • css/CSSFontSelector.h:
  • css/CSSFunctionValue.cpp:
  • css/CSSFunctionValue.h:
  • css/CSSGradientValue.cpp:
  • css/CSSGradientValue.h:
  • css/CSSImageGeneratorValue.cpp:
  • css/CSSImageGeneratorValue.h:
  • css/CSSImageValue.cpp:
  • css/CSSImageValue.h:
  • css/CSSImportRule.cpp:
  • css/CSSInitialValue.cpp:
  • css/CSSInitialValue.h:
  • css/CSSMutableStyleDeclaration.cpp:
  • css/CSSMutableStyleDeclaration.h:
  • css/CSSParser.cpp:
  • css/CSSParser.h:
  • css/CSSParserValues.cpp:
  • css/CSSParserValues.h:
  • css/CSSPrimitiveValue.cpp:
  • css/CSSPrimitiveValue.h:
  • css/CSSPrimitiveValueCache.cpp:
  • css/CSSPrimitiveValueCache.h:
  • css/CSSPrimitiveValueMappings.h:
  • css/CSSProperty.cpp:
  • css/CSSProperty.h:
  • css/CSSPropertyLonghand.cpp:
  • css/CSSReflectValue.cpp:
  • css/CSSReflectValue.h:
  • css/CSSReflectionDirection.h:
  • css/CSSSegmentedFontFace.cpp:
  • css/CSSSegmentedFontFace.h:
  • css/CSSSelector.cpp:
  • css/CSSSelector.h:
  • css/CSSSelectorList.cpp:
  • css/CSSSelectorList.h:
  • css/CSSStyleApplyProperty.cpp:
  • css/CSSStyleDeclaration.h:
  • css/CSSStyleSelector.cpp:
  • css/CSSStyleSelector.h:
  • css/CSSStyleSheet.cpp:
  • css/CSSTimingFunctionValue.cpp:
  • css/CSSTimingFunctionValue.h:
  • css/CSSUnicodeRangeValue.cpp:
  • css/CSSUnicodeRangeValue.h:
  • css/CSSValueList.cpp:
  • css/CSSWrapShapes.cpp:
  • css/CSSWrapShapes.h:
  • css/FontValue.cpp:
  • css/MediaList.cpp:
  • css/MediaQuery.cpp:
  • css/MediaQuery.h:
  • css/MediaQueryEvaluator.h:
  • css/MediaQueryExp.cpp:
  • css/MediaQueryExp.h:
  • css/Pair.h:
  • css/SVGCSSComputedStyleDeclaration.cpp:
  • css/SVGCSSParser.cpp:
  • css/SVGCSSStyleSelector.cpp:
  • css/SelectorChecker.cpp:
  • css/SelectorChecker.h:
  • css/StyleBase.cpp:
  • css/StyleMedia.cpp:
  • css/StyleMedia.h:
  • css/StyleSheetList.cpp:
  • css/StyleSheetList.h:
  • css/WebKitCSSFilterValue.cpp:
  • css/WebKitCSSFilterValue.h:
  • css/WebKitCSSKeyframeRule.cpp:
  • css/WebKitCSSKeyframeRule.h:
  • css/WebKitCSSKeyframesRule.cpp:
  • css/WebKitCSSKeyframesRule.h:
  • css/WebKitCSSMatrix.cpp:
  • css/WebKitCSSMatrix.h:
  • css/WebKitCSSTransformValue.cpp:
  • css/WebKitCSSTransformValue.h:
6:27 AM Changeset in webkit [97853] by krit@webkit.org
  • 39 edits in trunk/Source/WebCore

Make FilterEffect::apply() independent of image data management
https://bugs.webkit.org/show_bug.cgi?id=70350

Reviewed by Zoltan Herczeg.

FilterEffect::apply() needs to be independent from the image data management in FilterEffect.
This allows implementing effective hardware accelerated alternatives, like OpenGL, CI or OpenCL
based filters, to the software rendering. The software rendering code will be used as fallback
and moves to platformApplySoftware().

The patch does not change the behavior of SVG filters. Did not add new test cases.

  • platform/graphics/filters/FEBlend.cpp: Renamed apply() to platformApplyGeneric()

and removed validity checks that are done by FilterEffect::apply(). This is a
recurring pattern for all following effects.

(WebCore::FEBlend::platformApplySoftware):

  • platform/graphics/filters/FEBlend.h:
  • platform/graphics/filters/FEColorMatrix.cpp:

(WebCore::FEColorMatrix::platformApplySoftware):

  • platform/graphics/filters/FEColorMatrix.h:
  • platform/graphics/filters/FEComponentTransfer.cpp:

(WebCore::FEComponentTransfer::platformApplySoftware):

  • platform/graphics/filters/FEComponentTransfer.h:
  • platform/graphics/filters/FEComposite.cpp:

(WebCore::FEComposite::platformApplySoftware):

  • platform/graphics/filters/FEComposite.h:
  • platform/graphics/filters/FEConvolveMatrix.cpp:

(WebCore::FEConvolveMatrix::platformApplySoftware):

  • platform/graphics/filters/FEConvolveMatrix.h:
  • platform/graphics/filters/FEDisplacementMap.cpp:

(WebCore::FEDisplacementMap::platformApplySoftware):

  • platform/graphics/filters/FEDisplacementMap.h:
  • platform/graphics/filters/FEDropShadow.cpp:

(WebCore::FEDropShadow::platformApplySoftware):

  • platform/graphics/filters/FEDropShadow.h:
  • platform/graphics/filters/FEFlood.cpp:

(WebCore::FEFlood::platformApplySoftware):

  • platform/graphics/filters/FEFlood.h:
  • platform/graphics/filters/FEGaussianBlur.cpp:

(WebCore::FEGaussianBlur::platformApplySoftware):

  • platform/graphics/filters/FEGaussianBlur.h:
  • platform/graphics/filters/FELighting.cpp:

(WebCore::FELighting::platformApplySoftware):

  • platform/graphics/filters/FELighting.h:
  • platform/graphics/filters/FEMerge.cpp:

(WebCore::FEMerge::platformApplySoftware):

  • platform/graphics/filters/FEMerge.h:
  • platform/graphics/filters/FEMorphology.cpp:

(WebCore::FEMorphology::platformApplySoftware):

  • platform/graphics/filters/FEMorphology.h:
  • platform/graphics/filters/FEOffset.cpp:

(WebCore::FEOffset::platformApplySoftware):

  • platform/graphics/filters/FEOffset.h:
  • platform/graphics/filters/FETile.cpp:

(WebCore::FETile::platformApplySoftware):

  • platform/graphics/filters/FETile.h:
  • platform/graphics/filters/FETurbulence.cpp:

(WebCore::FETurbulence::platformApplySoftware):

  • platform/graphics/filters/FETurbulence.h:
  • platform/graphics/filters/FilterEffect.cpp: Added non-virtual apply() function. This will call the platform specific apply functions,

which need to be virtual now.

(WebCore::FilterEffect::hasResult): Added a comment for new implementations. This function needs to be updated for every new port.
(WebCore::FilterEffect::apply):
(WebCore::FilterEffect::createImageBufferResult): Removed determineAbsolutePaintRect() call. This is done in apply() now.
(WebCore::FilterEffect::createUnmultipliedImageResult): Ditto.
(WebCore::FilterEffect::createPremultipliedImageResult): Ditto.

  • platform/graphics/filters/FilterEffect.h:
  • platform/graphics/filters/SourceAlpha.cpp:

(WebCore::SourceAlpha::platformApplySoftware):

  • platform/graphics/filters/SourceAlpha.h:
  • platform/graphics/filters/SourceGraphic.cpp:

(WebCore::SourceGraphic::platformApplySoftware):

  • platform/graphics/filters/SourceGraphic.h:
  • svg/graphics/filters/SVGFEImage.cpp:

(WebCore::FEImage::platformApplySoftware):

  • svg/graphics/filters/SVGFEImage.h:
5:58 AM Changeset in webkit [97852] by caio.oliveira@openbossa.org
  • 23 edits
    16 moves in trunk/Source/WebKit2

[Qt] [WK2] Rename files and classes to follow conventions
https://bugs.webkit.org/show_bug.cgi?id=70391

Reviewed by Noam Rosenthal.

Rename the files and classes following the agreed conventions on
QtWebKit mailing list -- which are based on existing usage we have.

  • Public API follow Qt conventions: qsomething.cpp qsomething.h with class named QSomething
  • Private classes for public API classes follow Qt conventions: qsomething_p.h qsomething_p.cpp (if needed), with class named QSomethingPrivate
  • Subclasses and Qt-specific implementations of WebKit/WebCore classes use Qt suffix: FrameLoaderClientQt.cpp
  • Other classes created for using in our port use Qt prefix: QtFileDownloader, QtViewInterface

This is documented in https://trac.webkit.org/wiki/QtWebKitHacking

  • UIProcess/API/qt/qdesktopwebview.cpp:

(QDesktopWebViewPrivate::chooseFiles):
(toPolicyAction):
(QDesktopWebViewPrivate::navigationPolicyForURL):

  • UIProcess/API/qt/qdesktopwebview_p.h:
  • UIProcess/API/qt/qtouchwebpage.cpp:

(QTouchWebPage::updatePaintNode):
(QTouchWebPagePrivate::setPage):

  • UIProcess/API/qt/qtouchwebpage.h:
  • UIProcess/API/qt/qtouchwebpage_p.h:
  • UIProcess/API/qt/qtouchwebview.cpp:

(QTouchWebViewPrivate::updateViewportConstraints):

  • UIProcess/API/qt/qtouchwebview.h:
  • UIProcess/API/qt/qtouchwebview_p.h:
  • UIProcess/TiledDrawingAreaProxy.h:
  • UIProcess/qt/ClientImpl.cpp:

(toQtViewInterface):
(toQtPolicyInterface):
(qt_wk_runJavaScriptAlert):
(qt_wk_runJavaScriptConfirm):
(qt_wk_runJavaScriptPrompt):
(qt_wk_setStatusText):
(qt_wk_runOpenPanel):
(qt_wk_mouseDidMoveOverElement):
(qt_wk_decidePolicyForNavigationAction):

  • UIProcess/qt/QtDesktopWebPageProxy.cpp: Renamed from Source/WebKit2/UIProcess/qt/qdesktopwebpageproxy.cpp.

(dragOperationToDropAction):
(QtDesktopWebPageProxy::QtDesktopWebPageProxy):
(QtDesktopWebPageProxy::createDrawingAreaProxy):
(QtDesktopWebPageProxy::paintContent):
(QtDesktopWebPageProxy::setViewportArguments):
(QtDesktopWebPageProxy::doneWithTouchEvent):
(QtDesktopWebPageProxy::createPopupMenuProxy):
(QtDesktopWebPageProxy::handleEvent):
(QtDesktopWebPageProxy::handleMouseMoveEvent):
(QtDesktopWebPageProxy::handleMousePressEvent):
(QtDesktopWebPageProxy::handleMouseReleaseEvent):
(QtDesktopWebPageProxy::handleMouseDoubleClickEvent):
(QtDesktopWebPageProxy::handleWheelEvent):
(QtDesktopWebPageProxy::handleHoverLeaveEvent):
(QtDesktopWebPageProxy::handleHoverMoveEvent):
(QtDesktopWebPageProxy::handleDragEnterEvent):
(QtDesktopWebPageProxy::handleDragLeaveEvent):
(QtDesktopWebPageProxy::handleDragMoveEvent):
(QtDesktopWebPageProxy::handleDropEvent):
(QtDesktopWebPageProxy::timerEvent):

  • UIProcess/qt/QtDesktopWebPageProxy.h: Renamed from Source/WebKit2/UIProcess/qt/qdesktopwebpageproxy.h.
  • UIProcess/qt/QtGestureRecognizer.cpp:

(WebKit::QtGestureRecognizer::QtGestureRecognizer):

  • UIProcess/qt/QtGestureRecognizer.h:
  • UIProcess/qt/QtPanGestureRecognizer.cpp:

(WebKit::QtPanGestureRecognizer::QtPanGestureRecognizer):

  • UIProcess/qt/QtPanGestureRecognizer.h:
  • UIProcess/qt/QtPinchGestureRecognizer.cpp:

(WebKit::QtPinchGestureRecognizer::QtPinchGestureRecognizer):

  • UIProcess/qt/QtPinchGestureRecognizer.h:
  • UIProcess/qt/QtPolicyInterface.h: Renamed from Source/WebKit2/UIProcess/qt/PolicyInterface.h.
  • UIProcess/qt/QtSGTileNode.cpp: Renamed from Source/WebKit2/UIProcess/qt/SGTileNode.cpp.

(WebKit::QtSGTileNode::QtSGTileNode):
(WebKit::QtSGTileNode::setBackBuffer):
(WebKit::QtSGTileNode::swapBuffersIfNeeded):

  • UIProcess/qt/QtSGTileNode.h: Renamed from Source/WebKit2/UIProcess/qt/SGTileNode.h.
  • UIProcess/qt/QtSGUpdateQueue.cpp: Renamed from Source/WebKit2/UIProcess/qt/SGUpdateQueue.cpp.

(WebKit::NodeUpdateCreateTile::NodeUpdateCreateTile):
(WebKit::NodeUpdateRemoveTile::NodeUpdateRemoveTile):
(WebKit::NodeUpdateSetBackBuffer::NodeUpdateSetBackBuffer):
(WebKit::NodeUpdateSwapTileBuffers::NodeUpdateSwapTileBuffers):
(WebKit::QtSGUpdateQueue::QtSGUpdateQueue):
(WebKit::QtSGUpdateQueue::createTileNode):
(WebKit::QtSGUpdateQueue::removeTileNode):
(WebKit::QtSGUpdateQueue::setNodeBackBuffer):
(WebKit::QtSGUpdateQueue::swapTileBuffers):
(WebKit::QtSGUpdateQueue::applyUpdates):
(WebKit::QtSGUpdateQueue::getScaleNode):

  • UIProcess/qt/QtSGUpdateQueue.h: Renamed from Source/WebKit2/UIProcess/qt/SGUpdateQueue.h.

(WebKit::QtSGUpdateQueue::isSwapPending):
(WebKit::NodeUpdate::NodeUpdate):
(WebKit::NodeUpdate::~NodeUpdate):

  • UIProcess/qt/QtTouchViewInterface.cpp: Renamed from Source/WebKit2/UIProcess/qt/TouchViewInterface.cpp.

(WebKit::QtTouchViewInterface::QtTouchViewInterface):
(WebKit::QtTouchViewInterface::didFindZoomableArea):
(WebKit::QtTouchViewInterface::sceneGraphUpdateQueue):
(WebKit::QtTouchViewInterface::setViewNeedsDisplay):
(WebKit::QtTouchViewInterface::drawingAreaSize):
(WebKit::QtTouchViewInterface::contentSizeChanged):
(WebKit::QtTouchViewInterface::isActive):
(WebKit::QtTouchViewInterface::hasFocus):
(WebKit::QtTouchViewInterface::isVisible):
(WebKit::QtTouchViewInterface::startDrag):
(WebKit::QtTouchViewInterface::didReceiveViewportArguments):
(WebKit::QtTouchViewInterface::didChangeUrl):
(WebKit::QtTouchViewInterface::didChangeTitle):
(WebKit::QtTouchViewInterface::didChangeToolTip):
(WebKit::QtTouchViewInterface::didChangeStatusText):
(WebKit::QtTouchViewInterface::didChangeCursor):
(WebKit::QtTouchViewInterface::loadDidBegin):
(WebKit::QtTouchViewInterface::loadDidCommit):
(WebKit::QtTouchViewInterface::loadDidSucceed):
(WebKit::QtTouchViewInterface::loadDidFail):
(WebKit::QtTouchViewInterface::didChangeLoadProgress):
(WebKit::QtTouchViewInterface::showContextMenu):
(WebKit::QtTouchViewInterface::hideContextMenu):
(WebKit::QtTouchViewInterface::runJavaScriptAlert):
(WebKit::QtTouchViewInterface::runJavaScriptConfirm):
(WebKit::QtTouchViewInterface::runJavaScriptPrompt):
(WebKit::QtTouchViewInterface::processDidCrash):
(WebKit::QtTouchViewInterface::didRelaunchProcess):
(WebKit::QtTouchViewInterface::engine):

  • UIProcess/qt/QtTouchViewInterface.h: Renamed from Source/WebKit2/UIProcess/qt/TouchViewInterface.h.

(WebKit::QtTouchViewInterface::chooseFiles):
(WebKit::QtTouchViewInterface::didMouseMoveOverElement):

  • UIProcess/qt/QtTouchWebPageProxy.cpp: Renamed from Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.cpp.

(QtTouchWebPageProxy::QtTouchWebPageProxy):
(QtTouchWebPageProxy::createDrawingAreaProxy):
(QtTouchWebPageProxy::processDidCrash):
(QtTouchWebPageProxy::paintContent):
(QtTouchWebPageProxy::doneWithTouchEvent):
(QtTouchWebPageProxy::handleEvent):
(QtTouchWebPageProxy::setVisibleContentRectAndScale):
(QtTouchWebPageProxy::setVisibleContentRectTrajectoryVector):
(QtTouchWebPageProxy::setResizesToContentsUsingLayoutSize):
(QtTouchWebPageProxy::touchEvent):
(QtTouchWebPageProxy::findZoomableAreaForPoint):
(QtTouchWebPageProxy::renderNextFrame):

  • UIProcess/qt/QtTouchWebPageProxy.h: Renamed from Source/WebKit2/UIProcess/qt/qtouchwebpageproxy.h.

(QtTouchWebPageProxy::touchViewInterface):
(QtTouchWebPageProxy::drawingArea):

  • UIProcess/qt/QtViewInterface.h: Renamed from Source/WebKit2/UIProcess/qt/ViewInterface.h.
  • UIProcess/qt/QtViewportInteractionEngine.cpp: Renamed from Source/WebKit2/UIProcess/qt/ViewportInteractionEngine.cpp.

(WebKit::visibleRectInContentCoordinate):
(WebKit::contentRectInViewportCoordinate):
(WebKit::ViewportUpdateGuard::ViewportUpdateGuard):
(WebKit::ViewportUpdateGuard::~ViewportUpdateGuard):
(WebKit::QtViewportInteractionEngine::QtViewportInteractionEngine):
(WebKit::QtViewportInteractionEngine::~QtViewportInteractionEngine):
(WebKit::QtViewportInteractionEngine::reset):
(WebKit::QtViewportInteractionEngine::setConstraints):
(WebKit::QtViewportInteractionEngine::panGestureStarted):
(WebKit::QtViewportInteractionEngine::panGestureRequestUpdate):
(WebKit::QtViewportInteractionEngine::panGestureCancelled):
(WebKit::QtViewportInteractionEngine::panGestureEnded):
(WebKit::QtViewportInteractionEngine::pinchGestureStarted):
(WebKit::QtViewportInteractionEngine::pinchGestureRequestUpdate):
(WebKit::QtViewportInteractionEngine::pinchGestureEnded):
(WebKit::QtViewportInteractionEngine::contentViewportChanged):
(WebKit::QtViewportInteractionEngine::updateContentIfNeeded):
(WebKit::QtViewportInteractionEngine::updateContentScaleIfNeeded):
(WebKit::QtViewportInteractionEngine::updateContentPositionIfNeeded):
(WebKit::QtViewportInteractionEngine::animateContentIntoBoundariesIfNeeded):
(WebKit::QtViewportInteractionEngine::animateContentPositionIntoBoundariesIfNeeded):
(WebKit::QtViewportInteractionEngine::animateContentScaleIntoBoundariesIfNeeded):
(WebKit::QtViewportInteractionEngine::scaleContent):

  • UIProcess/qt/QtViewportInteractionEngine.h: Renamed from Source/WebKit2/UIProcess/qt/ViewportInteractionEngine.h.

(WebKit::QtViewportInteractionEngine::Constraints::Constraints):
(WebKit::operator==):

  • UIProcess/qt/QtWebPageProxy.cpp:

(QtWebPageProxy::QtWebPageProxy):
(QtWebPageProxy::registerEditCommand):

  • UIProcess/qt/QtWebPageProxy.h:
  • UIProcess/qt/QtWebUndoCommand.cpp: Renamed from Source/WebKit2/UIProcess/qt/WebUndoCommandQt.cpp.

(QtWebUndoCommand::QtWebUndoCommand):
(QtWebUndoCommand::~QtWebUndoCommand):
(QtWebUndoCommand::redo):
(QtWebUndoCommand::undo):

  • UIProcess/qt/QtWebUndoCommand.h: Renamed from Source/WebKit2/UIProcess/qt/WebUndoCommandQt.h.

(QtWebUndoCommand::inUndoRedo):

  • UIProcess/qt/TiledDrawingAreaProxyQt.cpp:

(WebKit::TiledDrawingAreaProxy::updateWebView):

  • UIProcess/qt/WebContextMenuProxyQt.cpp:

(WebKit::WebContextMenuProxyQt::WebContextMenuProxyQt):
(WebKit::WebContextMenuProxyQt::create):

  • UIProcess/qt/WebContextMenuProxyQt.h:
  • WebKit2.pro:
5:36 AM Changeset in webkit [97851] by vsevik@chromium.org
  • 26 edits in trunk

Web Inspector: Enable caseSensitive search / Regex support in advanced search.
https://bugs.webkit.org/show_bug.cgi?id=70335

Reviewed by Pavel Feldman.

Source/WebCore:

  • inspector/ContentSearchUtils.cpp:

(WebCore::ContentSearchUtils::createSearchRegex):
(WebCore::ContentSearchUtils::searchInTextByLines):

  • inspector/ContentSearchUtils.h:
  • inspector/Inspector.json:
  • inspector/InspectorDebuggerAgent.cpp:

(WebCore::InspectorDebuggerAgent::searchInContent):

  • inspector/InspectorDebuggerAgent.h:
  • inspector/InspectorPageAgent.cpp:

(WebCore::InspectorPageAgent::searchInResource):

  • inspector/InspectorPageAgent.h:
  • inspector/front-end/AdvancedSearchController.js:

(WebInspector.SearchView):
(WebInspector.SearchView.prototype.get searchConfig):
(WebInspector.FileBasedSearchResultsPane.prototype._createSearchRegex):
(WebInspector.FileBasedSearchResultsPane.prototype.addSearchResult):
(WebInspector.FileBasedSearchResultsPane.SearchResult):

  • inspector/front-end/ConsolePanel.js:

(WebInspector.ConsolePanel.prototype.performSearch):

  • inspector/front-end/ContentProviders.js:

(WebInspector.ScriptContentProvider.prototype.searchInContent):
(WebInspector.ConcatenatedScriptsContentProvider.prototype.searchInContent.searchCallback):
(WebInspector.ConcatenatedScriptsContentProvider.prototype.searchInContent):
(WebInspector.ResourceContentProvider.prototype.searchInContent):
(WebInspector.CompilerSourceMappingContentProvider.prototype.searchInContent):
(WebInspector.StaticContentProvider.prototype.searchInContent):

  • inspector/front-end/ElementsTreeOutline.js:

():

  • inspector/front-end/NetworkPanel.js:

(WebInspector.NetworkLogView.prototype.performSearch):

  • inspector/front-end/Resource.js:

(WebInspector.Resource.prototype.searchInContent):

  • inspector/front-end/Script.js:

(WebInspector.Script.prototype.searchInContent):

  • inspector/front-end/ScriptsSearchScope.js:

(WebInspector.ScriptsSearchScope.prototype.performSearch.searchCallbackWrapper):
(WebInspector.ScriptsSearchScope.prototype.performSearch):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame.createSearchRegex):

  • inspector/front-end/UISourceCode.js:

(WebInspector.UISourceCode.prototype.searchInContent):
(WebInspector.ContentProvider.prototype.searchInContent):

  • inspector/front-end/inspector.css:

(.search-view .search-panel input[type="search"].search-config-search):
(.search-view .search-panel label.search-config-label):
(.search-view .search-panel input[type="checkbox"].search-config-checkbox):

  • inspector/front-end/utilities.js:

():

LayoutTests:

  • http/tests/inspector/search/search-in-concatenated-script.html:
  • http/tests/inspector/search/search-in-resource-expected.txt:
  • http/tests/inspector/search/search-in-resource.html:
  • http/tests/inspector/search/search-in-script-expected.txt:
  • http/tests/inspector/search/search-in-script.html:
5:22 AM Changeset in webkit [97850] by caseq@chromium.org
  • 9 edits
    3 adds in trunk

Web Inspector: make extension tests pass on chromium
https://bugs.webkit.org/show_bug.cgi?id=70334

Reviewed by Pavel Feldman.

Source/WebKit/chromium:

  • DEPS: roll chromium 105970:106056

LayoutTests:

  • http/tests/inspector/extensions-headers.html:
  • http/tests/inspector/resources/extension-main.js:

():

  • inspector/extensions/extensions-audits.html:
  • inspector/extensions/extensions-console.html:
  • inspector/extensions/extensions-resources.html:
  • platform/chromium/inspector/extensions/extensions-api-expected.txt: Added.
  • platform/chromium/inspector/extensions/extensions-eval-expected.txt: Added.
  • platform/chromium/test_expectations.txt:
5:11 AM Changeset in webkit [97849] by andreas.kling@nokia.com
  • 9 edits in trunk/Source/WebCore

MediaList: Remove inheritance from StyleBase.
https://bugs.webkit.org/show_bug.cgi?id=70203

Reviewed by Darin Adler.

  • css/MediaList.h:

(WebCore::MediaList::parentStyleSheet):
(WebCore::MediaList::setParentStyleSheet):

  • css/MediaList.cpp:

(WebCore::MediaList::MediaList):
(WebCore::MediaList::notifyChanged):

Change MediaList to no longer inherit from StyleBase. The parent()/setParent()
mechanism was replaced by explicit parentStyleSheet()/setParentStyleSheet().

  • css/CSSImportRule.cpp:

(WebCore::CSSImportRule::CSSImportRule):
(WebCore::CSSImportRule::~CSSImportRule):

  • css/CSSMediaRule.cpp:

(WebCore::CSSMediaRule::CSSMediaRule):
(WebCore::CSSMediaRule::~CSSMediaRule):

Change StyleBase::setParent() calls to MediaList::setParentStyleSheet().
CSSRules are never moved between stylesheets, so the parent style sheet pointer
is valid for the MediaList's lifetime.

  • css/StyleSheet.cpp:

(WebCore::StyleSheet::~StyleSheet):

Change StyleBase::setParent() calls to MediaList::setParentStyleSheet().

(WebCore::StyleSheet::setMedia):

Change StyleBase::setParent() calls to MediaList::setParentStyleSheet().
Assert that the parent sheet is either null, or this, as MediaLists should never
be reparented to other sheets.
Assert that the StyleSheet is indeed a CSSStyleSheet. XSLStyleSheet inherits from
StyleSheet, but it shouldn't be using the MediaList.

  • bindings/js/JSDOMBinding.h:

(WebCore::root):

Add MediaList* specific overload for root() since it can't fall back
to root(StyleBase*) anymore.

  • WebCore.xcodeproj/project.pbxproj:

Add some PrivateHeaders to accomodate the JSDOMBinding.h changes.

  • css/CSSMediaRule.h:

Remove unnecessary forward-declaration of MediaList.

5:02 AM Changeset in webkit [97848] by Philippe Normand
  • 10 edits
    1 add in trunk/LayoutTests

Unreviewed, GTK rebaseline and GTK baselines for
fast/multicol/vertical-rl/rule-style.html

  • platform/gtk/Skipped: Skip

fast/files/url-required-arguments.html, affected by bug 66045

  • platform/gtk/fast/dom/Window/window-properties-expected.txt:
  • platform/gtk/fast/multicol/vertical-rl/rule-style-expected.txt: Added.
  • platform/gtk/svg/hixie/cascade/002-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-column-group-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-expected.txt:
  • platform/gtk/tables/mozilla/marvin/backgr_simple-table-row-group-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_layers-show-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-cell-expected.txt:
  • platform/gtk/tables/mozilla_expected_failures/marvin/backgr_position-table-column-expected.txt:
4:29 AM Changeset in webkit [97847] by vsevik@chromium.org
  • 2 edits in trunk/Source/WebCore

Web Inspector: Console messages for XHR logging should show call stack if available.
https://bugs.webkit.org/show_bug.cgi?id=70324

Reviewed by Pavel Feldman.

  • inspector/front-end/ConsoleMessage.js:

(WebInspector.ConsoleMessageImpl.prototype._formatMessage):

4:18 AM Changeset in webkit [97846] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed fix after r97845.

  • platform/qt/test_expectations.txt: Remove a skipped test, because NRWT can't handle duplicated entries.
4:09 AM Changeset in webkit [97845] by Csaba Osztrogonác
  • 2 edits in trunk/LayoutTests

[Qt] Unreviewed gardening.

inspector/cookie-parser.html is a flaky crash
https://bugs.webkit.org/show_bug.cgi?id=62662

[Qt] Assertion fail in CSSPrimitiveValue ctor
https://bugs.webkit.org/show_bug.cgi?id=69933

  • platform/qt/Skipped: Skip failing tests to paint the bots green.
3:51 AM Changeset in webkit [97844] by Csaba Osztrogonác
  • 3 edits in trunk/LayoutTests

[Qt] Unreviewed gardening. Skip new failing tests.

  • platform/qt-mac/Skipped:
  • platform/qt-wk2/Skipped:
2:48 AM Changeset in webkit [97843] by podivilov@chromium.org
  • 5 edits in trunk/Source/WebCore

Web Inspector: move JS specific popover handling to JavaScriptSourceFrame.
https://bugs.webkit.org/show_bug.cgi?id=70033

Reviewed by Pavel Feldman.

  • inspector/front-end/DebuggerPresentationModel.js:

(WebInspector.DebuggerPresentationModel.prototype.uiSourceCodes):
(WebInspector.DebuggerPresentationModel.prototype.get paused):

  • inspector/front-end/JavaScriptSourceFrame.js:

(WebInspector.JavaScriptSourceFrame):
(WebInspector.JavaScriptSourceFrame.prototype.shouldShowPopover):
(WebInspector.JavaScriptSourceFrame.prototype.onShowPopover.showObjectPopover):
(WebInspector.JavaScriptSourceFrame.prototype.onShowPopover):
(WebInspector.JavaScriptSourceFrame.prototype.onHidePopover):
(WebInspector.JavaScriptSourceFrame.prototype._highlightExpression):

  • inspector/front-end/ScriptsPanel.js:

(WebInspector.ScriptsPanel.prototype._createSourceFrame):
(WebInspector.SourceFrameDelegateForScriptsPanel):

  • inspector/front-end/SourceFrame.js:

(WebInspector.SourceFrame):
(WebInspector.SourceFrame.prototype.willHide):
(WebInspector.SourceFrame.prototype._initializeTextViewer):
(WebInspector.SourceFrame.prototype._getPopoverAnchor):
(WebInspector.SourceFrame.prototype.get readOnly):
(WebInspector.SourceFrame.prototype._setReadOnly):
(WebInspector.SourceFrame.prototype.contentChanged):
(WebInspector.SourceFrame.prototype.shouldShowPopover):
(WebInspector.SourceFrame.prototype.onShowPopover):
(WebInspector.SourceFrame.prototype.onHidePopover):

2:48 AM BuildingQt5OnHarmattan edited by Simon Hausmann
(diff)
2:45 AM Changeset in webkit [97842] by rgabor@webkit.org
  • 1 edit
    4 adds in trunk/LayoutTests

[Qt] Unreviewed gardening. Add platform specific expected result for new tests.

  • platform/qt/fast/multicol/vertical-rl/rule-style-expected.png: Added.
  • platform/qt/fast/multicol/vertical-rl/rule-style-expected.txt: Added.
  • platform/qt/fast/selectors/visited-descendant-expected.png: Added.
  • platform/qt/fast/selectors/visited-descendant-expected.txt: Added.
1:32 AM Changeset in webkit [97841] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL][WK2] Added missing files to build WebKit2 EFL
https://bugs.webkit.org/show_bug.cgi?id=70312

Patch by Tomasz Morawski <t.morawski@samsung.com> on 2011-10-19
Reviewed by Ryosuke Niwa.

Added missing files to WebCore/CMakeListEfl.txt script:

  • platform/network/soup/CredentialStorageSoup.cpp
  • platform/network/soup/ProxyServerSoup.cpp

Fixes few linking time errors.

  • CMakeListsEfl.txt:
12:53 AM Changeset in webkit [97840] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebKit2

[EFL][WK2] Added missing dummy interpretKeyEvent function
https://bugs.webkit.org/show_bug.cgi?id=70311

Patch by Tomasz Morawski <t.morawski@samsung.com> on 2011-10-19
Reviewed by Ryosuke Niwa.

Added missing dummy interpretKeyEvent function needed to compile WK2.

  • WebProcess/WebPage/efl/WebPageEfl.cpp:

(WebKit::WebPage::interpretKeyEvent):

12:47 AM Changeset in webkit [97839] by haraken@chromium.org
  • 7 edits in trunk/Source/WebCore

Rename AllowAllocation to ConstructorMode
https://bugs.webkit.org/show_bug.cgi?id=70397

Reviewed by Adam Barth.

The name 'AllowAllocation' is confusing (See discussion here: bug 70015).
This patch renames 'AllowAllocation' to 'ConstructorMode' to clarify that
this class is for distinguishing the following two situations:

  1. A programmer allocates an object via "new X"; X is a function with a C++ constructCallback.
  2. C++ allocates an object via the function template and tries to wrap the object with a JS flavor.

Tests: fast/events/constructors/*

  • bindings/scripts/CodeGeneratorV8.pm: Renamed AllowAllocation to ConstructorMode.

(GenerateConstructorCallback):

  • bindings/scripts/test/V8/V8TestInterface.cpp: Updated a run-binding-tests result.

(WebCore::V8TestInterface::constructorCallback):

  • bindings/v8/V8Binding.cpp: Renamed AllowAllocation to ConstructorMode.

(WebCore::V8BindingPerIsolateData::V8BindingPerIsolateData):

  • bindings/v8/V8Binding.h: Ditto.

(WebCore::ConstructorMode::ConstructorMode):
(WebCore::ConstructorMode::~ConstructorMode):
(WebCore::ConstructorMode::current):
(WebCore::SafeAllocation::newInstance):

  • bindings/v8/V8Proxy.cpp: Ditto.

(WebCore::V8Proxy::checkNewLegal):

  • bindings/v8/custom/V8EventConstructors.cpp: Ditto.

(WebCore::constructV8Event):

12:32 AM Changeset in webkit [97838] by yuzo@google.com
  • 2 edits in trunk/LayoutTests

[chromium] Test expectation change.

Unreviewed.

  • platform/chromium/test_expectations.txt:
12:18 AM Changeset in webkit [97837] by commit-queue@webkit.org
  • 2 edits in trunk/Source/WebCore

[EFL] Added missing dummy platformDescription function
https://bugs.webkit.org/show_bug.cgi?id=70310

Patch by Tomasz Morawski <t.morawski@samsung.com> on 2011-10-19
Reviewed by Ryosuke Niwa.

Added dummy platformDescription function needed to compile WK2.

  • platform/efl/ContextMenuEfl.cpp:

(WebCore::ContextMenu::platformDescription):

Note: See TracTimeline for information about the timeline view.