Timeline
Nov 6, 2013:
- 10:41 PM Changeset in webkit [158826] by
-
- 5 edits in trunk/Source
Versioning.
- 10:39 PM Changeset in webkit [158825] by
-
- 1 copy in tags/Safari-538.5
New Tag.
- 10:01 PM Changeset in webkit [158824] by
-
- 5 edits in branches/safari-537.73-branch/Source
Versioning.
- 9:59 PM Changeset in webkit [158823] by
-
- 1 copy in tags/Safari-537.73.4
New Tag.
- 9:38 PM Changeset in webkit [158822] by
-
- 3 edits in trunk/Source/JavaScriptCore
FTL should support CheckFunction
https://bugs.webkit.org/show_bug.cgi?id=123862
Reviewed by Sam Weinig.
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::compileCheckFunction):
- 9:26 PM Changeset in webkit [158821] by
-
- 35 edits8 copies in trunk/Source/WebCore
[MSE] Add MediaSource extensions to AudioTrack, VideoTrack, and TextTrack.
https://bugs.webkit.org/show_bug.cgi?id=123374
Reviewed by Eric Carlson.
No tests added; tests will be added when Mock implementations are added in a future patch.
Add new partial interfaces for added methods on AudioTrack, TextTrack, and VideoTrack:
- Modules/mediasource/AudioTrackMediaSource.idl: Add read-only sourceBuffer attribute.
- Modules/mediasource/TextTrackMediaSource.idl: Ditto.
- Modules/mediasource/VideoTrackMediaSource.idl: Ditto.
- Modules/mediasource/AudioTrackMediaSource.h:
(WebCore::AudioTrackMediaSource::sourceBuffer): Added static wrapper around non-static sourceBuffer().
- Modules/mediasource/TextTrackMediaSource.h:
(WebCore::TextTrackMediaSource::sourceBuffer): Ditto.
- Modules/mediasource/VideoTrackMediaSource.h:
(WebCore::VideoTrackMediaSource::sourceBuffer): Ditto.
Add support for writable kind & language attributes through a custom setter:
- bindings/js/JSAudioTrackCustom.cpp:
(WebCore::JSAudioTrack::setKind):
(WebCore::JSAudioTrack::setLanguage):
- bindings/js/JSTextTrackCustom.cpp:
(WebCore::JSTextTrack::setKind):
(WebCore::JSTextTrack::setLanguage):
- bindings/js/JSVideoTrackCustom.cpp:
(WebCore::JSVideoTrack::setKind):
(WebCore::JSVideoTrack::setLanguage):
- html/track/AudioTrack.idl:
- html/track/TextTrack.idl:
- html/track/VideoTrack.idl:
Add setter methods to the implementation classes:
- html/track/TextTrack.cpp:
(WebCore::TextTrack::TextTrack):
(WebCore::TextTrack::setKind):
(WebCore::TextTrack::setLanguage):
- html/track/TextTrack.h:
- html/track/TrackBase.cpp:
(WebCore::TrackBase::TrackBase):
(WebCore::TrackBase::setKind):
(WebCore::TrackBase::setKindInternal):
- html/track/TrackBase.h:
(WebCore::TrackBase::setLanguage):
(WebCore::TrackBase::sourceBuffer):
(WebCore::TrackBase::setSourceBuffer):
- html/track/VideoTrack.cpp:
(WebCore::VideoTrack::VideoTrack):
(WebCore::VideoTrack::setKind):
(WebCore::VideoTrack::setLanguage):
- html/track/VideoTrack.h:
Implement the unimplemented portions of MediaSource and SourceBuffer:
- Modules/mediasource/MediaSource.cpp:
(WebCore::MediaSource::removeSourceBuffer):
- Modules/mediasource/MediaSourceBase.cpp:
(WebCore::MediaSourceBase::MediaSourceBase):
(WebCore::MediaSourceBase::setPrivateAndOpen):
(WebCore::MediaSourceBase::setReadyState):
(WebCore::MediaSourceBase::attachToElement):
- Modules/mediasource/MediaSourceBase.h:
(WebCore::MediaSourceBase::mediaElement):
- Modules/mediasource/SourceBuffer.cpp:
(WebCore::SourceBuffer::videoTracks):
(WebCore::SourceBuffer::audioTracks):
(WebCore::SourceBuffer::textTracks):
(WebCore::SourceBuffer::sourceBufferPrivateDidAddAudioTrack):
(WebCore::SourceBuffer::sourceBufferPrivateDidAddVideoTrack):
(WebCore::SourceBuffer::sourceBufferPrivateDidAddTextTrack):
(WebCore::SourceBuffer::sourceBufferPrivateDidChangeActiveState):
- Modules/mediasource/SourceBuffer.h:
- Modules/mediasource/SourceBuffer.idl:
Add new files to the project:
- DerivedSources.make:
- WebCore.xcodeproj/project.pbxproj:
And a smorgasbord of other utility changes:
- html/HTMLMediaElement.cpp:
(WebCore::HTMLMediaElement::loadResource): Pass this when attaching.
(WebCore::HTMLMediaElement::mediaPlayerDidAddTextTrack): Ditto.
- html/HTMLMediaSource.h:
- html/track/TextTrackList.cpp:
(TextTrackList::item): Make const.
- html/track/TextTrackList.h:
(WebCore::TextTrackList::lastItem): Added.
- platform/graphics/InbandTextTrackPrivate.h:
(WebCore::InbandTextTrackPrivate::create): Added.
(WebCore::MockSourceBufferPrivate::trackDidChangeEnabled):
- 9:05 PM Changeset in webkit [158820] by
-
- 12 edits in trunk/Source/JavaScriptCore
IC code should handle the call frame register not being the callFrameRegister
https://bugs.webkit.org/show_bug.cgi?id=123865
Reviewed by Geoffrey Garen.
For now, in the FTL, the call frame may be something other than our frame pointer,
since it's an argument passed in according to whatever convention LLVM picks.
This is temporary in two ways - pretty soon the callFrameRegister will be the actual
frame pointer and not some other register, and LLVM will not pass the frame pointer
as an argument to IC's.
- bytecode/StructureStubInfo.h:
- dfg/DFGSpeculativeJIT32_64.cpp:
(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedPutById):
- dfg/DFGSpeculativeJIT64.cpp:
(JSC::DFG::SpeculativeJIT::cachedGetById):
(JSC::DFG::SpeculativeJIT::cachedPutById):
- ftl/FTLCompile.cpp:
(JSC::FTL::fixFunctionBasedOnStackMaps):
- ftl/FTLInlineCacheSize.cpp:
(JSC::FTL::sizeOfGetById):
(JSC::FTL::sizeOfPutById):
- jit/CCallHelpers.h:
(JSC::CCallHelpers::setupArguments):
- jit/JITInlineCacheGenerator.cpp:
(JSC::JITByIdGenerator::JITByIdGenerator):
(JSC::JITPutByIdGenerator::JITPutByIdGenerator):
- jit/JITInlineCacheGenerator.h:
(JSC::JITGetByIdGenerator::JITGetByIdGenerator):
- jit/JITPropertyAccess.cpp:
(JSC::JIT::emit_op_get_by_id):
(JSC::JIT::emit_op_put_by_id):
- jit/JITPropertyAccess32_64.cpp:
(JSC::JIT::emit_op_get_by_id):
(JSC::JIT::emit_op_put_by_id):
- jit/Repatch.cpp:
(JSC::tryBuildGetByIDList):
(JSC::emitPutTransitionStub):
- 8:43 PM Changeset in webkit [158819] by
-
- 2 edits1 move in trunk/Source/WebKit2
Moved UIProcess/Cocoa to UIProcess/API/Cocoa.
Rubber-stamped by Anders Carlsson.
- UIProcess/API/Cocoa: Copied from Source/WebKit2/UIProcess/Cocoa.
- UIProcess/Cocoa: Removed.
- UIProcess/Cocoa/WKBackForwardList.h: Removed.
- UIProcess/Cocoa/WKBackForwardList.mm: Removed.
- UIProcess/Cocoa/WKBackForwardListInternal.h: Removed.
- UIProcess/Cocoa/WKBackForwardListItem.h: Removed.
- UIProcess/Cocoa/WKBackForwardListItem.mm: Removed.
- UIProcess/Cocoa/WKBackForwardListItemInternal.h: Removed.
- UIProcess/Cocoa/WKBrowsingContextHistoryDelegate.h: Removed.
- UIProcess/Cocoa/WKNavigationData.h: Removed.
- UIProcess/Cocoa/WKNavigationData.mm: Removed.
- UIProcess/Cocoa/WKNavigationDataInternal.h: Removed.
- WebKit2.xcodeproj/project.pbxproj:
- 8:22 PM Changeset in webkit [158818] by
-
- 6 edits5 copies253 moves1 add263 deletes in trunk/LayoutTests
Optimize baselines: svg/W3C-SVG-1.1
Unreviewed; run "webkit-patch optimize-baselines svg/W3C-SVG-1.1"
- platform/efl/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt: Removed.
- platform/efl/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt: Removed.
- platform/efl/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt: Removed.
- platform/efl/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt: Removed.
- platform/efl/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-light-04-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-use-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-04-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-05-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-06-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-align-08-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-fonts-03-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-intro-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-intro-02-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-intro-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-intro-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-intro-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-path-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-03-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-06-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-07-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-text-08-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt: Removed.
- platform/gtk/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt: Removed.
- platform/mac/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Removed.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt: Copied from LayoutTests/svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt: Copied from LayoutTests/svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt: Copied from LayoutTests/svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt: Copied from LayoutTests/svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt: Copied from LayoutTests/svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt.
- platform/win-future/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt: Renamed from LayoutTests/svg/W3C-SVG-1.1/struct-dom-06-b-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-02-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-05-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-06-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-80-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt.
- svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt.
- svg/W3C-SVG-1.1/color-prof-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt.
- svg/W3C-SVG-1.1/color-prop-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt.
- svg/W3C-SVG-1.1/color-prop-02-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt.
- svg/W3C-SVG-1.1/color-prop-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt.
- svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt.
- svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt.
- svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt.
- svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt.
- svg/W3C-SVG-1.1/coords-units-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt.
- svg/W3C-SVG-1.1/coords-units-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt.
- svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt.
- svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt.
- svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt.
- svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-blend-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-color-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt.
- svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-conv-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-example-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-image-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-light-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-light-04-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-light-04-f-expected.txt.
- svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt.
- svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt.
- svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt.
- svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt.
- svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-glyph-02-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt.
- svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt.
- svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt.
- svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt.
- svg/W3C-SVG-1.1/interact-events-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt.
- svg/W3C-SVG-1.1/interact-order-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt.
- svg/W3C-SVG-1.1/interact-order-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt.
- svg/W3C-SVG-1.1/interact-order-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt.
- svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt.
- svg/W3C-SVG-1.1/linking-a-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt.
- svg/W3C-SVG-1.1/linking-a-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt.
- svg/W3C-SVG-1.1/linking-a-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt.
- svg/W3C-SVG-1.1/linking-a-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt.
- svg/W3C-SVG-1.1/linking-a-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt.
- svg/W3C-SVG-1.1/linking-a-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt.
- svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt.
- svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt.
- svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt.
- svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt.
- svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt.
- svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt.
- svg/W3C-SVG-1.1/masking-path-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt.
- svg/W3C-SVG-1.1/masking-path-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-path-02-b-expected.txt.
- svg/W3C-SVG-1.1/masking-path-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt.
- svg/W3C-SVG-1.1/masking-path-04-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt.
- svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt.
- svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt.
- svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt.
- svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt.
- svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt.
- svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt.
- svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt.
- svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt.
- svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt.
- svg/W3C-SVG-1.1/painting-render-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt.
- svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt.
- svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt.
- svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt.
- svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt.
- svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-03-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt.
- svg/W3C-SVG-1.1/paths-data-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-08-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-09-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-10-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-12-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-13-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-14-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt.
- svg/W3C-SVG-1.1/paths-data-15-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt.
- svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt.
- svg/W3C-SVG-1.1/render-elems-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt.
- svg/W3C-SVG-1.1/render-elems-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt.
- svg/W3C-SVG-1.1/render-elems-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt.
- svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt.
- svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt.
- svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt.
- svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt.
- svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt.
- svg/W3C-SVG-1.1/script-handle-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt.
- svg/W3C-SVG-1.1/script-handle-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt.
- svg/W3C-SVG-1.1/script-handle-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt.
- svg/W3C-SVG-1.1/script-handle-04-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt.
- svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt.
- svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt.
- svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt.
- svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt.
- svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt.
- svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt.
- svg/W3C-SVG-1.1/struct-dom-01-b-expected.txt:
- svg/W3C-SVG-1.1/struct-dom-02-b-expected.txt:
- svg/W3C-SVG-1.1/struct-dom-03-b-expected.txt:
- svg/W3C-SVG-1.1/struct-dom-04-b-expected.txt:
- svg/W3C-SVG-1.1/struct-dom-05-b-expected.txt:
- svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt.
- svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt.
- svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt.
- svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt.
- svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt.
- svg/W3C-SVG-1.1/struct-group-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt.
- svg/W3C-SVG-1.1/struct-group-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt.
- svg/W3C-SVG-1.1/struct-group-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-02-b-expected.txt.
- svg/W3C-SVG-1.1/struct-image-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-05-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt.
- svg/W3C-SVG-1.1/struct-image-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-08-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-09-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt.
- svg/W3C-SVG-1.1/struct-image-10-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt.
- svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-symbol-01-b-expected.txt.
- svg/W3C-SVG-1.1/struct-use-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-use-01-t-expected.txt.
- svg/W3C-SVG-1.1/struct-use-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt.
- svg/W3C-SVG-1.1/styling-css-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt.
- svg/W3C-SVG-1.1/styling-css-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt.
- svg/W3C-SVG-1.1/styling-css-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt.
- svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt.
- svg/W3C-SVG-1.1/styling-css-05-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt.
- svg/W3C-SVG-1.1/styling-css-06-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt.
- svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt.
- svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt.
- svg/W3C-SVG-1.1/text-align-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-02-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-03-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-04-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-04-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-05-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-05-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-06-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-06-b-expected.txt.
- svg/W3C-SVG-1.1/text-align-08-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-align-08-b-expected.txt.
- svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-deco-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt.
- svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt.
- svg/W3C-SVG-1.1/text-fonts-03-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-fonts-03-t-expected.txt.
- svg/W3C-SVG-1.1/text-intro-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-intro-01-t-expected.txt.
- svg/W3C-SVG-1.1/text-intro-02-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-intro-02-b-expected.txt.
- svg/W3C-SVG-1.1/text-intro-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-intro-03-b-expected.txt.
- svg/W3C-SVG-1.1/text-intro-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-intro-04-t-expected.txt.
- svg/W3C-SVG-1.1/text-intro-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-intro-05-t-expected.txt.
- svg/W3C-SVG-1.1/text-path-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-path-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-text-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-text-03-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-03-b-expected.txt.
- svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-04-t-expected.txt.
- svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-05-t-expected.txt.
- svg/W3C-SVG-1.1/text-text-06-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-06-t-expected.txt.
- svg/W3C-SVG-1.1/text-text-07-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-07-t-expected.txt.
- svg/W3C-SVG-1.1/text-text-08-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-text-08-b-expected.txt.
- svg/W3C-SVG-1.1/text-tref-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt.
- svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt.
- svg/W3C-SVG-1.1/text-ws-01-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt.
- svg/W3C-SVG-1.1/text-ws-02-t-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt.
- svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt.
- 7:53 PM Changeset in webkit [158817] by
-
- 2 edits in trunk/Source/WebKit2
[Gtk][EFL] Fix build after r158759
https://bugs.webkit.org/show_bug.cgi?id=123910
Patch by Brendan Long <b.long@cablelabs.com> on 2013-11-06
Reviewed by Gyuyoung Kim.
- UIProcess/CoordinatedGraphics/CoordinatedDrawingAreaProxy.cpp:
(WebKit::CoordinatedDrawingAreaProxy::incorporateUpdate): Remove call to flashBackingStoreUpdates().
- 7:49 PM Changeset in webkit [158816] by
-
- 2 edits in trunk/Source/WebInspectorUI
Properly null check positionToReveal in ResourceSidebarPanel.prototype.showSourceCode.
https://bugs.webkit.org/show_bug.cgi?id=123921
Reviewed by Joseph Pecoraro.
- UserInterface/ResourceSidebarPanel.js:
(WebInspector.ResourceSidebarPanel.prototype.showSourceCode):
- 7:49 PM Changeset in webkit [158815] by
-
- 3 edits2 adds in trunk
Applied background color is not retained after typing a characters
https://bugs.webkit.org/show_bug.cgi?id=117337
Patch by Vani Hegde <vani.hegde@samsung.com> on 2013-11-06
Reviewed by Ryosuke Niwa.
Source/WebCore:
While deleting a selection, only the inheritable style properties
applied on the selection were saved.
Since background color is considered as noninheritable style property,
on deleting the selection, background color set on it was being lost.
Hence on typing in new text, it would not have the applied
background color set.
Fixed by saving editing preoperties that are already in effect
on a selection before deleting it.
Test: editing/style/background-color-retained.html
- editing/DeleteSelectionCommand.cpp:
(WebCore::DeleteSelectionCommand::saveTypingStyleState):
Modified as to save EditingPropertiesInEffect on a selection before
deleting it.
LayoutTests:
- editing/style/background-color-retained-expected.txt: Added.
- editing/style/background-color-retained.html: Added.
Test to make sure that background color applied on a
selection is retained after deleting the selection.
- 7:49 PM Changeset in webkit [158814] by
-
- 5 edits1 add in trunk/Websites/test-results
New flakiness dashboard should generate JSON in the background process
https://bugs.webkit.org/show_bug.cgi?id=123797
Reviewed by Alexey Proskuryakov.
- config.json: Add defaultBuildWaitInterval used by process-builds.php.
- init-database.sql: Add is_process column to builds table so that we can track of "unprocessed" builds.
- public/admin/process-builds.php: Added.
(process_latest_five_builds): Update flakiness states and generate JSONs for the latest five builds.
We go backwards in the time so that we don't end up infinite looping over a single build that fails.
(main): Call processed_builds with an exponential back off.
- public/api/report.php:
(store_results): No need to return build or builder ids.
(main): Don't update flakiness states or generate JSONs.
- public/include/test-results.php:
(add_build): Take the slave name; it doesn't make any sense to create a build without it and later
updating it in store_test_results.
(store_test_results): Once new test results are added, explicitly mark this build as unprocessed.
- 7:39 PM Changeset in webkit [158813] by
-
- 1 edit40 moves42 deletes in trunk/LayoutTests
Optimize baselines: svg/W3C-I18N
Unreviewed; run "webkit-patch optimize-baselines svg/W3C-I18N"
- platform/efl/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-anchor-no-markup-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-dirLTR-ubOverride-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-direction-ltr-expected.txt: Removed.
- platform/gtk/svg/W3C-I18N/tspan-direction-rtl-expected.txt: Removed.
- svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt.
- svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt.
- svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt.
- svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt.
- svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorEnd-expected.txt.
- svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorMiddle-expected.txt.
- svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirLTR-anchorStart-expected.txt.
- svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorEnd-expected.txt.
- svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorMiddle-expected.txt.
- svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirNone-anchorStart-expected.txt.
- svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorEnd-expected.txt.
- svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorMiddle-expected.txt.
- svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-dirRTL-anchorStart-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorEnd-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorMiddle-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirLTR-anchorStart-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorEnd-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorMiddle-expected.txt.
- svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-inherited-dirRTL-anchorStart-expected.txt.
- svg/W3C-I18N/text-anchor-no-markup-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-anchor-no-markup-expected.txt.
- svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt.
- svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt.
- svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt.
- svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt.
- svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt.
- svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-default-context-expected.txt.
- svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-ltr-context-expected.txt.
- svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirLTR-ubOverride-in-rtl-context-expected.txt.
- svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-default-context-expected.txt.
- svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-ltr-context-expected.txt.
- svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirNone-ubOverride-in-rtl-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-default-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubEmbed-in-ltr-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-default-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubNone-in-ltr-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-default-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-ltr-context-expected.txt.
- svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt.
- svg/W3C-I18N/tspan-direction-ltr-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-direction-ltr-expected.txt.
- svg/W3C-I18N/tspan-direction-rtl-expected.txt: Renamed from LayoutTests/platform/efl/svg/W3C-I18N/tspan-direction-rtl-expected.txt.
- 7:32 PM Changeset in webkit [158812] by
-
- 6 edits in trunk/Source/WebCore
InlineBox: Make paint() and nodeAtPoint() pure virtuals.
<https://webkit.org/b/123937>
...and move the current implementations to InlineElementBox.
All subclasses were already overriding these functions so the move
is completely natural.
Reviewed by Anders Carlsson.
- 7:30 PM Changeset in webkit [158811] by
-
- 8 edits in trunk/Source/WebCore
Nothing should return std::unique_ptr<InlineBox>.
<https://webkit.org/b/123936>
Made RenderBox, RenderLineBreak and RenderListMarker return tightly
typed InlineElementBoxes instead.
Reviewed by Anders Carlsson.
- 7:26 PM Changeset in webkit [158810] by
-
- 4 edits3 copies24 moves2 adds28 deletes in trunk/LayoutTests
Optimize baselines: accessibility
Unreviewed; run "webkit-patch optimize-baselines accessibility"
- accessibility/adjacent-continuations-cause-assertion-failure-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/adjacent-continuations-cause-assertion-failure-expected.txt.
- accessibility/aria-combobox-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-combobox-expected.txt.
- accessibility/aria-fallback-roles-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-fallback-roles-expected.txt.
- accessibility/aria-labelledby-overrides-aria-label-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-labelledby-overrides-aria-label-expected.txt.
- accessibility/aria-menubar-menuitems-expected.txt:
- accessibility/aria-option-role-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-option-role-expected.txt.
- accessibility/aria-roles-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-roles-expected.txt.
- accessibility/aria-tab-role-on-buttons-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-tab-role-on-buttons-expected.txt.
- accessibility/aria-tables-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-tables-expected.txt.
- accessibility/aria-toggle-button-with-title-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/aria-toggle-button-with-title-expected.txt.
- accessibility/canvas-description-and-role-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/canvas-description-and-role-expected.txt.
- accessibility/canvas-fallback-content-expected.txt:
- accessibility/deleting-iframe-destroys-axcache-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/deleting-iframe-destroys-axcache-expected.txt.
- accessibility/div-within-anchors-causes-crash-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/div-within-anchors-causes-crash-expected.txt.
- accessibility/file-upload-button-stringvalue-expected.txt: Renamed from LayoutTests/platform/efl-wk1/accessibility/file-upload-button-stringvalue-expected.txt.
- accessibility/img-alt-tag-only-whitespace-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/img-alt-tag-only-whitespace-expected.txt.
- accessibility/notification-listeners-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/notification-listeners-expected.txt.
- accessibility/paragraph-with-linebreaks-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/paragraph-with-linebreaks-expected.txt.
- accessibility/svg-image-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/svg-image-expected.txt.
- accessibility/svg-remote-element-expected.txt:
- platform/efl-wk1/accessibility/table-attributes-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/table-attributes-expected.txt.
- platform/efl-wk1/accessibility/table-detection-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/table-detection-expected.txt.
- platform/efl-wk1/accessibility/table-one-cell-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/table-one-cell-expected.txt.
- platform/efl-wk1/accessibility/table-sections-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/table-sections-expected.txt.
- platform/efl-wk1/accessibility/table-with-rules-expected.txt: Renamed from LayoutTests/platform/efl/accessibility/table-with-rules-expected.txt.
- platform/efl/accessibility/aria-menubar-menuitems-expected.txt: Removed.
- platform/efl/accessibility/canvas-fallback-content-expected.txt: Removed.
- platform/efl/accessibility/svg-remote-element-expected.txt: Removed.
- platform/gtk-wk1/accessibility/table-attributes-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/table-attributes-expected.txt.
- platform/gtk-wk1/accessibility/table-sections-expected.txt: Renamed from LayoutTests/platform/gtk/accessibility/table-sections-expected.txt.
- platform/gtk/accessibility/adjacent-continuations-cause-assertion-failure-expected.txt: Removed.
- platform/gtk/accessibility/aria-combobox-expected.txt: Removed.
- platform/gtk/accessibility/aria-fallback-roles-expected.txt: Removed.
- platform/gtk/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Removed.
- platform/gtk/accessibility/aria-menubar-menuitems-expected.txt: Removed.
- platform/gtk/accessibility/aria-option-role-expected.txt: Removed.
- platform/gtk/accessibility/aria-roles-expected.txt: Removed.
- platform/gtk/accessibility/aria-tab-role-on-buttons-expected.txt: Removed.
- platform/gtk/accessibility/aria-tables-expected.txt: Removed.
- platform/gtk/accessibility/aria-toggle-button-with-title-expected.txt: Removed.
- platform/gtk/accessibility/canvas-description-and-role-expected.txt: Removed.
- platform/gtk/accessibility/canvas-fallback-content-expected.txt: Removed.
- platform/gtk/accessibility/deleting-iframe-destroys-axcache-expected.txt: Removed.
- platform/gtk/accessibility/div-within-anchors-causes-crash-expected.txt: Removed.
- platform/gtk/accessibility/file-upload-button-stringvalue-expected.txt: Removed.
- platform/gtk/accessibility/img-alt-tag-only-whitespace-expected.txt: Removed.
- platform/gtk/accessibility/notification-listeners-expected.txt: Removed.
- platform/gtk/accessibility/paragraph-with-linebreaks-expected.txt: Removed.
- platform/gtk/accessibility/svg-image-expected.txt: Removed.
- platform/gtk/accessibility/svg-remote-element-expected.txt: Removed.
- platform/mac/accessibility/aria-fallback-roles-expected.txt: Removed.
- platform/mac/accessibility/aria-menubar-menuitems-expected.txt: Copied from LayoutTests/accessibility/aria-menubar-menuitems-expected.txt.
- platform/mac/accessibility/aria-roles-expected.txt: Removed.
- platform/mac/accessibility/aria-tables-expected.txt: Removed.
- platform/mac/accessibility/canvas-fallback-content-expected.txt: Copied from LayoutTests/accessibility/canvas-fallback-content-expected.txt.
- platform/mac/accessibility/img-alt-tag-only-whitespace-expected.txt: Removed.
- platform/mac/accessibility/svg-image-expected.txt: Removed.
- platform/win-future/accessibility/svg-remote-element-expected.txt: Copied from LayoutTests/accessibility/svg-remote-element-expected.txt.
- 6:47 PM Changeset in webkit [158809] by
-
- 6 edits6 copies7 moves11 adds18 deletes in trunk/LayoutTests
Optimize baselines: media
Unreviewed; run "webkit-patch optimize-baselines media"
- media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt:
- media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt:
- media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt:
- media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt:
- media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt:
- media/media-can-play-webm-expected.txt: Renamed from LayoutTests/platform/efl/media/media-can-play-webm-expected.txt.
- media/video-controls-visible-audio-only-expected.txt: Renamed from LayoutTests/platform/efl/media/video-controls-visible-audio-only-expected.txt.
- platform/efl-wk2/media/video-layer-crash-expected.png: Renamed from LayoutTests/platform/efl/media/video-layer-crash-expected.png.
- platform/efl-wk2/media/video-transformed-expected.png: Renamed from LayoutTests/platform/efl/media/video-transformed-expected.png.
- platform/efl-wk2/media/video-zoom-expected.png: Renamed from LayoutTests/platform/efl/media/video-zoom-expected.png.
- platform/efl/media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt: Removed.
- platform/efl/media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt: Removed.
- platform/gtk/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt: Removed.
- platform/gtk/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt: Removed.
- platform/gtk/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt: Removed.
- platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt: Removed.
- platform/gtk/media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt: Removed.
- platform/gtk/media/media-can-play-webm-expected.txt: Removed.
- platform/gtk/media/video-controls-visible-audio-only-expected.txt: Removed.
- platform/mac/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt: Copied from LayoutTests/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt.
- platform/mac/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt: Copied from LayoutTests/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt.
- platform/mac/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt: Copied from LayoutTests/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt.
- platform/mac/media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt: Copied from LayoutTests/media/W3C/video/canPlayType/canPlayType_two_implies_one_5-expected.txt.
- platform/mac/media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt: Copied from LayoutTests/media/W3C/video/canPlayType/canPlayType_two_implies_one_6-expected.txt.
- platform/mac/media/video-controls-visible-audio-only-expected.txt: Removed.
- platform/win-7sp0/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt: Renamed from LayoutTests/platform/efl/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt.
- platform/win-7sp0/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt: Renamed from LayoutTests/platform/efl/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt.
- platform/win-7sp0/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt: Renamed from LayoutTests/platform/efl/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt.
- platform/win/media/W3C/audio/canPlayType/canPlayType_supported_but_no_codecs_parameter_2-expected.txt: Removed.
- platform/win/media/W3C/video/canPlayType/canPlayType_codecs_order_3-expected.txt: Removed.
- platform/win/media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_3-expected.txt: Removed.
- platform/win/media/media-can-play-ogg-expected.txt: Removed.
- platform/win/media/video-colorspace-yuv420-expected.txt: Removed.
- platform/win/media/video-colorspace-yuv422-expected.txt: Removed.
- platform/win/media/video-size-intrinsic-scale-expected.txt: Removed.
- 6:02 PM Changeset in webkit [158808] by
-
- 4 edits in trunk/Source/WebKit2
Remote Layer Tree: RemoteLayerTreeDrawingArea doesn't make layers for fixedpos elements
https://bugs.webkit.org/show_bug.cgi?id=123943
Reviewed by Simon Fraser.
- WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.h:
- WebProcess/WebPage/mac/RemoteLayerTreeDrawingArea.mm:
(WebKit::RemoteLayerTreeDrawingArea::updatePreferences):
Make fixed position elements create compositing layers and stacking contexts
in the RemoteLayerTreeDrawingArea just like they do in TiledCoreAnimationDrawingArea.
- WebProcess/WebPage/mac/TiledCoreAnimationDrawingArea.mm:
(WebKit::TiledCoreAnimationDrawingArea::updatePreferences):
Fix the comment, since we have long since achieved this goal.
- 5:41 PM Changeset in webkit [158807] by
-
- 2 edits in trunk/Source/ThirdParty/ANGLE
kTraceBufferLen is unused in default builds
https://bugs.webkit.org/show_bug.cgi?id=123941
<rdar://problem/15409804>
Reviewed by Tim Horton.
kTraceBufferLen is not used in debug.cpp if TRACE_ENABLED is
not defined. This causes a warning in newer builds of clang.
For now, skip warnings on unused variables until we
update from ANGLE.
- src/compiler/debug.cpp: Add unused-variable ignore pragma.
- 5:20 PM Changeset in webkit [158806] by
-
- 2 edits in trunk/Source/WebKit2
Implement enough functionality so that NSURLRequest objects can be decoded
https://bugs.webkit.org/show_bug.cgi?id=123942
Reviewed by Andreas Kling.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(-[WKRemoteObjectEncoder requiresSecureCoding]):
Add new method. Return YES.
(-[WKRemoteObjectDecoder decodeValueOfObjCType:at:]):
Add new method. This currently only handles 'i', but we'll add more variants as needed.
(-[WKRemoteObjectDecoder decodeBoolForKey:]):
Get a WebBoolean from the dictionary and return its value.
- 5:12 PM Changeset in webkit [158805] by
-
- 3 edits in trunk/Source/WebKit2
Encoded object stream should be sequential
https://bugs.webkit.org/show_bug.cgi?id=123939
Reviewed by Andreas Kling.
Reserve space in the object stream for objects that are to be encoded, otherwise
the object stream will not be sequential.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeToObjectStream):
- Shared/ImmutableArray.h:
(WebKit::ImmutableArray::entries):
- 4:48 PM Changeset in webkit [158804] by
-
- 2 edits in trunk/Source/WebKit2
Allow property list classes to exist in containers
https://bugs.webkit.org/show_bug.cgi?id=123938
Reviewed by Andreas Kling.
- Shared/API/Cocoa/WKRemoteObjectInterface.mm:
(isContainerClass):
Return whether a given class is a container class.
(propertyListClasses):
Return the set of property list classes.
(allowedArgumentClassesForMethod):
Allow all property list classes for container type arguments.
- 4:39 PM Changeset in webkit [158803] by
-
- 20 edits5 adds in trunk
[iOS] Upstream Letterpress effect
https://bugs.webkit.org/show_bug.cgi?id=123932
Reviewed by Sam Weinig.
Source/JavaScriptCore:
Add feature define ENABLE_LETTERPRESS disabled by default. We only enable
letterpress on iOS.
- Configurations/FeatureDefines.xcconfig:
Source/WebCore:
Test: platform/iphone-simulator/iphone/getComputedStyle-text-decoration-letterpress.html
- Configurations/FeatureDefines.xcconfig: Add feature define ENABLE_LETTERPRESS disabled
by default. We only enable letterpress on iOS.
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::renderTextDecorationFlagsToCSSValue): Add support for CSS value -webkit-letterpress.
- css/CSSParser.cpp:
(WebCore::CSSParser::parseTextDecoration): Ditto.
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::operator TextDecoration): Ditto.
- css/CSSValueKeywords.in: Added CSS value -webkit-letterpress.
- platform/graphics/GraphicsContext.h:
- platform/graphics/mac/FontMac.mm:
(WebCore::fillVectorWithHorizontalGlyphPositions): Added.
(WebCore::shouldUseLetterpressEffect): Added.
(WebCore::showLetterpressedGlyphsWithAdvances): Added.
(WebCore::showGlyphsWithAdvances): Modified to call showLetterpressedGlyphsWithAdvances()
to show a letterpressed glyph. I also included additional iOS-specific changes.
(WebCore::Font::drawGlyphs):
- rendering/TextPaintStyle.cpp:
(WebCore::TextPaintStyle::TextPaintStyle):
(WebCore::computeTextPaintStyle): Modified to compute letterpress effect style.
(WebCore::updateGraphicsContext): Modified to apply/unapply letterpress effect drawing mode.
- rendering/TextPaintStyle.h:
- rendering/style/RenderStyleConstants.h:
Source/WebKit/mac:
Add feature define ENABLE_LETTERPRESS disabled by default. We only enable
letterpress on iOS.
- Configurations/FeatureDefines.xcconfig:
Source/WebKit2:
Add feature define ENABLE_LETTERPRESS disabled by default. We only enable
letterpress on iOS.
- Configurations/FeatureDefines.xcconfig:
Source/WTF:
Add feature define ENABLE_LETTERPRESS disabled by default. We only enable
letterpress on iOS.
- wtf/FeatureDefines.h:
LayoutTests:
- platform/iphone-simulator/iphone/getComputedStyle-text-decoration-letterpress-expected.txt: Added.
- platform/iphone-simulator/iphone/getComputedStyle-text-decoration-letterpress.html: Added.
- platform/iphone-simulator/iphone/resources/getComputedStyle-text-decoration-letterpress.js: Added.
- 4:20 PM Changeset in webkit [158802] by
-
- 3 edits in trunk/Source/WebCore
Crash in SliderThumbElement::dragFrom
https://bugs.webkit.org/show_bug.cgi?id=123873
Reviewed by Sam Weinig.
Moved Ref.
- html/RangeInputType.cpp:
(WebCore::RangeInputType::handleMouseDownEvent):
- html/shadow/SliderThumbElement.cpp:
(WebCore::SliderThumbElement::dragFrom):
- 4:04 PM Changeset in webkit [158801] by
-
- 5 edits1 add in trunk/LayoutTests
LayoutTests/media/track/track-forced-subtitles-in-band.html always times out
https://bugs.webkit.org/show_bug.cgi?id=123412
Reviewed by Jer Noble.
- media/content/CC+Subtitles.mov: Added.
- media/track/track-forced-subtitles-in-band.html: Fail loudly if the caption track menu is
not found by the helper function. Wait for both 'seeked' and 'cuechange' events before
checking activeCues.
- media/trackmenu-test.js:
(getTrackListElement): Correct the caption menu pseudo-id.
(trackMenuList): Complain when the track menu is not found.
- platform/mac/TestExpectations: Remove track-forced-subtitles-in-band.html.
- 4:00 PM Changeset in webkit [158800] by
-
- 2 edits in trunk/Source/WebCore
Cleanup FontMac.mm
https://bugs.webkit.org/show_bug.cgi?id=123928
Reviewed by Andy Estes.
- platform/graphics/mac/FontMac.mm:
(WebCore::showGlyphsWithAdvances): Inline the value of variable isVertical as we
reference it exactly once and its value is sufficiently clear.
(WebCore::Font::drawGlyphs): Remove default case in switch block so that the compiler
checks that all cases are covered. Move definition of platformData to the top of the
function and use it whenever we want to access the platform font data
- 3:53 PM Changeset in webkit [158799] by
-
- 2 edits in trunk/Source/WebKit2
Fixed multiple API test failures after r158764.
Reviewed by Sam Weinig.
- UIProcess/API/mac/WKBrowsingContextController.mm:
(setUpPagePolicyClient): If the delegate isn’t set or doesn’t respond to a selector, respond
with WKFramePolicyListenerUse().
- 3:08 PM Changeset in webkit [158798] by
-
- 5 edits in trunk/Source/WebCore
[WebGL] We should not allow generateMipMap on compressed textures
https://bugs.webkit.org/show_bug.cgi?id=123915
<rdar://problem/15201274>
Reviewed by Dean Jackson.
Found by existing conformance/extensions/webgl-compressed-texture-s3tc.html
- html/canvas/WebGLRenderingContext.cpp:
(WebCore::WebGLRenderingContext::compressedTexImage2D): Set compressed flag.
(WebCore::WebGLRenderingContext::compressedTexSubImage2D): Ditto.
(WebCore::WebGLRenderingContext::generateMipmap): For Apple builds, check state
of compressed flag and generate appropriate WebGL error if necessary.
- html/canvas/WebGLTexture.cpp:
(WebCore::WebGLTexture::WebGLTexture): Set compressed flag to false by default
(WebCore::WebGLTexture::isCompressed): Added
(WebCore::WebGLTexture::setCompressed): Added
- html/canvas/WebGLTexture.h:
- platform/graphics/opengl/GraphicsContext3DOpenGLCommon.cpp:
(WebCore::GraphicsContext3D::generateMipmap): Switch implementation to use proper
glGenerateMipmaps, rather than the glGenerateMipmapsEXT method.
- 3:04 PM Changeset in webkit [158797] by
-
- 2 edits in trunk/Source/WebKit2
Move allowed classes handling to decodeObject
https://bugs.webkit.org/show_bug.cgi?id=123930
Reviewed by Andreas Kling.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(decodeObjectFromObjectStream):
Pass allowed classes through to decodeObject.
(decodeObject):
Update to take an NSSet of allowed classes. If the set is nil, use the current set.
(-[WKRemoteObjectDecoder decodeObjectOfClasses:forKey:]):
Pass classes to decodeObject.
- 2:44 PM Changeset in webkit [158796] by
-
- 4 edits in trunk/Source/WebCore
Web Inspector: Changes to CodeGeneratorInspectorStrings.py should rebuild inspector generated files
https://bugs.webkit.org/show_bug.cgi?id=123925
Patch by Joseph Pecoraro <Joseph Pecoraro> on 2013-11-06
Reviewed by Timothy Hatcher.
- CMakeLists.txt:
- DerivedSources.make:
- GNUmakefile.am:
- 2:40 PM Changeset in webkit [158795] by
-
- 2 edits in branches/safari-537.73-branch/Source/WebInspectorUI
Merged rr157966. <rdar://problem/15406689>
- 2:37 PM Changeset in webkit [158794] by
-
- 3 edits in branches/safari-537.73-branch/Source/WebInspectorUI
Merged r156675. <rdar://problem/15406691>
- 2:37 PM Changeset in webkit [158793] by
-
- 14 edits9 adds in trunk
Support iteration of the Arguments object
https://bugs.webkit.org/show_bug.cgi?id=123835
Reviewed by Mark Lam.
Source/JavaScriptCore:
Add an ArgumentsIterator object, and associated classes so that we can support
iteration of the arguments object.
This is a largely mechanical patch. The only gnarliness is in the
logic to avoid reifying the Arguments object in for(... of arguments)
scenarios.
- GNUmakefile.list.am:
- JavaScriptCore.xcodeproj/project.pbxproj:
- bytecompiler/BytecodeGenerator.cpp:
(JSC::BytecodeGenerator::emitEnumeration):
- runtime/Arguments.cpp:
(JSC::Arguments::getOwnPropertySlot):
(JSC::argumentsFuncIterator):
- runtime/Arguments.h:
- runtime/ArgumentsIteratorConstructor.cpp: Added.
(JSC::ArgumentsIteratorConstructor::finishCreation):
- runtime/ArgumentsIteratorConstructor.h: Added.
(JSC::ArgumentsIteratorConstructor::create):
(JSC::ArgumentsIteratorConstructor::createStructure):
(JSC::ArgumentsIteratorConstructor::ArgumentsIteratorConstructor):
- runtime/ArgumentsIteratorPrototype.cpp: Added.
(JSC::ArgumentsIteratorPrototype::finishCreation):
(JSC::argumentsIteratorPrototypeFuncIterator):
(JSC::argumentsIteratorPrototypeFuncNext):
- runtime/ArgumentsIteratorPrototype.h: Added.
(JSC::ArgumentsIteratorPrototype::create):
(JSC::ArgumentsIteratorPrototype::createStructure):
(JSC::ArgumentsIteratorPrototype::ArgumentsIteratorPrototype):
- runtime/CommonIdentifiers.h:
- runtime/JSArgumentsIterator.cpp: Added.
(JSC::JSArgumentsIterator::finishCreation):
- runtime/JSArgumentsIterator.h: Added.
(JSC::JSArgumentsIterator::createStructure):
(JSC::JSArgumentsIterator::create):
(JSC::JSArgumentsIterator::next):
(JSC::JSArgumentsIterator::JSArgumentsIterator):
- runtime/JSArrayIterator.cpp:
(JSC::createIteratorResult):
- runtime/JSGlobalObject.cpp:
- runtime/JSGlobalObject.h:
LayoutTests:
Add test cases
- js/arguments-iterator-expected.txt: Added.
- js/arguments-iterator.html: Added.
- js/script-tests/arguments-iterator.js: Added.
(shouldThrow.test):
(testAlias):
(testStrict):
(testReifiedArguments):
(testOverwrittenArguments):
(testNullArguments):
(testNonArrayLikeArguments):
- 2:37 PM Changeset in webkit [158792] by
-
- 2 edits in trunk/Source/WebKit2
Fix EFL build after r158753
https://bugs.webkit.org/show_bug.cgi?id=123923
r158753 renamed WKNavigationData.h as WKNavigationDataRef.h, so
update it in UIProcess/API/efl/ewk_navigation_data_private.h.
Patch by Sergio Correia <Sergio Correia> on 2013-11-06
Reviewed by Csaba Osztrogonác.
- UIProcess/API/efl/ewk_navigation_data_private.h:
- 2:31 PM Changeset in webkit [158791] by
-
- 4 edits in branches/safari-537.73-branch/Source/WebInspectorUI
Merged r154550. <rdar://problem/15406685>
- 2:29 PM Changeset in webkit [158790] by
-
- 2 edits in trunk/Source/WebInspectorUI
Fix the display of query parameters when the value is missing.
https://bugs.webkit.org/show_bug.cgi?id=123920
Reviewed by Joseph Pecoraro.
- UserInterface/ResourceDetailsSidebarPanel.js:
(WebInspector.ResourceDetailsSidebarPanel.prototype._createNameValueDataGrid):
- 2:27 PM Changeset in webkit [158789] by
-
- 1 edit in branches/safari-537.73-branch/Source/WebInspectorUI/UserInterface/External/CodeMirror/codemirror.js
Merge patch for <rdar://problem/15406685>.
- 2:08 PM Changeset in webkit [158788] by
-
- 8 edits1 add in trunk/Source/WebInspectorUI
Web Inspector: CSS Regions: When a flow is clicked the content of flow needs to be displayed
https://bugs.webkit.org/show_bug.cgi?id=122927
Reviewed by Joseph Pecoraro.
ContentFlowTreeContentView is now used to display the content nodes of a ContentFlow. It is
very similar to the DOMTreeContentView class, but can handle multiple root nodes.
- UserInterface/ContentFlowTreeContentView.js: Added.
(WebInspector.ContentFlowTreeContentView):
(WebInspector.ContentFlowTreeContentView.prototype.get selectionPathComponents):
(WebInspector.ContentFlowTreeContentView.prototype.updateLayout):
(WebInspector.ContentFlowTreeContentView.prototype.shown):
(WebInspector.ContentFlowTreeContentView.prototype.hidden):
(WebInspector.ContentFlowTreeContentView.prototype.closed):
(WebInspector.ContentFlowTreeContentView.prototype._selectedNodeDidChange):
(WebInspector.ContentFlowTreeContentView.prototype._pathComponentSelected):
(WebInspector.ContentFlowTreeContentView.prototype._createContentNodeTree):
(WebInspector.ContentFlowTreeContentView.prototype._createContentTrees):
(WebInspector.ContentFlowTreeContentView.prototype._contentNodeWasAdded):
(WebInspector.ContentFlowTreeContentView.prototype._contentNodeWasRemoved):
- UserInterface/ContentView.js:
(WebInspector.ContentView):
(WebInspector.ContentView.isViewable):
- UserInterface/DOMTreeElement.js:
(WebInspector.DOMTreeElement.prototype.ondeselect): We need to remove the selected "dom node"
so that the element is not going to stay selected after the we move to a different DOM tree.
- UserInterface/DOMTreeOutline.js:
(WebInspector.DOMTreeOutline.prototype.selectDOMNode):
- UserInterface/Main.html:
- UserInterface/Main.js:
(WebInspector.sidebarPanelForRepresentedObject):
- UserInterface/ResourceSidebarPanel.js:
(WebInspector.ResourceSidebarPanel.prototype._treeElementSelected):
- 2:04 PM Changeset in webkit [158787] by
-
- 17 edits4 copies in branches/safari-537.73-branch
Merged r158617. <rdar://problem/15391030>
- 1:57 PM Changeset in webkit [158786] by
-
- 2 edits in trunk/LayoutTests
Fix test case
- 1:54 PM Changeset in webkit [158785] by
-
- 2 edits in trunk/LayoutTests
Remove the flaky test expectation after r158720 now that the test is not flaky.
- platform/mac/TestExpectations:
- 1:52 PM Changeset in webkit [158784] by
-
- 2 edits in trunk/Source/WebKit2
Implement more decoding methods
https://bugs.webkit.org/show_bug.cgi?id=123922
Reviewed by Dan Bernstein.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(-[WKRemoteObjectDecoder decodeObjectForKey:]):
Call decodeObjectOfClasses:forKey: passing nil as the classes set.
(-[WKRemoteObjectDecoder decodeInt64ForKey:]):
Try to get a WebUInt64 and return its value.
(-[WKRemoteObjectDecoder decodeDoubleForKey:]):
Try to get a WebDouble and return its value.
(-[WKRemoteObjectDecoder decodeBytesForKey:returnedLength:]):
Move this method next to the other decoding methods.
(-[WKRemoteObjectDecoder requiresSecureCoding]):
Ditto.
- 1:39 PM Changeset in webkit [158783] by
-
- 2 edits in trunk/Source/WTF
Disable "unused local typedefs" warning for GCC 4.7
https://bugs.webkit.org/show_bug.cgi?id=123913
Patch by Nick Diego Yamane <nick.yamane@openbossa.org> on 2013-11-06
Reviewed by Martin Robinson.
That warning was actually introduced in gcc 4.7.0.
See: http://gcc.gnu.org/gcc-4.7/changes.html
- wtf/Compiler.h:
- 1:31 PM Changeset in webkit [158782] by
-
- 6 edits in trunk/Source/WebKit2
[Gtk][EFL] Fix build after r158759
https://bugs.webkit.org/show_bug.cgi?id=123910
Patch by Brendan Long <b.long@cablelabs.com> on 2013-11-06
Reviewed by Gustavo Noronha Silva.
- UIProcess/API/gtk/PageClientImpl.cpp: Remove flashBackingStoreUpdates().
- UIProcess/API/gtk/PageClientImpl.h: Same.
- UIProcess/CoordinatedGraphics/WebView.cpp: Same.
- UIProcess/CoordinatedGraphics/WebView.h: Same.
- UIProcess/DrawingAreaProxyImpl.cpp:
(WebKit::DrawingAreaProxyImpl::incorporateUpdate): Don't call flashBackingStoreUpdates().
- 1:21 PM Changeset in webkit [158781] by
-
- 2 edits in trunk/Source/WebKit2
Unreviewed Mac build fix; include ResourceResponse.
- Shared/WebNavigationDataStore.h:
- 1:17 PM Changeset in webkit [158780] by
-
- 3 edits in trunk/Source/WebKit2
Decode invocation arguments
https://bugs.webkit.org/show_bug.cgi?id=123917
Reviewed by Sam Weinig.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(-[WKRemoteObjectDecoder initWithInterface:rootObjectDictionary:WebKit::]):
Initialize the object stream.
(decodeObjectFromObjectStream):
Check that we're not reading past the end of the stream, then decode the object.
(decodeInvocationArguments):
Decode arguments from the object stream.
(decodeInvocation):
Call decodeInvocationArguments and set up the selector argument.
- Shared/ImmutableArray.h:
(WebKit::ImmutableArray::at):
(WebKit::ImmutableArray::size):
(WebKit::ImmutableArray::entries):
Constify.
- 12:56 PM Changeset in webkit [158779] by
-
- 6 edits in trunk/Source/WebKit2
[Cocoa] Add -[WKNavigationData response]
https://bugs.webkit.org/show_bug.cgi?id=123918
Reviewed by Sam Weinig.
- Shared/WebNavigationDataStore.h: Added a ResourceResponse data member.
(WebKit::WebNavigationDataStore::encode): Encode the response.
(WebKit::WebNavigationDataStore::decode): Decode the response.
- UIProcess/Cocoa/WKNavigationData.h: Declared new property.
- UIProcess/Cocoa/WKNavigationData.mm:
(-[WKNavigationData response]): Added.
- UIProcess/WebNavigationData.h:
(WebKit::WebNavigationData::response): Added.
- WebProcess/WebCoreSupport/WebFrameLoaderClient.cpp:
(WebKit::WebFrameLoaderClient::updateGlobalHistory): Set the response in the data store.
- 12:49 PM Changeset in webkit [158778] by
-
- 2 edits in branches/safari-537.73-branch/Source/WebCore
Merged r158629. <rdar://problem/15391028>
- 12:49 PM Changeset in webkit [158777] by
-
- 4 edits in trunk/Source/WebCore
Rename region line offset methods
https://bugs.webkit.org/show_bug.cgi?id=123897
Reviewed by Sam Weinig.
Because of the large number of overloads on the line offset methods,
it is very hard to read code using them, which also makes it harder to
move them out of RenderBlock. This patch renames the methods that take
a region as an argument to make it clearer when looking at the code
how the differ from the ones that don't.
No new tests, no behavior change.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::computeStartPositionDeltaForChildAvoidingFloats):
- rendering/RenderBlock.h:
(WebCore::RenderBlock::availableLogicalWidthForLineInRegion):
(WebCore::RenderBlock::logicalRightOffsetForLineInRegion):
(WebCore::RenderBlock::logicalLeftOffsetForLineInRegion):
(WebCore::RenderBlock::startOffsetForLineInRegion):
(WebCore::RenderBlock::endOffsetForLineInRegion):
(WebCore::RenderBlock::availableLogicalWidthForLine):
- rendering/RenderBox.cpp:
(WebCore::RenderBox::shrinkLogicalWidthToAvoidFloats):
(WebCore::RenderBox::containingBlockAvailableLineWidthInRegion):
- 12:49 PM Changeset in webkit [158776] by
-
- 3 edits in trunk/Source/WebKit2
Fix the 32-bit build.
- UIProcess/API/mac/WKBrowsingContextController.h:
- UIProcess/API/mac/WKBrowsingContextController.mm:
(-[WKBrowsingContextController dealloc]):
(-[WKBrowsingContextController _initWithPageRef:]):
- 12:48 PM Changeset in webkit [158775] by
-
- 5 edits in trunk/Source/WebKit2
[Cocoa] Add -[WKBrowsingContextController unreachableURL]
https://bugs.webkit.org/show_bug.cgi?id=123909
Reviewed by Anders Carlsson.
- UIProcess/API/mac/WKBrowsingContextController.h: Declared unreachableURL property.
- UIProcess/API/mac/WKBrowsingContextController.mm:
(-[WKBrowsingContextController unreachableURL]): Added.
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::unreachableURL): Added.
- UIProcess/WebPageProxy.h:
- 12:38 PM Changeset in webkit [158774] by
-
- 8 edits in trunk/Source/WebCore
HTMLCollection should use CollectionIndexCache
https://bugs.webkit.org/show_bug.cgi?id=123906
Reviewed by Ryosuke Niwa.
More code sharing.
- bindings/js/JSDOMWindowCustom.cpp:
(WebCore::namedItemGetter):
- bindings/js/JSHTMLDocumentCustom.cpp:
(WebCore::JSHTMLDocument::nameGetter):
- dom/ChildNodeList.h:
- dom/CollectionIndexCache.h:
(WebCore::::nodeBeforeCached):
(WebCore::::nodeAfterCached):
(WebCore::::nodeAt):
Add a mechanism for disabling use of backward traversal.
- dom/LiveNodeList.h:
(WebCore::LiveNodeList::collectionCanTraverseBackward):
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::isMatchingElement):
(WebCore::HTMLCollection::iterateForPreviousElement):
(WebCore::firstMatchingElement):
(WebCore::nextMatchingElement):
(WebCore::HTMLCollection::length):
(WebCore::HTMLCollection::item):
(WebCore::nameShouldBeVisibleInDocumentAll):
(WebCore::firstMatchingChildElement):
(WebCore::nextMatchingSiblingElement):
(WebCore::HTMLCollection::firstElement):
(WebCore::HTMLCollection::traverseForward):
(WebCore::HTMLCollection::collectionFirst):
(WebCore::HTMLCollection::collectionLast):
(WebCore::HTMLCollection::collectionTraverseForward):
(WebCore::HTMLCollection::collectionTraverseBackward):
(WebCore::HTMLCollection::invalidateCache):
(WebCore::HTMLCollection::namedItem):
(WebCore::HTMLCollection::updateNameCache):
- html/HTMLCollection.h:
(WebCore::HTMLCollection::collectionCanTraverseBackward):
Disable use of backward traversal for collections that use custom traversal.
- 12:32 PM Changeset in webkit [158773] by
-
- 4 edits3 adds in trunk
DFG CheckArray(NonArray) should prove that the child isn't an array
https://bugs.webkit.org/show_bug.cgi?id=123911
<rdar://problem/15202803>
Reviewed by Mark Hahnenberg.
Source/JavaScriptCore:
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::jumpSlowForUnwantedArrayMode):
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::isArrayType):
LayoutTests:
- js/dfg-check-array-non-array-expected.txt: Added.
- js/dfg-check-array-non-array.html: Added.
- js/script-tests/dfg-check-array-non-array.js: Added.
(foo):
(bar):
(baz):
- 12:31 PM Changeset in webkit [158772] by
-
- 2 edits in trunk/Source/WebKit2
Encode parameters as objects
https://bugs.webkit.org/show_bug.cgi?id=123912
Reviewed by Beth Dakin.
We want to ensure that the objects have the right types when decoded, so just encode them as objects.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeInvocation):
(-[WKRemoteObjectEncoder encodeValueOfObjCType:at:]):
- 12:27 PM Changeset in webkit [158771] by
-
- 6 edits in branches/safari-537.73-branch/Source/WebKit2
Merged r154763. <rdar://problem/15401612>
- 12:23 PM Changeset in webkit [158770] by
-
- 2 edits in branches/safari-537.73-branch/LayoutTests
Merged r158766. <rdar://problem/15390971>
- 12:22 PM Changeset in webkit [158769] by
-
- 5 edits in branches/safari-537.73-branch/Source/WebCore
Merged r155997. <rdar://problem/15390971>
- 12:20 PM Changeset in webkit [158768] by
-
- 3 edits in branches/safari-537.73-branch/WebKitLibraries
Merged r155996. <rdar://problem/15390971>
- 12:16 PM Changeset in webkit [158767] by
-
- 2 edits in trunk/Tools
Unreviewed webkitpy unit test fix; update baselines after r158765
- Scripts/webkitpy/port/win_unittest.py:
(WinPortTest.test_baseline_search_path):
- 12:10 PM Changeset in webkit [158766] by
-
- 2 edits in branches/safari-537.60-branch/LayoutTests
Merged r154392. <rdar://problem/15390971>
- 11:53 AM Changeset in webkit [158765] by
-
- 2 edits in trunk/Tools
[Win] run-webkit-tests on the win platform should fall back to mac-mountainlion, not mac-lion.
https://bugs.webkit.org/show_bug.cgi?id=123905
Reviewed by Brent Fulgham.
Now that the mac-lion results have been removed, the win port should fall back to
the mac-mountainlion results.
- Scripts/webkitpy/port/win.py:
(WinPort.default_baseline_search_path):
- 11:42 AM Changeset in webkit [158764] by
-
- 5 edits1 add in trunk/Source/WebKit2
Add WKBrowsingContextPolicyDelegate
https://bugs.webkit.org/show_bug.cgi?id=123904
Reviewed by Anders Carlsson.
- UIProcess/API/mac/WKBrowsingContextController.h:
- UIProcess/API/mac/WKBrowsingContextController.mm:
Implement a WKPagePolicyClient in terms of the new WKBrowsingContextPolicyDelegate protocol.
- UIProcess/API/mac/WKBrowsingContextPolicyDelegate.h:
Added.
- UIProcess/API/mac/WebKit2.h:
Add new #include of WKBrowsingContextPolicyDelegate.h
- WebKit2.xcodeproj/project.pbxproj:
Add new file.
- 11:23 AM Changeset in webkit [158763] by
-
- 3 edits in trunk/Source/WebKit2
WKRemoteObjectInterface should keep track of allowed decodable classes
https://bugs.webkit.org/show_bug.cgi?id=123903
Reviewed by Sam Weinig.
- Shared/API/Cocoa/WKRemoteObjectInterface.mm:
(allowedArgumentClassesForMethod):
Helper function that returns a vector of sets of allowed classes for each method argument.
(initializeAllowedArgumentClasses):
Iterate over the methods in the protocol, get the extended method type encoding and create an
NSMethodSignature from it. Finally, pass the signature to allowedArgumentClassesForMethod.
(initializeAllowedArgumentClasses):
Call the other initializeAllowedArgumentClasses twice, once for required methods,
and once for optional methods.
(-[WKRemoteObjectInterface initWithProtocol:identifier:]):
Call initializeAllowedArgumentClasses.
(-[WKRemoteObjectInterface _allowedArgumentClassesForSelector:]):
Add new getter.
- Shared/API/Cocoa/WKRemoteObjectInterfaceInternal.h:
- 11:21 AM Changeset in webkit [158762] by
-
- 4 edits in trunk/Source/JavaScriptCore
JSExport doesn't support constructors
https://bugs.webkit.org/show_bug.cgi?id=123380
Reviewed by Geoffrey Garen.
Needed another linked-on-or-after check for when we're deciding whether
we should copy over init family methods.
Factored out the link time checks into a separate function so that they can be cached.
Factored out the check for init-family method selectors into helper function and changed it to
match the description in the clang docs, namely that there can be underscores at the beginning
and the first letter after 'init' part of the selector (if there is one) must be a capital letter.
Updated tests to make sure we don't treat "initialize" as an init-family method and that we do
treat "_init" as an init-family method.
- API/JSWrapperMap.h:
- API/JSWrapperMap.mm:
(isInitFamilyMethod):
(shouldSkipMethodWithName):
(copyMethodsToObject):
(allocateConstructorForCustomClass):
(supportsInitMethodConstructors):
- API/tests/testapi.mm:
(-[ClassA initialize]):
(-[ClassD initialize]):
- 11:01 AM Changeset in webkit [158761] by
-
- 2 edits in trunk/Tools
Fix a Mountain Lion test failure.
NSURLRequest doesn't conform to NSSecureCoding on Mountain Lion, so don't try to test encoding it.
- TestWebKitAPI/Tests/WebKit2ObjC/WKRemoteObjectRegistry.mm:
(TestWebKitAPI::TEST):
- 10:54 AM WebInspector edited by
- (diff)
- 10:53 AM Changeset in webkit [158760] by
-
- 17 edits2 adds in trunk
Add "id" attribute to TextTrack
https://bugs.webkit.org/show_bug.cgi?id=123825
Patch by Brendan Long <b.long@cablelabs.com> on 2013-11-06
Reviewed by Eric Carlson.
Source/WebCore:
Test: media/track/track-id.html
- html/HTMLMediaElement.cpp:
(HTMLMediaElement::addTextTrack): Add emptyString() for track id.
- html/track/AudioTrack.cpp:
(WebCore::AudioTrack::AudioTrack): Pass trackPrivate->id() to TrackBase.
(WebCore::AudioTrack::idChanged): Added, set id.
- html/track/AudioTrack.h: Move m_id to TrackBase.
- html/track/InbandTextTrack.cpp:
(WebCore::InbandTextTrack::InbandTextTrack): Pass trackPrivate->id() to TrackBase.
(WebCore::InbandTextTrack::idChanged): Added, set id.
- html/track/InbandTextTrack.h: Add idChanged().
- html/track/LoadableTextTrack.cpp:
(WebCore::LoadableTextTrack::LoadableTextTrack): Add emptyString() for track id.
(WebCore::LoadableTextTrack::id): Override to return the track element's id.
- html/track/TextTrack.cpp:
(WebCore::TextTrack::captionMenuOffItem): Add empty string for track id.
(WebCore::TextTrack::captionMenuAutomaticItem): Add empty string for track id.
(WebCore::TextTrack::TextTrack): Pass id to TrackBase.
- html/track/TextTrack.h:
(WebCore::TextTrack::create): Add id parameter.
- html/track/TextTrack.idl: Add id attribute.
- html/track/TrackBase.cpp:
(WebCore::TrackBase::TrackBase): Add m_id.
- html/track/TrackBase.h: Add id attribute / m_id.
- html/track/VideoTrack.cpp:
(WebCore::VideoTrack::VideoTrack): Pass trackPrivate->id() to TrackBase.
(WebCore::VideoTrack::idChanged): Added, set id.
- html/track/VideoTrack.h: Move m_id to TrackBase.
- platform/graphics/TrackPrivateBase.h: Add idChanged() callback.
LayoutTests:
- media/track/track-id-expected.txt: Added.
- media/track/track-id.html: Added.
- 10:51 AM Changeset in webkit [158759] by
-
- 8 edits in trunk/Source/WebKit2
Remove dead code
https://bugs.webkit.org/show_bug.cgi?id=123902
Reviewed by Tim Horton.
Remove the PageClient::containingWindowGraphicsContext() as well as the
WKPageSetDebugPaintFlags and WKPageGetDebugPaintFlags API functions.
- UIProcess/API/C/WKPage.cpp:
- UIProcess/API/mac/PageClientImpl.h:
- UIProcess/API/mac/PageClientImpl.mm:
- UIProcess/PageClient.h:
- UIProcess/WebPageProxy.cpp:
- UIProcess/WebPageProxy.h:
- UIProcess/mac/WebPageProxyMac.mm:
(WebKit::WebPageProxy::searchTheWeb):
- 10:18 AM Changeset in webkit [158758] by
-
- 10 edits in trunk/Source/WebCore
Move array position caching out from HTMLCollection
https://bugs.webkit.org/show_bug.cgi?id=123895
Reviewed by Darin Adler.
This caching complicates the logic but is used by a single subclass
(HTMLFormControlsCollection) only. The subclass can do the caching itself.
- html/HTMLAllCollection.cpp:
(WebCore::HTMLAllCollection::HTMLAllCollection):
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::create):
(WebCore::HTMLCollection::item):
(WebCore::HTMLCollection::elementBeforeOrAfterCachedElement):
(WebCore::HTMLCollection::firstElement):
Renamed from traverseFirstElement.
(WebCore::HTMLCollection::traverseForwardToOffset):
(WebCore::HTMLCollection::invalidateCache):
Make cache invalidation virtual so we can clear HTMLTableRowsCollection index cache.
(WebCore::HTMLCollection::namedItem):
(WebCore::HTMLCollection::updateNameCache):
Use traverseForwardToOffset instead traverseNextElement. This allows removal of traverseNextElement.
- html/HTMLCollection.h:
(WebCore::HTMLCollection::usesCustomForwardOnlyTraversal):
Renamed the enum and the accessor to be more informative.
(WebCore::HTMLCollection::setCachedElement):
(WebCore::HTMLCollection::customElementAfter):
Renamed from virtualItemAfter.
- html/HTMLFormControlsCollection.cpp:
(WebCore::HTMLFormControlsCollection::HTMLFormControlsCollection):
(WebCore::findFormAssociatedElement):
(WebCore::HTMLFormControlsCollection::customElementAfter):
Move the array position caching logic here.
(WebCore::HTMLFormControlsCollection::invalidateCache):
- html/HTMLFormControlsCollection.h:
- html/HTMLNameCollection.cpp:
(WebCore::HTMLNameCollection::HTMLNameCollection):
- html/HTMLOptionsCollection.cpp:
(WebCore::HTMLOptionsCollection::HTMLOptionsCollection):
- html/HTMLTableRowsCollection.cpp:
(WebCore::HTMLTableRowsCollection::HTMLTableRowsCollection):
(WebCore::HTMLTableRowsCollection::customElementAfter):
- html/HTMLTableRowsCollection.h:
- 10:17 AM Changeset in webkit [158757] by
-
- 6 edits in trunk
[ATK] accessibility/title-ui-element-correctness.html fails
https://bugs.webkit.org/show_bug.cgi?id=99825
Reviewed by Mario Sanchez Prada.
Source/WebCore:
When calling setAtkRelationSetFromCoreObject a new ATK_LABELLED_BY_RELATION
is added, adding proper label element as a relation. When the document structure
has been changed and a different label should be linked as a relation, current ATK
implementation adds it as a next target on relation's target list, while
WTR/DumpRenderTree implementation takes only first one into account.
This patch adds a new function removing current relations before adding new ones.
Covered by existing tests.
- accessibility/atk/WebKitAccessibleWrapperAtk.cpp:
(removeAtkRelationFromRelationSetByType):
(setAtkRelationSetFromCoreObject):
LayoutTests:
Remove failure test expectation for the test fixed by this patch.
- platform/efl-wk1/TestExpectations:
- platform/efl-wk2/TestExpectations:
- platform/gtk/TestExpectations:
- 10:12 AM Changeset in webkit [158756] by
-
- 2 edits in trunk/Source/WebKit2
Promoted WKBrowsingContextHistoryDelegate.h to private.
Rubber-stamped by Sam Weinig.
- WebKit2.xcodeproj/project.pbxproj:
- 10:00 AM WebInspectorCodingStyleGuide edited by
- (diff)
- 9:57 AM WebInspectorCodingStyleGuide edited by
- (diff)
- 9:56 AM WebInspectorCodingStyleGuide created by
- 9:43 AM Changeset in webkit [158755] by
-
- 2 edits in trunk/LayoutTests
Unreviewed GTK gardening. Media elements wrongly exposed after r158743.
- platform/gtk/TestExpectations: Added failure expectations.
- 9:39 AM Changeset in webkit [158754] by
-
- 4 edits8 adds in trunk/LayoutTests
[ATK] Providing new table related accessibility expectations after r158742
https://bugs.webkit.org/show_bug.cgi?id=123893
Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-11-06
Reviewed by Chris Fleizach.
New baselines after added missing implementation in r158742.
- platform/efl-wk1/TestExpectations: Tests are no longer failing.
- platform/efl-wk2/TestExpectations: Tests are no longer failing.
- platform/efl-wk2/accessibility/table-attributes-expected.txt: Added.
- platform/efl-wk2/accessibility/table-sections-expected.txt: Added.
- platform/efl/accessibility/table-attributes-expected.txt: Added.
- platform/efl/accessibility/table-sections-expected.txt: Added.
- platform/gtk-wk2/accessibility/table-attributes-expected.txt: Added.
- platform/gtk-wk2/accessibility/table-sections-expected.txt: Added.
- platform/gtk/TestExpectations: Tests are no longer failing.
- platform/gtk/accessibility/table-attributes-expected.txt: Added.
- platform/gtk/accessibility/table-sections-expected.txt: Added.
- 9:36 AM Changeset in webkit [158753] by
-
- 10 edits2 moves4 adds in trunk/Source/WebKit2
[Cocoa] History delegate
https://bugs.webkit.org/show_bug.cgi?id=123837
Reviewed by Sam Weinig.
- Shared/Cocoa/APIObject.mm:
(WebKit::APIObject::newObject): Allocate a WKNavigationData if the object is a
WebNavigationData.
- Shared/Cocoa/WKNSString.h:
(WebKit::wrapper): Added. Returns a WebString’s wrapper as an NSString.
- Shared/Cocoa/WKNSURL.h:
(WebKit::wrapper): Added. Returns a WebURL’s wrapper as an NSURL.
- UIProcess/API/C/WKNavigationData.cpp: Renamed.
- UIProcess/API/C/WKNavigationData.h: Renamed.
- UIProcess/API/C/WKNavigationDataRef.cpp: Copied from Source/WebKit2/UIProcess/API/C/WKNavigationData.cpp.
- UIProcess/API/C/WKNavigationDataRef.h: Copied from Source/WebKit2/UIProcess/API/C/WKNavigationData.h.
- UIProcess/API/mac/WKBrowsingContextController.h: Declared historyDelegate property.
- UIProcess/API/mac/WKProcessGroup.mm:
(didNavigateWithNavigationData): Added history client callback that calls the browsing
context’s history delegate.
(didPerformClientRedirect): Ditto.
(didPerformServerRedirect): Ditto.
(didUpdateHistoryTitle): Ditto.
(setUpHistoryClient): Added.
(-[WKProcessGroup initWithInjectedBundleURL:]): Added call to setUpHistoryClient.
(-[WKProcessGroup dealloc]): Clear the history client.
- UIProcess/Cocoa/WKBrowsingContextHistoryDelegate.h: Added.
- UIProcess/Cocoa/WKNavigationData.h: Added.
- UIProcess/Cocoa/WKNavigationData.mm: Added.
(-[WKNavigationData dealloc]): Calls the WebNavigationData destructor.
(-[WKNavigationData title]): Added.
(-[WKNavigationData originalRequest]): Added.
(-[WKNavigationData destinationURL]): Added.
(-[WKNavigationData _apiObject]): Returns the wrapped WebNavigationData.
- UIProcess/Cocoa/WKNavigationDataInternal.h: Added.
(WebKit::wrapper): Added. Returns a WebNavigationData’s wrapper as a WKNavigationData.
- WebKit2.xcodeproj/project.pbxproj: Updated for renames and additions.
- 9:31 AM WebKitGTK/2.2.x edited by
- Add two proposed merges for the next 2.2 release. (diff)
- 9:31 AM Changeset in webkit [158752] by
-
- 3 edits in trunk/LayoutTests
Unreviewed gardening; Fix expected results for video-seek-with-negative-playback.html,
and modify the test to conform to media test style.
- media/video-seek-with-negative-playback-expected.txt:
- media/video-seek-with-negative-playback.html:
- 9:29 AM Changeset in webkit [158751] by
-
- 18 edits3 deletes in trunk/Source/JavaScriptCore
Change ctiTrampoline into a thunk
https://bugs.webkit.org/show_bug.cgi?id=123844
Reviewed by Filip Pizlo.
Converted ctiTrampoline and ctiOpThrowNotCaught into thunks named callToJavaScript
and returnFromJavaScript. Cleaned up and in some cases removed JITStubsXXX.h files
after removing ctiTrampoline and ctiOpThrowNotCaught. Added callJavaScriptJITFunction
to VM that is a function pointer to the callToJavaScript thunk.
- GNUmakefile.list.am:
- JavaScriptCore.xcodeproj/project.pbxproj:
- dfg/DFGDriver.cpp:
(JSC::DFG::compileImpl):
- jit/JITCode.cpp:
(JSC::JITCode::execute):
- jit/JITExceptions.cpp:
(JSC::genericUnwind):
- jit/JITStubs.cpp:
- jit/JITStubs.h:
- jit/JITStubsARM.h:
- jit/JITStubsARM64.h: Removed.
- jit/JITStubsARMv7.h:
- jit/JITStubsMIPS.h: Removed.
- jit/JITStubsMSVC64.asm:
- jit/JITStubsSH4.h: Removed.
- jit/JITStubsX86.h:
- jit/JITStubsX86_64.h:
- jit/JSInterfaceJIT.h:
- jit/ThunkGenerators.cpp:
(JSC::returnFromJavaScript):
(JSC::callToJavaScript):
- jit/ThunkGenerators.h:
- runtime/VM.cpp:
(JSC::VM::VM):
- runtime/VM.h:
- 8:48 AM Changeset in webkit [158750] by
-
- 7 edits in trunk/Source
Add ENABLE(TEXT_SELECTION)
https://bugs.webkit.org/show_bug.cgi?id=123827
Reviewed by Ryosuke Niwa.
Source/WebCore:
Add compile-time guard, ENABLE(TEXT_SELECTION), to enable or
disable selection painting in WebCore (enabled by default).
On iOS we disable WebCore selection painting and have UIKit
paint the selection.
- rendering/InlineTextBox.cpp:
(WebCore::InlineTextBox::paintSelection): Only paint selection when
TEXT_SELECTION is enabled.
- rendering/LogicalSelectionOffsetCaches.h:
(WebCore::LogicalSelectionOffsetCaches::LogicalSelectionOffsetCaches):
For now, add a ENABLE(TEXT_SELECTION)-guard around an assertion. Added
a FIXME comment to investigate the callers and either move the assertion
to the appropriate callers or structure the code such that we can remove
the assertion.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::paintSelection): Only paint selection when
TEXT_SELECTION is enabled.
- rendering/TextPaintStyle.cpp:
(WebCore::computeTextSelectionPaintStyle): Only compute the selection
paint style when TEXT_SELECTION is enabled. Otherwise, return a paint
style identical to the text paint style. Also, substitute nullptr for 0.
Source/WTF:
Enable selection painting by default on all ports except iOS.
- wtf/FeatureDefines.h:
- 8:45 AM Changeset in webkit [158749] by
-
- 2 edits in trunk/Source/WebCore
Unrevewied Windows build fix after r158736; add InlineElementBox.cpp to the RenderingAllInOne.cpp file.
- rendering/RenderingAllInOne.cpp:
- 8:38 AM Changeset in webkit [158748] by
-
- 3 edits in trunk/Source/JavaScriptCore
FTL should support StringCharCodeAt
https://bugs.webkit.org/show_bug.cgi?id=123854
Reviewed by Sam Weinig.
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::compileStringCharCodeAt):
- 8:36 AM Changeset in webkit [158747] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix, style() return type is now a reference.
- rendering/RenderGrid.cpp:
(WebCore::RenderGrid::resolveGridPositionFromStyle):
- 8:26 AM Changeset in webkit [158746] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed 32-bit Mac build fix; use an explicit FloatSize -> IntSize conversion function.
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::sizeChanged):
- 8:15 AM Changeset in webkit [158745] by
-
- 6 edits in trunk/Source/WebCore
Playing many sounds with HTML5 Audio makes WebKit unresponsive
https://bugs.webkit.org/show_bug.cgi?id=116145
Reviewed by Eric Carlson.
Cache as much information as possible from AVPlayerItem to eliminate unneccesary
calls into AVFoundation.
Add WillChange/DidChange functions to handle the results of KVO notifications
from AVPlayerItem and AVPlayer:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformPlay):
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformPause):
(WebCore::MediaPlayerPrivateAVFoundationObjC::updateRate):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playerItemStatusDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackLikelyToKeepUpWillChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackLikelyToKeepUpDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackBufferEmptyWillChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackBufferEmptyDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackBufferFullWillChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playbackBufferFullDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::seekableTimeRangesDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::loadedTimeRangesDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::tracksDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::hasEnabledAudioDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::presentationSizeDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::durationDidChange):
(WebCore::MediaPlayerPrivateAVFoundationObjC::rateDidChange):
(WebCore::itemKVOProperties):
(-[WebCoreAVFMovieObserver observeValueForKeyPath:ofObject:change:context:]):
Instruct the HTMLMediaElement to cache the currentTime value for 5 seconds:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:
(WebCore::MediaPlayerPrivateAVFoundationObjC::maximumDurationToCacheMediaTime):
Add and initialize member variables to hold these cached values:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::MediaPlayerPrivateAVFoundationObjC):
(WebCore::MediaPlayerPrivateAVFoundationObjC::cancelLoad):
Add a new Notification type which can take (and call) a Function object:
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
(WebCore::MediaPlayerPrivateAVFoundation::dispatchNotification):
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h:
(WebCore::MediaPlayerPrivateAVFoundation::Notification::Notification):
(WebCore::MediaPlayerPrivateAVFoundation::Notification::function):
Implement queries in terms of the cached values of AVPlayerItem and AVPlayer
properties:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.h:
- platform/graphics/avfoundation/objc/MediaPlayerPrivateAVFoundationObjC.mm:
(WebCore::MediaPlayerPrivateAVFoundationObjC::createAVPlayer):
(WebCore::MediaPlayerPrivateAVFoundationObjC::createAVPlayerItem):
(WebCore::MediaPlayerPrivateAVFoundationObjC::playerItemStatus):
(WebCore::MediaPlayerPrivateAVFoundationObjC::rate):
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformBufferedTimeRanges):
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformMinTimeSeekable):
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformMaxTimeSeekable):
(WebCore::MediaPlayerPrivateAVFoundationObjC::platformMaxTimeLoaded):
(WebCore::MediaPlayerPrivateAVFoundationObjC::totalBytes):
(WebCore::MediaPlayerPrivateAVFoundationObjC::tracksChanged):
(WebCore::MediaPlayerPrivateAVFoundationObjC::updateAudioTracks):
(WebCore::MediaPlayerPrivateAVFoundationObjC::updateVideoTracks):
(WebCore::MediaPlayerPrivateAVFoundationObjC::sizeChanged):
(WebCore::MediaPlayerPrivateAVFoundationObjC::processLegacyClosedCaptionsTracks):
Invalidate the cached currentTime before calling scheduleTimeUpdate so that the
correct movieTime is saved in m_clockTimeAtLastUpdateEvent:
- html/HTMLMediaElement.cpp:
(HTMLMediaElement::setReadyState):
- 7:54 AM Changeset in webkit [158744] by
-
- 18 edits4 adds in trunk
[CSS Grid Layout] Add support for named grid areas
https://bugs.webkit.org/show_bug.cgi?id=120045
Reviewed by Andreas Kling.
From Blink r155555, r155850 and r155889 by <jchaffraix@chromium.org>
Source/WebCore:
Added support for named grid areas. Basically a named grid area is
now a valid grid position. The shorthand parsing of grid-area was
split from the grid-{row|column} as the rules for expanding are
slightly different.
Unknown grid area names are treated as 'auto' as per the
specification. This means that for those cases we need to trigger
the auto-placement algorithm.
Tests: fast/css-grid-layout/grid-item-bad-named-area-auto-placement.html
fast/css-grid-layout/grid-item-named-grid-area-resolution.html
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::valueForGridPosition):
- css/CSSParser.cpp:
(WebCore::CSSParser::parseValue):
(WebCore::CSSParser::parseGridPosition):
(WebCore::gridMissingGridPositionValue):
(WebCore::CSSParser::parseGridItemPositionShorthand):
(WebCore::CSSParser::parseGridAreaShorthand):
(WebCore::CSSParser::parseSingleGridAreaLonghand):
- css/CSSParser.h:
- css/StyleResolver.cpp:
(WebCore::StyleResolver::adjustRenderStyle):
(WebCore::StyleResolver::adjustGridItemPosition):
(WebCore::createGridPosition):
- css/StyleResolver.h:
- rendering/RenderGrid.cpp:
(WebCore::RenderGrid::resolveGridPositionFromStyle):
- rendering/style/GridPosition.h:
(WebCore::GridPosition::isNamedGridArea):
(WebCore::GridPosition::setNamedGridArea):
(WebCore::GridPosition::namedGridLine):
LayoutTests:
Added a couple of new tests to check that both known and unknown
named grid areas are properly handled.
Also extended some of the existing tests to use named grid areas
as any other possible grid position.
- fast/css-grid-layout/grid-item-area-get-set-expected.txt:
- fast/css-grid-layout/grid-item-area-get-set.html:
- fast/css-grid-layout/grid-item-bad-named-area-auto-placement-expected.txt: Added.
- fast/css-grid-layout/grid-item-bad-named-area-auto-placement.html: Added.
- fast/css-grid-layout/grid-item-column-row-get-set-expected.txt:
- fast/css-grid-layout/grid-item-column-row-get-set.html:
- fast/css-grid-layout/grid-item-end-after-get-set-expected.txt:
- fast/css-grid-layout/grid-item-end-after-get-set.html:
- fast/css-grid-layout/grid-item-named-grid-area-resolution-expected.txt: Added.
- fast/css-grid-layout/grid-item-named-grid-area-resolution.html: Added.
- fast/css-grid-layout/grid-item-start-before-get-set-expected.txt:
- fast/css-grid-layout/grid-item-start-before-get-set.html:
- fast/css-grid-layout/resources/grid-item-column-row-parsing-utils.js:
- 6:15 AM Changeset in webkit [158743] by
-
- 442 edits4 adds in trunk
AX: Audio and Video attachments are not output to VoiceOver
https://bugs.webkit.org/show_bug.cgi?id=123479
Reviewed by Mario Sanchez Prada.
Source/WebCore:
Video and audio elements don't appear as distinct objects in the AX hierarchy,
nor are they treated as replaceable objects when emitting the text. We should
treat these characters like attachments, for one. On the Mac platform, we should
also identify them with special subroles.
Tests: platform/mac/accessibility/media-emits-object-replacement.html
platform/mac/accessibility/media-role-descriptions.html
- accessibility/AccessibilityNodeObject.cpp:
(WebCore::AccessibilityNodeObject::isGenericFocusableElement):
- accessibility/AccessibilityObject.h:
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::AccessibilityRenderObject::computeAccessibilityIsIgnored):
(WebCore::AccessibilityRenderObject::determineAccessibilityRole):
- accessibility/mac/WebAccessibilityObjectWrapperMac.mm:
(createAccessibilityRoleMap):
(-[WebAccessibilityObjectWrapper subrole]):
(-[WebAccessibilityObjectWrapper roleDescription]):
- editing/TextIterator.cpp:
(WebCore::isRendererReplacedElement):
LayoutTests:
Making media elements int replaced elements has the unfortunate side-effect
of causing a new line to be inserted into any test using a <video> or <audio> tag.
- compositing/video/video-poster-expected.txt:
- compositing/video/video-reflection-expected.txt:
- compositing/visibility/visibility-simple-video-layer-expected.txt:
- fast/css/first-letter-block-form-controls-crash-expected.txt:
- fast/css/relative-position-replaced-in-table-display-crash-expected.txt:
- fast/forms/access-key-for-all-elements-expected.txt:
- fast/forms/form-associated-element-crash3-expected.txt:
- fast/multicol/renderer-positioned-assert-crash-expected.txt:
- fast/regions/full-screen-video-from-region-expected.txt:
- fast/runin/nonblock-runin-expected.txt:
- fast/spatial-navigation/snav-media-elements-expected.txt:
- fullscreen/full-screen-crash-offsetLeft-expected.txt:
- fullscreen/full-screen-no-style-sharing-expected.txt:
- fullscreen/full-screen-stacking-context-expected.txt:
- fullscreen/video-controls-drag-expected.txt:
- fullscreen/video-controls-timeline-expected.txt:
- fullscreen/video-cursor-auto-hide-expected.txt:
- fullscreen/video-specified-size-expected.txt:
- http/tests/appcache/video-expected.txt:
- http/tests/media/pdf-served-as-pdf-expected.txt:
- http/tests/media/reload-after-dialog-expected.txt:
- http/tests/media/text-served-as-text-expected.txt:
- http/tests/media/video-accept-encoding-expected.txt:
- http/tests/media/video-buffered-range-contains-currentTime-expected.txt:
- http/tests/media/video-cross-site-expected.txt:
- http/tests/media/video-error-abort-expected.txt:
- http/tests/media/video-load-suspend-expected.txt:
- http/tests/media/video-play-progress-expected.txt:
- http/tests/media/video-play-stall-before-meta-data-expected.txt:
- http/tests/media/video-preload-expected.txt:
- http/tests/media/video-redirect-expected.txt:
- http/tests/media/video-referer-expected.txt:
- http/tests/media/video-served-as-text-expected.txt:
- http/tests/media/video-throttled-load-metadata-expected.txt:
- http/tests/misc/empty-urls-expected.txt:
- http/tests/security/contentSecurityPolicy/media-src-allowed-expected.txt:
- http/tests/security/contentSecurityPolicy/media-src-blocked-expected.txt:
- http/tests/security/local-video-poster-from-remote-expected.txt:
- http/tests/security/local-video-source-from-remote-expected.txt:
- http/tests/security/local-video-src-from-remote-expected.txt:
- http/tests/security/text-track-crossorigin-expected.txt:
- media/W3C/audio/events/event_canplay-expected.txt:
- media/W3C/audio/events/event_canplay_manual-expected.txt:
- media/W3C/audio/events/event_canplaythrough-expected.txt:
- media/W3C/audio/events/event_canplaythrough_manual-expected.txt:
- media/W3C/audio/events/event_loadeddata-expected.txt:
- media/W3C/audio/events/event_loadeddata_manual-expected.txt:
- media/W3C/audio/events/event_loadedmetadata-expected.txt:
- media/W3C/audio/events/event_loadedmetadata_manual-expected.txt:
- media/W3C/audio/events/event_loadstart-expected.txt:
- media/W3C/audio/events/event_loadstart_manual-expected.txt:
- media/W3C/audio/events/event_order_canplay_canplaythrough-expected.txt:
- media/W3C/audio/events/event_order_canplay_playing-expected.txt:
- media/W3C/audio/events/event_order_loadedmetadata_loadeddata-expected.txt:
- media/W3C/audio/events/event_order_loadstart_progress-expected.txt:
- media/W3C/audio/events/event_pause_manual-expected.txt:
- media/W3C/audio/events/event_play-expected.txt:
- media/W3C/audio/events/event_play_manual-expected.txt:
- media/W3C/audio/events/event_playing-expected.txt:
- media/W3C/audio/events/event_playing_manual-expected.txt:
- media/W3C/audio/events/event_progress-expected.txt:
- media/W3C/audio/events/event_progress_manual-expected.txt:
- media/W3C/audio/events/event_timeupdate-expected.txt:
- media/W3C/audio/events/event_timeupdate_manual-expected.txt:
- media/W3C/audio/networkState/networkState_during_loadstart-expected.txt:
- media/W3C/audio/paused/paused_false_during_play-expected.txt:
- media/W3C/audio/paused/paused_true_during_pause-expected.txt:
- media/W3C/audio/readyState/readyState_during_canplay-expected.txt:
- media/W3C/audio/readyState/readyState_during_canplaythrough-expected.txt:
- media/W3C/audio/readyState/readyState_during_loadeddata-expected.txt:
- media/W3C/audio/readyState/readyState_during_loadedmetadata-expected.txt:
- media/W3C/audio/readyState/readyState_during_playing-expected.txt:
- media/W3C/video/canPlayType/canPlayType_application_octet_stream-expected.txt:
- media/W3C/video/canPlayType/canPlayType_application_octet_stream_with_codecs_1-expected.txt:
- media/W3C/video/canPlayType/canPlayType_application_octet_stream_with_codecs_2-expected.txt:
- media/W3C/video/canPlayType/canPlayType_application_octet_stream_with_codecs_3-expected.txt:
- media/W3C/video/canPlayType/canPlayType_bogus_type-expected.txt:
- media/W3C/video/canPlayType/canPlayType_codecs_order_1-expected.txt:
- media/W3C/video/canPlayType/canPlayType_method_exists-expected.txt:
- media/W3C/video/canPlayType/canPlayType_supported_but_no_codecs_parameter_1-expected.txt:
- media/W3C/video/canPlayType/canPlayType_two_implies_one_1-expected.txt:
- media/W3C/video/canPlayType/canPlayType_two_implies_one_2-expected.txt:
- media/W3C/video/currentSrc/currentSrc_empty_if_no_src-expected.txt:
- media/W3C/video/currentSrc/currentSrc_property_exists-expected.txt:
- media/W3C/video/error/error_null-expected.txt:
- media/W3C/video/error/error_onerror_called_on_bogus_source-expected.txt:
- media/W3C/video/error/error_property_exists-expected.txt:
- media/W3C/video/events/event_canplay-expected.txt:
- media/W3C/video/events/event_canplay_manual-expected.txt:
- media/W3C/video/events/event_canplaythrough-expected.txt:
- media/W3C/video/events/event_canplaythrough_manual-expected.txt:
- media/W3C/video/events/event_loadeddata-expected.txt:
- media/W3C/video/events/event_loadeddata_manual-expected.txt:
- media/W3C/video/events/event_loadedmetadata-expected.txt:
- media/W3C/video/events/event_loadedmetadata_manual-expected.txt:
- media/W3C/video/events/event_loadstart-expected.txt:
- media/W3C/video/events/event_loadstart_manual-expected.txt:
- media/W3C/video/events/event_order_canplay_canplaythrough-expected.txt:
- media/W3C/video/events/event_order_canplay_playing-expected.txt:
- media/W3C/video/events/event_order_loadedmetadata_loadeddata-expected.txt:
- media/W3C/video/events/event_order_loadstart_progress-expected.txt:
- media/W3C/video/events/event_pause_manual-expected.txt:
- media/W3C/video/events/event_play-expected.txt:
- media/W3C/video/events/event_play_manual-expected.txt:
- media/W3C/video/events/event_playing-expected.txt:
- media/W3C/video/events/event_playing_manual-expected.txt:
- media/W3C/video/events/event_progress-expected.txt:
- media/W3C/video/events/event_progress_manual-expected.txt:
- media/W3C/video/events/event_timeupdate-expected.txt:
- media/W3C/video/events/event_timeupdate_manual-expected.txt:
- media/W3C/video/networkState/networkState_during_loadstart-expected.txt:
- media/W3C/video/networkState/networkState_during_progress-expected.txt:
- media/W3C/video/networkState/networkState_initial-expected.txt:
- media/W3C/video/networkState/networkState_property_exists-expected.txt:
- media/W3C/video/paused/paused_false_during_play-expected.txt:
- media/W3C/video/paused/paused_true_during_pause-expected.txt:
- media/W3C/video/preload/preload_property_exists-expected.txt:
- media/W3C/video/preload/preload_reflects_auto_value-expected.txt:
- media/W3C/video/preload/preload_reflects_bogus_value-expected.txt:
- media/W3C/video/preload/preload_reflects_empty-expected.txt:
- media/W3C/video/preload/preload_reflects_metadata-expected.txt:
- media/W3C/video/preload/preload_reflects_no_value-expected.txt:
- media/W3C/video/preload/preload_reflects_none-expected.txt:
- media/W3C/video/preload/preload_reflects_none_autoplay-expected.txt:
- media/W3C/video/readyState/readyState_during_canplay-expected.txt:
- media/W3C/video/readyState/readyState_during_canplaythrough-expected.txt:
- media/W3C/video/readyState/readyState_during_loadeddata-expected.txt:
- media/W3C/video/readyState/readyState_during_loadedmetadata-expected.txt:
- media/W3C/video/readyState/readyState_during_playing-expected.txt:
- media/W3C/video/readyState/readyState_initial-expected.txt:
- media/W3C/video/readyState/readyState_property_exists-expected.txt:
- media/W3C/video/src/src_reflects_attribute_not_source_elements-expected.txt:
- media/W3C/video/src/src_reflects_no_value-expected.txt:
- media/W3C/video/src/src_removal_does_not_trigger_loadstart-expected.txt:
- media/audio-mpeg-supported-expected.txt:
- media/audio-mpeg4-supported-expected.txt:
- media/audio-only-video-intrinsic-size-expected.txt:
- media/auto-play-in-sandbox-with-allow-scripts-expected.txt:
- media/before-load-member-access-expected.txt:
- media/broken-video-expected.txt:
- media/constructors-expected.txt:
- media/controls-css-overload-expected.txt:
- media/controls-drag-timebar-expected.txt:
- media/controls-layout-direction-expected.txt:
- media/controls-right-click-on-timebar-expected.txt:
- media/csp-blocks-video-expected.txt:
- media/event-attributes-expected.txt:
- media/media-blocked-by-beforeload-expected.txt:
- media/media-blocked-by-willsendrequest-expected.txt:
- media/media-can-play-mpeg-audio-expected.txt:
- media/media-can-play-mpeg4-video-expected.txt:
- media/media-can-play-octet-stream-expected.txt:
- media/media-can-play-type-expected.txt:
- media/media-can-play-wav-audio-expected.txt:
- media/media-captions-expected.txt:
- media/media-captions-no-controls-expected.txt:
- media/media-controller-expected.txt:
- media/media-controller-playback-expected.txt:
- media/media-controller-playbackrate-expected.txt:
- media/media-controller-time-clamp-expected.txt:
- media/media-controller-time-constant-expected.txt:
- media/media-controller-time-expected.txt:
- media/media-controller-timeupdate-expected.txt:
- media/media-controller-unpause-expected.txt:
- media/media-controls-invalid-url-expected.txt:
- media/media-ended-expected.txt:
- media/media-extension-with-fragment-expected.txt:
- media/media-fragments/TC0001-expected.txt:
- media/media-fragments/TC0002-expected.txt:
- media/media-fragments/TC0003-expected.txt:
- media/media-fragments/TC0004-expected.txt:
- media/media-fragments/TC0005-expected.txt:
- media/media-fragments/TC0006-expected.txt:
- media/media-fragments/TC0009-expected.txt:
- media/media-fragments/TC0011-expected.txt:
- media/media-fragments/TC0012-expected.txt:
- media/media-fragments/TC0014-expected.txt:
- media/media-fragments/TC0015-expected.txt:
- media/media-fragments/TC0017-expected.txt:
- media/media-fragments/TC0024-expected.txt:
- media/media-fragments/TC0027-expected.txt:
- media/media-fragments/TC0028-expected.txt:
- media/media-fragments/TC0029-expected.txt:
- media/media-fragments/TC0030-expected.txt:
- media/media-fragments/TC0031-expected.txt:
- media/media-fragments/TC0032-expected.txt:
- media/media-fragments/TC0033-expected.txt:
- media/media-fragments/TC0034-expected.txt:
- media/media-fragments/TC0035-expected.txt:
- media/media-fragments/TC0036-expected.txt:
- media/media-fragments/TC0037-expected.txt:
- media/media-fragments/TC0038-expected.txt:
- media/media-fragments/TC0039-expected.txt:
- media/media-fragments/TC0044-expected.txt:
- media/media-fragments/TC0051-expected.txt:
- media/media-fragments/TC0052-expected.txt:
- media/media-fragments/TC0053-expected.txt:
- media/media-fragments/TC0054-expected.txt:
- media/media-fragments/TC0055-expected.txt:
- media/media-fragments/TC0058-expected.txt:
- media/media-fragments/TC0059-expected.txt:
- media/media-fragments/TC0061-expected.txt:
- media/media-fragments/TC0062-expected.txt:
- media/media-fragments/TC0063-expected.txt:
- media/media-fragments/TC0064-expected.txt:
- media/media-fragments/TC0065-expected.txt:
- media/media-fragments/TC0066-expected.txt:
- media/media-fragments/TC0067-expected.txt:
- media/media-fragments/TC0068-expected.txt:
- media/media-fragments/TC0069-expected.txt:
- media/media-fragments/TC0070-expected.txt:
- media/media-fragments/TC0071-expected.txt:
- media/media-fragments/TC0072-expected.txt:
- media/media-fragments/TC0073-expected.txt:
- media/media-fragments/TC0074-expected.txt:
- media/media-fragments/TC0075-expected.txt:
- media/media-fragments/TC0076-expected.txt:
- media/media-fragments/TC0077-expected.txt:
- media/media-fragments/TC0078-expected.txt:
- media/media-fragments/TC0079-expected.txt:
- media/media-fragments/TC0080-expected.txt:
- media/media-fragments/TC0081-expected.txt:
- media/media-fragments/TC0082-expected.txt:
- media/media-fragments/TC0083-expected.txt:
- media/media-fragments/TC0084-expected.txt:
- media/media-fragments/TC0085-expected.txt:
- media/media-fragments/TC0086-expected.txt:
- media/media-fragments/TC0087-expected.txt:
- media/media-fragments/TC0088-expected.txt:
- media/media-fragments/TC0089-expected.txt:
- media/media-fragments/TC0090-expected.txt:
- media/media-fragments/TC0091-expected.txt:
- media/media-fragments/TC0092-expected.txt:
- media/media-fragments/TC0093-expected.txt:
- media/media-fragments/TC0094-expected.txt:
- media/media-fullscreen-inline-expected.txt:
- media/media-preload-no-delay-loadevent-expected.txt:
- media/no-autoplay-with-user-gesture-requirement-expected.txt:
- media/nodesFromRect-shadowContent-expected.txt:
- media/restore-from-page-cache-expected.txt:
- media/sources-fallback-codecs-expected.txt:
- media/track/add-and-remove-track-expected.txt:
- media/track/audio-track-expected.txt:
- media/track/opera/interfaces/TextTrack/addCue-expected.txt:
- media/track/opera/interfaces/TextTrack/removeCue-expected.txt:
- media/track/opera/interfaces/TextTrackCue/align-expected.txt:
- media/track/opera/interfaces/TextTrackCue/endTime-expected.txt:
- media/track/opera/interfaces/TextTrackCue/id-expected.txt:
- media/track/opera/interfaces/TextTrackCue/pauseOnExit-expected.txt:
- media/track/opera/interfaces/TextTrackCue/startTime-expected.txt:
- media/track/opera/interfaces/TextTrackCue/track-expected.txt:
- media/track/opera/interfaces/TextTrackCueList/getCueById-expected.txt:
- media/track/opera/interfaces/TextTrackCueList/length-expected.txt:
- media/track/text-track-cue-is-reachable-expected.txt:
- media/track/text-track-is-reachable-expected.txt:
- media/track/track-active-cues-expected.txt:
- media/track/track-add-remove-cue-expected.txt:
- media/track/track-add-track-expected.txt:
- media/track/track-addtrack-kind-expected.txt:
- media/track/track-automatic-subtitles-expected.txt:
- media/track/track-css-all-cues-expected.txt:
- media/track/track-css-cue-lifetime-expected.txt:
- media/track/track-css-matching-default-expected.txt:
- media/track/track-css-matching-expected.txt:
- media/track/track-css-matching-lang-expected.txt:
- media/track/track-css-matching-timestamps-expected.txt:
- media/track/track-css-property-whitelist-expected.txt:
- media/track/track-css-user-override-expected.txt:
- media/track/track-cue-container-rendering-position-expected.txt:
- media/track/track-cue-empty-text-crash-expected.txt:
- media/track/track-cue-inline-assertion-crash-expected.txt:
- media/track/track-cue-mutable-expected.txt:
- media/track/track-cue-mutable-fragment-expected.txt:
- media/track/track-cue-negative-timestamp-expected.txt:
- media/track/track-cue-nothing-to-render-expected.txt:
- media/track/track-cue-overlap-snap-to-lines-not-set-expected.txt:
- media/track/track-cue-rendering-empty-cue-crash-expected.txt:
- media/track/track-cue-rendering-expected.txt:
- media/track/track-cue-rendering-on-resize-expected.txt:
- media/track/track-cue-rendering-rtl-expected.txt:
- media/track/track-cue-rendering-snap-to-lines-not-set-expected.txt:
- media/track/track-cue-rendering-tree-is-removed-properly-expected.txt:
- media/track/track-cue-rendering-with-padding-expected.txt:
- media/track/track-cues-cuechange-expected.txt:
- media/track/track-cues-enter-exit-expected.txt:
- media/track/track-cues-missed-expected.txt:
- media/track/track-cues-pause-on-exit-expected.txt:
- media/track/track-cues-seeking-expected.txt:
- media/track/track-cues-sorted-before-dispatch-expected.txt:
- media/track/track-default-attribute-expected.txt:
- media/track/track-disabled-addcue-expected.txt:
- media/track/track-disabled-expected.txt:
- media/track/track-element-load-event-expected.txt:
- media/track/track-in-band-cues-added-once-expected.txt:
- media/track/track-in-band-duplicate-tracks-when-source-changes-expected.txt:
- media/track/track-in-band-expected.txt:
- media/track/track-in-band-legacy-api-expected.txt:
- media/track/track-in-band-style-expected.txt:
- media/track/track-kind-expected.txt:
- media/track/track-large-timestamp-expected.txt:
- media/track/track-legacyapi-with-automatic-mode-expected.txt:
- media/track/track-load-from-element-readyState-expected.txt:
- media/track/track-load-from-src-readyState-expected.txt:
- media/track/track-long-captions-file-expected.txt:
- media/track/track-mode-disabled-crash-expected.txt:
- media/track/track-mode-expected.txt:
- media/track/track-mode-not-changed-by-new-track-expected.txt:
- media/track/track-mode-triggers-loading-expected.txt:
- media/track/track-remove-active-cue-crash-expected.txt:
- media/track/track-remove-by-setting-innerHTML-expected.txt:
- media/track/track-remove-quickly-expected.txt:
- media/track/track-text-track-cue-list-expected.txt:
- media/track/track-texttracks-expected.txt:
- media/track/track-webvtt-tc000-empty-expected.txt:
- media/track/track-webvtt-tc001-utf8-expected.txt:
- media/track/track-webvtt-tc002-bom-expected.txt:
- media/track/track-webvtt-tc003-newlines-expected.txt:
- media/track/track-webvtt-tc004-magic-header-expected.txt:
- media/track/track-webvtt-tc005-header-comment-expected.txt:
- media/track/track-webvtt-tc006-cue-identifiers-expected.txt:
- media/track/track-webvtt-tc007-cue-no-id-expected.txt:
- media/track/track-webvtt-tc008-timings-no-hours-expected.txt:
- media/track/track-webvtt-tc009-timings-hour-expected.txt:
- media/track/track-webvtt-tc010-no-timings-expected.txt:
- media/track/track-webvtt-tc011-blank-lines-expected.txt:
- media/track/track-webvtt-tc013-settings-expected.txt:
- media/track/track-webvtt-tc014-alignment-expected.txt:
- media/track/track-webvtt-tc015-positioning-expected.txt:
- media/track/track-webvtt-tc016-align-positioning-expected.txt:
- media/track/track-webvtt-tc017-line-position-expected.txt:
- media/track/track-webvtt-tc018-align-text-line-position-expected.txt:
- media/track/track-webvtt-tc019-cue-size-expected.txt:
- media/track/track-webvtt-tc020-cue-size-align-expected.txt:
- media/track/track-webvtt-tc021-valign-expected.txt:
- media/track/track-webvtt-tc022-entities-expected.txt:
- media/track/track-webvtt-tc023-markup-expected.txt:
- media/track/track-webvtt-tc024-timestamp-expected.txt:
- media/track/track-webvtt-tc025-class-markup-expected.txt:
- media/track/track-webvtt-tc026-voice-expected.txt:
- media/track/track-webvtt-tc027-empty-cue-expected.txt:
- media/track/track-webvtt-tc028-unsupported-markup-expected.txt:
- media/track/track-word-breaking-expected.txt:
- media/track/tracklist-is-reachable-expected.txt:
- media/track/video-track-expected.txt:
- media/unsupported-rtsp-expected.txt:
- media/unsupported-tracks-expected.txt:
- media/video-append-source-expected.txt:
- media/video-autoplay-expected.txt:
- media/video-beforeload-remove-source-expected.txt:
- media/video-buffered-expected.txt:
- media/video-canvas-drawing-expected.txt:
- media/video-canvas-drawing-output-expected.txt:
- media/video-controls-captions-trackmenu-hide-on-click-outside-expected.txt:
- media/video-controls-captions-trackmenu-includes-enabled-track-expected.txt:
- media/video-controls-expected.txt:
- media/video-controls-transformed-expected.txt:
- media/video-controls-with-mutation-event-handler-expected.txt:
- media/video-controls-zoomed-expected.txt:
- media/video-currentTime-delay-expected.txt:
- media/video-currentTime-expected.txt:
- media/video-currentTime-set-expected.txt:
- media/video-currentTime-set2-expected.txt:
- media/video-delay-load-event-expected.txt:
- media/video-display-aspect-ratio-expected.txt:
- media/video-dom-autoplay-expected.txt:
- media/video-dom-preload-expected.txt:
- media/video-dom-src-expected.txt:
- media/video-duration-known-after-eos-expected.txt:
- media/video-error-does-not-exist-expected.txt:
- media/video-load-networkState-expected.txt:
- media/video-load-preload-metadata-expected.txt:
- media/video-load-preload-none-expected.txt:
- media/video-load-readyState-expected.txt:
- media/video-load-require-user-gesture-expected.txt:
- media/video-loop-expected.txt:
- media/video-mouse-focus-expected.txt:
- media/video-muted-expected.txt:
- media/video-no-autoplay-expected.txt:
- media/video-pause-empty-events-expected.txt:
- media/video-pause-immediately-expected.txt:
- media/video-play-empty-events-expected.txt:
- media/video-play-pause-events-expected.txt:
- media/video-play-pause-exception-expected.txt:
- media/video-play-require-user-gesture-expected.txt:
- media/video-playbackrate-expected.txt:
- media/video-played-collapse-expected.txt:
- media/video-played-ranges-1-expected.txt:
- media/video-played-reset-expected.txt:
- media/video-plays-past-end-of-test-expected.txt:
- media/video-poster-blocked-by-willsendrequest-expected.txt:
- media/video-poster-delayed-expected.txt:
- media/video-poster-expected.txt:
- media/video-poster-scale-expected.txt:
- media/video-preload-expected.txt:
- media/video-replaces-poster-expected.txt:
- media/video-reverse-play-duration-expected.txt:
- media/video-seek-after-end-expected.txt:
- media/video-seek-by-small-increment-expected.txt:
- media/video-seek-multiple-expected.txt:
- media/video-seek-no-src-exception-expected.txt:
- media/video-seek-past-end-playing-expected.txt:
- media/video-seekable-expected.txt:
- media/video-seeking-expected.txt:
- media/video-set-rate-from-pause-expected.txt:
- media/video-single-valid-source-expected.txt:
- media/video-size-expected.txt:
- media/video-source-error-expected.txt:
- media/video-source-error-no-candidate-expected.txt:
- media/video-source-expected.txt:
- media/video-source-inserted-expected.txt:
- media/video-source-load-expected.txt:
- media/video-source-none-supported-expected.txt:
- media/video-source-type-expected.txt:
- media/video-src-blob-expected.txt:
- media/video-src-change-expected.txt:
- media/video-src-empty-expected.txt:
- media/video-src-expected.txt:
- media/video-src-invalid-poster-expected.txt:
- media/video-src-invalid-remove-expected.txt:
- media/video-src-none-expected.txt:
- media/video-src-plus-source-expected.txt:
- media/video-src-remove-expected.txt:
- media/video-src-set-expected.txt:
- media/video-src-source-expected.txt:
- media/video-timeupdate-during-playback-expected.txt:
- media/video-timeupdate-reverse-play-expected.txt:
- media/video-volume-expected.txt:
- media/video-width-height-expected.txt:
- platform/mac/accessibility/media-element-expected.txt:
- platform/mac/accessibility/media-emits-object-replacement-expected.txt: Added.
- platform/mac/accessibility/media-emits-object-replacement.html: Added.
- platform/mac/accessibility/media-role-descriptions-expected.txt: Added.
- platform/mac/accessibility/media-role-descriptions.html: Added.
- platform/mac/compositing/video/video-object-fit-expected.txt:
- platform/mac/fullscreen/video-controls-override-expected.txt:
- platform/mac/media/media-can-play-wav-audio-expected.txt:
- platform/mac/media/media-can-play-webm-expected.txt:
- platform/mac/media/video-seek-past-end-paused-expected.txt:
- 5:55 AM WebKitGtkLayoutTests edited by
- (diff)
- 5:55 AM Changeset in webkit [158742] by
-
- 3 edits in trunk/Tools
[ATK] Implement tables-related attributesOf*() functions for AccessibilityUIElement
https://bugs.webkit.org/show_bug.cgi?id=118969
Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-11-06
Reviewed by Mario Sanchez Prada.
Added missing implementation of attributesOfColumnHeaders, attributesOfRowHeaders, attributesOfVisibleCells.
- DumpRenderTree/atk/AccessibilityUIElementAtk.cpp:
(AccessibilityUIElement::attributesOfChildren):
(AccessibilityUIElement::attributesOfColumnHeaders):
(AccessibilityUIElement::attributesOfRowHeaders):
(AccessibilityUIElement::attributesOfVisibleCells):
- WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
(WTR::AccessibilityUIElement::attributesOfChildren):
(WTR::AccessibilityUIElement::attributesOfColumnHeaders):
(WTR::AccessibilityUIElement::attributesOfRowHeaders):
(WTR::AccessibilityUIElement::attributesOfVisibleCells):
- 5:54 AM WebKitGtkLayoutTests edited by
- (diff)
- 5:52 AM WebKitGtkLayoutTests edited by
- (diff)
- 3:31 AM Changeset in webkit [158741] by
-
- 2 edits2 adds in trunk/LayoutTests
[ATK] accessibility/tabindex-elements-are-accessible.html is failing
https://bugs.webkit.org/show_bug.cgi?id=123884
Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-11-06
Reviewed by Mario Sanchez Prada.
Added new accessibility expectation file. ATK represents paragraph's role as a ATK_ROLE_PARAGRAPH.
- platform/efl/TestExpectations: Test is no longer failing.
- platform/efl/accessibility/tabindex-elements-are-accessible-expected.txt: Added.
- platform/gtk/accessibility/tabindex-elements-are-accessible-expected.txt: Added.
- 3:17 AM Changeset in webkit [158740] by
-
- 2 edits in trunk/LayoutTests
Unreviewed GTK gardening. Tests failing after r158195
- platform/gtk/TestExpectations: Added failure expectations.
- 3:11 AM Changeset in webkit [158739] by
-
- 3 edits6 adds in trunk
Notify nodes removal to Range/Selection after dispatching blur and mutation event
https://bugs.webkit.org/show_bug.cgi?id=123880
Reviewed by Andreas Kling.
Source/WebCore:
Merge https://chromium.googlesource.com/chromium/blink/+/b60576a0560d14f8757e58d55d37b7cefa48a6ac
In willRemoveChildren in ContainerNode.cpp, call Document::nodeChildrenWillBeRemoved after instead of
before dispatching mutation events because we need to update ranges created by those mutation event
listeners. willRemoveChild was fixed in r115686.
Tests: editing/selection/selection-change-in-blur-event-by-remove-children.html
editing/selection/selection-change-in-mutation-event-by-remove-children.html
fast/dom/Range/range-created-during-remove-children.html
- dom/ContainerNode.cpp:
(WebCore::willRemoveChildren):
LayoutTests:
- editing/selection/selection-change-in-blur-event-by-remove-children-expected.txt: Added.
- editing/selection/selection-change-in-blur-event-by-remove-children.html: Added.
- editing/selection/selection-change-in-mutation-event-by-remove-children-expected.txt: Added.
- editing/selection/selection-change-in-mutation-event-by-remove-children.html: Added.
- fast/dom/Range/range-created-during-remove-children-expected.txt: Added.
- fast/dom/Range/range-created-during-remove-children.html: Added.
- 2:55 AM Changeset in webkit [158738] by
-
- 3 edits2 adds in trunk
Fix out-of-date offset in selection range code in range.surroundContents
https://bugs.webkit.org/show_bug.cgi?id=123871
Source/WebCore:
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/c89b413ff0fc4aafa0c71d180b0b1e131bb37707
The code in Range::insertNode assumeed that the start offset of the selection range within its container
doesn't change across a call to insertBefore on the container but this is wrong. This patch recomputes
the start offset when it is used after the insertBefore call.
Test: editing/selection/range-surroundContents-with-preceding-node.html
- dom/Range.cpp:
(WebCore::Range::insertNode):
LayoutTests:
Reviewed by Andreas Kling.
- editing/selection/range-surroundContents-with-preceding-node-expected.txt: Added.
- editing/selection/range-surroundContents-with-preceding-node.html: Added.
- 2:33 AM Changeset in webkit [158737] by
-
- 2 edits in trunk/LayoutTests
[GTK] accessibility/svg-group-element-with-title.html is failing
https://bugs.webkit.org/show_bug.cgi?id=114251
Unreviewed GTK gardening.
Removed failure expectation as the test is passing since r158664.
Patch by Robert Plociennik <r.plociennik@samsung.com> on 2013-11-06
- platform/gtk/TestExpectations: The test is no longer failing.
- 2:26 AM Changeset in webkit [158736] by
-
- 13 edits2 adds in trunk/Source/WebCore
Add InlineElementBox and stop instantiating InlineBox directly.
<https://webkit.org/b/123882>
Make the InlineBox constructors protected and add a new class
called InlineElementBox on top. This is somewhat analogous to the
split between RenderText and RenderElement, and allows us to make
renderer() return a far tighter RenderBoxModelObject& instead
of a RenderObject&.
Moved over attachLine(), deleteLine() and extractLine() to start
things off. More things will follow.
Reviewed by Antti Koivisto.
- 2:21 AM Changeset in webkit [158735] by
-
- 2 edits in trunk
[EFL] Change required version of ATK to 2.10.0
https://bugs.webkit.org/show_bug.cgi?id=123883
Patch by Krzysztof Czech <k.czech@samsung.com> on 2013-11-06
Reviewed by Mario Sanchez Prada.
Changing a required version of ATK to 2.10.0
- Source/cmake/OptionsEfl.cmake:
- 1:32 AM Changeset in webkit [158734] by
-
- 3 edits2 adds in trunk
Source/WebCore: Seek for video doesn't work when playback rate is negative
https://bugs.webkit.org/show_bug.cgi?id=123791
In MediaPlayerPrivateGStreamer::seek negative playback rate was not taken to account.
Patch by Piotr Grad <p.grad@samsung.com> on 2013-11-06
Reviewed by Philippe Normand.
Test: media/video-seek-with-negative-playback.html
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamer.cpp:
(WebCore::MediaPlayerPrivateGStreamer::seek):
LayoutTests: Test for seek not working properly with negative playback rate.
https://bugs.webkit.org/show_bug.cgi?id=123791
Seek method should work properly with negative playback rate.
Patch by Piotr Grad <p.grad@samsung.com> on 2013-11-06
Reviewed by Philippe Normand.
- media/video-seek-with-negative-playback.html: Added.
- media/video-seek-with-negative-playback-expected.txt: Added.
- 12:19 AM Changeset in webkit [158733] by
-
- 2 edits in trunk/Source/WebCore
Reinstate an annoying assertion that I accidentally commented out.
- loader/icon/IconDatabase.cpp:
(WebCore::IconDatabase::synchronousIconForPageURL):
- 12:14 AM Changeset in webkit [158732] by
-
- 4 edits in trunk/Source/WebCore
[GStreamer] Override label() and language() in Audio and VideoTrackPrivateGStreamer
https://bugs.webkit.org/show_bug.cgi?id=123836
The tests are currently flakey because we only get the label and language if we get
tags after the track client is set.
Patch by Brendan Long <b.long@cablelabs.com> on 2013-11-06
Reviewed by Philippe Normand.
No new tests because the tests already exist (this fixes flakeyness).
- platform/graphics/gstreamer/AudioTrackPrivateGStreamer.h: Override label() and language() to use m_label and m_language.
- platform/graphics/gstreamer/VideoTrackPrivateGStreamer.h: Same.
- platform/graphics/gstreamer/TrackPrivateBaseGStreamer.h: Make m_label and m_language protected so they can be used in the functions above.
- 12:13 AM Changeset in webkit [158731] by
-
- 1 edit2 adds in trunk/LayoutTests
Add a test for queries whose leftmost selector matches the root node
https://bugs.webkit.org/show_bug.cgi?id=123877
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/22981c70bf93e8a07ee7b4d68a4522aee21b26ce
so that we won't introduce the regression they had.
- fast/selectors/querySelector-leftmost-selector-matches-rootNode-expected.txt: Added.
- fast/selectors/querySelector-leftmost-selector-matches-rootNode.html: Added.
- 12:09 AM Changeset in webkit [158730] by
-
- 7 edits in trunk/Source/WebCore
RenderBlockFlow should only expose its line boxes as RootInlineBox.
<https://webkit.org/b/123878>
The line boxes attached directly to a RenderBlockFlow are always
RootInlineBox objects, so call sites should always use the tightly
typed firstRootBox() and lastRootBox().
This allows the compiler to devirtualize calls to member functions
of RootInlineBox that are marked FINAL.
Reviewed by Antti Koivisto.
- 12:05 AM Changeset in webkit [158729] by
-
- 3 edits2 adds in trunk
Assertion failure end < m_runCount in WebCore::BidiRunList<WebCore::BidiRun>::reverseRuns
https://bugs.webkit.org/show_bug.cgi?id=123863
Reviewed by Andreas Kling.
Source/WebCore:
Merge https://chromium.googlesource.com/chromium/blink/+/cbaa92c763a37d89eeabd01658e522219299290c
Test: fast/text/bidi-reverse-runs-crash.html
- platform/text/BidiResolver.h:
(WebCore::BidiResolver<Iterator, Run>::createBidiRunsForLine): Don't reverse the runs if there's
nothing to be reversed.
LayoutTests:
- fast/text/bidi-reverse-runs-crash-expected.txt: Added.
- fast/text/bidi-reverse-runs-crash.html: Added.
- 12:02 AM Changeset in webkit [158728] by
-
- 2 edits in trunk/Source/WebCore
Address the review comment after r158724.
- html/RangeInputType.cpp:
(WebCore::RangeInputType::handleMouseDownEvent):
Nov 5, 2013:
- 11:31 PM Changeset in webkit [158727] by
-
- 3 edits1 add in trunk
Widget's position change should not initiate layout, only when its size changes.
https://bugs.webkit.org/show_bug.cgi?id=123860
Reviewed by Andreas Kling.
RenderWidgets initiate unnecessary layouts while scrolling when they are embedded to
overflow:scroll containers. Scroll position change doesn't dirty the render tree
so it should not trigger layout either.
.:
- ManualTests/layouts-on-renderwidgets-while-scrolling.html: Added.
Source/WebCore:
Manual test added. Unfortunately we can't test against the number of layouts yet.
- rendering/RenderWidget.cpp:
(WebCore::RenderWidget::setWidgetGeometry):
(WebCore::RenderWidget::updateWidgetGeometry):
(WebCore::RenderWidget::updateWidgetPosition):
- 11:30 PM Changeset in webkit [158726] by
-
- 3 edits8 adds in trunk/LayoutTests
Add more tests for formaction, formenctype, formmethod, formnovalidate, and formtarget attributes
https://bugs.webkit.org/show_bug.cgi?id=123876
Reviewed by Andreas Kling.
Merge tests from https://chromium.googlesource.com/chromium/blink/+/5f4ccd416fec39a6878af66e87bda191cc59ea7e
so that we won't introduce regressions they had.
- fast/forms/formaction-attribute-expected.txt:
- fast/forms/formaction-attribute.html:
- fast/forms/formmethod-attribute-input-2-expected.txt: Added.
- fast/forms/formmethod-attribute-input-2.html: Added.
- fast/forms/formtarget-attribute-input-2-expected.txt: Added.
- fast/forms/formtarget-attribute-input-2.html: Added.
- fast/forms/interactive-validation-formnovalidate-2-expected.txt: Added.
- fast/forms/interactive-validation-formnovalidate-2.html: Added.
- fast/forms/mailto/formenctype-attribute-input-2-expected.txt: Added.
- fast/forms/mailto/formenctype-attribute-input-2.html: Added.
- 11:20 PM Changeset in webkit [158725] by
-
- 2 edits in trunk/LayoutTests
Mac Mavericks rebaseline after r158714.
- platform/mac/fast/forms/textAreaLineHeight-expected.txt:
- 11:11 PM Changeset in webkit [158724] by
-
- 3 edits2 adds in trunk
Use-after-free in SliderThumbElement::dragFrom
https://bugs.webkit.org/show_bug.cgi?id=123873
Reviewed by Andreas Kling.
Source/WebCore:
Ref the SliderThumbElement since it could go away inside dragFrom.
Test: fast/forms/range/range-type-change-onchange-2.html
- html/RangeInputType.cpp:
(WebCore::RangeInputType::handleMouseDownEvent):
LayoutTests:
Merge https://chromium.googlesource.com/chromium/blink/+/04a23bfca2d04101a1828d36ff36c29f3a24f34b
- fast/forms/range/range-type-change-onchange-2-expected.txt: Added.
- fast/forms/range/range-type-change-onchange-2.html: Added.
- 10:14 PM Changeset in webkit [158723] by
-
- 3 edits in trunk/Source/WebCore
Change the order of conditions to avoid computing rendererIsEditable()
https://bugs.webkit.org/show_bug.cgi?id=123868
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/c89b413ff0fc4aafa0c71d180b0b1e131bb37707
When we need both Node::renderer() and Node::rendererIsEditable() conditions to be true to perform
some operation, it is more effective to check for renderer() first, so that if this condition fails
we can avoid unnecessary computation of rendererIsEditable().
- dom/Position.cpp:
(WebCore::nextRenderedEditable):
(WebCore::previousRenderedEditable):
- page/EventHandler.cpp:
(WebCore::EventHandler::handleMouseReleaseEvent):
- 10:02 PM Changeset in webkit [158722] by
-
- 2 edits in trunk/Source/WebCore
simpleUserAgentStyleSheet doesn't have focus ring on anchor element
https://bugs.webkit.org/show_bug.cgi?id=123867
Reviewed by Andreas Kling.
Merge https://chromium.googlesource.com/chromium/blink/+/08ecc23c4d80be9969918c4baf0ac83dc6cb6cbd
- css/CSSDefaultStyleSheets.cpp:
- 10:00 PM Changeset in webkit [158721] by
-
- 3 edits2 adds in trunk
valueForBorderRadiusShorthand returns wrong values in some case
https://bugs.webkit.org/show_bug.cgi?id=123866
Reviewed by Andreas Kling.
Source/WebCore:
Merge https://chromium.googlesource.com/chromium/blink/+/0933728126f2db06ab8e945efc98bffa2d42af1c
Because valueForBorderRadiusShorthand misses the followings:
- showHorizontalBottomRight depends on showHorizontalBottomLeft.
- showHorizontalTopRight depends on showHorizontalBottomRight (including showHorizontalBottomLeft).
See also http://dev.w3.org/csswg/css-backgrounds/#the-border-radius
Test: fast/css/getComputedStyle/getComputedStyle-borderRadius-2.html
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::getBorderRadiusShorthandValue):
LayoutTests:
- fast/css/getComputedStyle/getComputedStyle-borderRadius-2-expected.txt: Added.
- fast/css/getComputedStyle/getComputedStyle-borderRadius-2.html: Added.
- 9:50 PM Changeset in webkit [158720] by
-
- 2 edits in trunk/LayoutTests
Flaky Test: transitions/cancel-transition.html
https://bugs.webkit.org/show_bug.cgi?id=114193
Reviewed by Simon Fraser.
Merge https://chromium.googlesource.com/chromium/blink/+/983dbbff6c46b6365540bf1451f25b31d72ce893
- transitions/cancel-transition.html:
- 9:21 PM Changeset in webkit [158719] by
-
- 2 edits in trunk/Source/WebCore
Protect DOM nodes in IndentOutdentCommand::tryIndentingAsListItem()
https://bugs.webkit.org/show_bug.cgi?id=123861
Reviewed by Benjamin Poulain.
Merge https://chromium.googlesource.com/chromium/blink/+/297442eb539a2b764fdad323de79099a70179186 partially.
- editing/IndentOutdentCommand.cpp:
(WebCore::IndentOutdentCommand::tryIndentingAsListItem): Make selectedListItem, previousList, and nextList
RefPtr since they're are used after calling insertNodeBefore.
- 8:47 PM Changeset in webkit [158718] by
-
- 22 edits in trunk/Source/WebCore
Apply more unique_ptr to line box management.
<https://webkit.org/b/123857>
Make all of the functions that return newly-created line boxes
return them packed up in std::unique_ptrs.
There is one exception in RenderBlockLineLayout where the function
createInlineBoxForRenderer() is inconsistent about the ownership of
the returned object. This will be addressed by a subsequent patch.
We now "release" the line boxes into their various home structures,
so the pointer smartness doesn't go end-to-end just yet.
Reviewed by Anders Carlsson.
- 8:40 PM Changeset in webkit [158717] by
-
- 6 edits in trunk/Source/JavaScriptCore
FTL should support NewObject
https://bugs.webkit.org/show_bug.cgi?id=123849
Reviewed by Oliver Hunt.
- ftl/FTLAbstractHeapRepository.cpp:
(JSC::FTL::AbstractHeapRepository::AbstractHeapRepository):
- ftl/FTLAbstractHeapRepository.h:
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLIntrinsicRepository.h:
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::compileNewObject):
(JSC::FTL::LowerDFGToLLVM::allocate):
- 8:38 PM Changeset in webkit [158716] by
-
- 3 edits in trunk/Source/JavaScriptCore
FTL should support StringCharAt
https://bugs.webkit.org/show_bug.cgi?id=123855
Reviewed by Oliver Hunt.
This is just like GetByVal for String, so we reuse that code.
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::compileGetByVal):
(JSC::FTL::LowerDFGToLLVM::compileStringCharAt):
- 7:59 PM Changeset in webkit [158715] by
-
- 2 edits in trunk/Source/WebKit/win
Windows build fix attempt after r158704.
- FullscreenVideoController.cpp:
- 7:55 PM Changeset in webkit [158714] by
-
- 5 edits2 adds in trunk
getComputedStyle(x).lineHeight is affected by zooming
https://bugs.webkit.org/show_bug.cgi?id=123847
Reviewed by Benjamin Poulain.
Source/WebCore:
Merge https://chromium.googlesource.com/chromium/blink/+/7957097afbab2899ababd0d9c8acbf6e3eddb870
Test: fast/css/line-height-zoom-get-computed-style.html
- css/CSSComputedStyleDeclaration.cpp:
(WebCore::lineHeightFromStyle): Don't round line-height values.
- css/DeprecatedStyleBuilder.cpp:
(WebCore::ApplyPropertyLineHeight::applyValue): Use the computed value instead of the used value.
LayoutTests:
Cleaned up the test.
- fast/css/line-height-zoom-get-computed-style-expected.txt: Added.
- fast/css/line-height-zoom-get-computed-style.html: Added.
- platform/mac-mountainlion/fast/forms/textAreaLineHeight-expected.txt: Rebaselined.
- 7:50 PM Changeset in webkit [158713] by
-
- 10 edits in trunk
AX: media controls accessibility needs more work
https://bugs.webkit.org/show_bug.cgi?id=123749
Patch by James Craig <jcraig@apple.com> on 2013-11-05
Reviewed by Jer Noble.
Updated some of the control labels/roles to improve accessibility.
- Volume slider is now keyboard/screenreader accessible.
- muteButton was a checkbox toggling checked state, now a button that toggles label "mute/unmute"
- fullscreenButton was a checkbox toggling checked state, now a button that toggles label "display/exit full screen"
- captionButton was a checkbox, now a popup button that launches the newly accessible menu.
Subtitles menu is now keyboard/screenreader accessible (uses roaming tabindex).
Render dump expectations changed because volume slider is now hidden via...
...opacity/size (to make accessible without hover) instead of display:none.
Updated existing test coverage.
Source/WebCore:
- Modules/mediacontrols/mediaControlsApple.css:
(audio::-webkit-media-controls-panel .volume-box):
(audio::-webkit-media-controls-panel .volume-box:active):
(audio::-webkit-media-controls-toggle-closed-captions-button):
(audio::-webkit-media-controls-closed-captions-container .list):
(audio::-webkit-media-controls-closed-captions-container li:focus):
- Modules/mediacontrols/mediaControlsApple.js:
(Controller.prototype.createControls):
(Controller.prototype.handleFullscreenChange):
(Controller.prototype.handleMuteButtonClicked):
(Controller.prototype.handleMinButtonClicked):
(Controller.prototype.handleMaxButtonClicked):
(Controller.prototype.handleVolumeSliderChange):
(Controller.prototype.buildCaptionMenu):
(Controller.prototype.focusSiblingCaptionItem):
(Controller.prototype.handleCaptionItemKeyUp):
LayoutTests:
- platform/mac/accessibility/media-element-expected.txt:
- platform/mac/media/audio-controls-rendering-expected.txt:
- platform/mac/media/controls-after-reload-expected.txt:
- platform/mac/media/controls-strict-expected.txt:
- platform/mac/media/controls-styling-strict-expected.txt:
- platform/mac/media/controls-without-preload-expected.txt:
- 7:36 PM Changeset in webkit [158712] by
-
- 4 edits in trunk/Source/WebCore
Move some plugin-specific code from RenderWidget to RenderEmbeddedObject.
<https://webkit.org/b/123845>
All RenderWidgets representing plugins will be RenderEmbeddedObjects.
Move some of the plugin-specific logic to RenderEmbeddedObject since it
doesn't make sense for all RenderWidgets (frames, embedded documents)
to care about this.
Reviewed by Anders Carlsson.
- 6:48 PM Changeset in webkit [158711] by
-
- 3 edits in trunk/LayoutTests
Add a test to obtain offsetWidth of expanded table cell
https://bugs.webkit.org/show_bug.cgi?id=123843
Reviewed by Tim Horton.
Merge the test fix in https://chromium.googlesource.com/chromium/blink/+/b249d552497c0939d8277360b99dd3c56b0c9659.
- fast/table/table-cell-offset-width-expected.txt:
- fast/table/table-cell-offset-width.html:
- 6:40 PM Changeset in webkit [158710] by
-
- 1 edit2 adds in trunk/LayoutTests
Add a test to obtain offsetWidth of expanded table cell
https://bugs.webkit.org/show_bug.cgi?id=123843
Reviewed by Tim Horton.
Merge the test from https://chromium.googlesource.com/chromium/blink/+/58a5fac292a5b3f79b00cdc71074fbf8be2ebc2b
so that we'll never introduce the regression they had.
- fast/table/table-cell-offset-width-expected.txt: Added.
- fast/table/table-cell-offset-width.html: Added.
- 6:39 PM Changeset in webkit [158709] by
-
- 2 edits in trunk/Source/WebCore
Fix the 32-bit build.
- WebCore.exp.in:
- 6:15 PM Changeset in webkit [158708] by
-
- 4 edits7 adds in trunk
Web Inspector: Moving an element while in the DOMNodeRemoved handler will hide it in the inspector
https://bugs.webkit.org/show_bug.cgi?id=123516
Reviewed by Timothy Hatcher.
Source/WebCore:
InspectorInstrumentation::willRemoveDOMNode was actually calling both willRemoveDOMNodeImpl and
didRemoveDOMNodeImpl, making the DOMAgent unbind the element even if it was still part of the DOM.
Because of that the DOMAgent was sending two events:
- When the element was about to be removed, just before JS "DOMNodeRemoved" was triggered.
- When the element was actually removed.
Note that inspector's event #2 will not know about the node, as it just removed it from the
internal hashmap, so it will just use a nodeID == 0 for it.
This patch adds a separate call to InspectorInstrumentation::didRemoveDOMNode, just before the
element is about to be removed. The InspectorInstrumentation::willRemoveDOMNode call is now only used
by the DOMDebugger to trigger the DOM breakpoints in the Web Inspector. That feature is not exposed
in the new Inspector UI, but can be used/tested using the protocol directly.
Tests: inspector-protocol/dom-debugger/node-removed.html
inspector-protocol/dom/dom-remove-events.html
inspector-protocol/dom/remove-multiple-nodes.html
- dom/ContainerNode.cpp:
(WebCore::ContainerNode::removeBetween):
- inspector/InspectorInstrumentation.h:
(WebCore::InspectorInstrumentation::willRemoveDOMNode):
(WebCore::InspectorInstrumentation::didRemoveDOMNode):
LayoutTests:
Added tests to check that the DOM.childNodeRemoved inspector-protocol message is dispatched
correctly when DOM nodes are moved while inside the "DOMNodeRemoved" event handler.
- inspector-protocol/dom-debugger/node-removed-expected.txt: Added.
- inspector-protocol/dom-debugger/node-removed.html: Added. Checking that the DOMDebugger agent
is still sending the node-removed events.
- inspector-protocol/dom/dom-remove-events-expected.txt: Added.
- inspector-protocol/dom/dom-remove-events.html: Added. Test with a single DOM remove event.
- inspector-protocol/dom/remove-multiple-nodes-expected.txt: Added.
- inspector-protocol/dom/remove-multiple-nodes.html: Added. Test case when multiple children
are removed at once with parentNode.textContent = "String".
- 6:09 PM Changeset in webkit [158707] by
-
- 2 edits in trunk/Source/JavaScriptCore
Remove old unused code for hypothetical LLVM intrinsics
https://bugs.webkit.org/show_bug.cgi?id=123824
Reviewed by Oliver Hunt.
- ftl/FTLIntrinsicRepository.h:
- 6:07 PM Changeset in webkit [158706] by
-
- 5 edits in trunk/Source/JavaScriptCore
FTL should support String character access operations
https://bugs.webkit.org/show_bug.cgi?id=123783
Reviewed by Oliver Hunt.
Implements:
- string.length
- string[index]
- ftl/FTLAbstractHeapRepository.h:
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLIntrinsicRepository.h:
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileGetIndexedPropertyStorage):
(JSC::FTL::LowerDFGToLLVM::compileGetArrayLength):
(JSC::FTL::LowerDFGToLLVM::compileGetByVal):
- 6:03 PM Changeset in webkit [158705] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix on CMake based ports with GLES.
- CMakeLists.txt:
Added OPENGLES2_LIBRARIES and OPENGLES2_INCLUDE_DIR into the includes and
libraries list.
- 5:44 PM Changeset in webkit [158704] by
-
- 9 edits in trunk/Source/WebCore
platformCALayerDeviceScaleFactor should be const
https://bugs.webkit.org/show_bug.cgi?id=123842
Reviewed by Simon Fraser.
- WebCore.exp.in:
- platform/graphics/avfoundation/cf/MediaPlayerPrivateAVFoundationCF.cpp:
(WebCore::LayerClient::platformCALayerDeviceScaleFactor):
- platform/graphics/ca/GraphicsLayerCA.cpp:
(WebCore::GraphicsLayerCA::platformCALayerDeviceScaleFactor):
- platform/graphics/ca/GraphicsLayerCA.h:
- platform/graphics/ca/PlatformCALayerClient.h:
- platform/graphics/ca/mac/TileController.h:
- platform/graphics/ca/mac/TileController.mm:
(WebCore::TileController::platformCALayerDeviceScaleFactor):
- platform/graphics/win/MediaPlayerPrivateQuickTimeVisualContext.cpp:
(WebCore::MediaPlayerPrivateQuickTimeVisualContext::LayerClient::platformCALayerDeviceScaleFactor):
Constify PlatformCALayerClient::platformCALayerDeviceScaleFactor.
- 5:39 PM Changeset in webkit [158703] by
-
- 1 edit2 adds in trunk/LayoutTests
text-decoration-skip: ink isn't tested with underlines that don't intersect the underlined text
https://bugs.webkit.org/show_bug.cgi?id=123839
Patch by Myles C. Maxfield <mmaxfield@apple.com> on 2013-11-05
Reviewed by Simon Fraser.
text-decoration-skip: ink uses a mask to determine where the underline can be drawn. Right now,
there is not a test that makes sure that the mask always gets applied to the location
where the underline will get drawn.
- fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-non-intersecting-underline-expected.html: Added.
- fast/css3-text/css3-text-decoration/text-decoration-skip/text-decoration-skip-non-intersecting-underline.html: Added.
- 5:26 PM Changeset in webkit [158702] by
-
- 3 edits in trunk/Source/WebCore
Subresource loads should not prevent page throttling
https://bugs.webkit.org/show_bug.cgi?id=123757
Reviewed by Alexey Proskuryakov.
The page-is-loading test for inhibiting process supression is currently
too conservative, preventing supression of pages with infinitely loading
resources (commonly XHRs). Instead, just rely on the FrameLoader being
active (with hysteresis).
- loader/SubresourceLoader.cpp:
(WebCore::SubresourceLoader::init):
(WebCore::SubresourceLoader::checkForHTTPStatusCodeError):
(WebCore::SubresourceLoader::didFinishLoading):
(WebCore::SubresourceLoader::didFail):
(WebCore::SubresourceLoader::willCancel):
- loader/SubresourceLoader.h:
- remove m_activityAssertion from SubresourceLoader.
- 5:13 PM Changeset in webkit [158701] by
-
- 5 edits4 adds in trunk
[mac] PDFDocumentImage is too big if PDF has a crop box smaller than the media box
https://bugs.webkit.org/show_bug.cgi?id=123840
<rdar://problem/15308765>
Reviewed by Alexey Proskuryakov.
Test: fast/images/pdf-as-image-crop-box.html
- platform/graphics/cg/PDFDocumentImage.cpp:
(WebCore::PDFDocumentImage::size):
Use the crop box when determining the size of the image.
(WebCore::PDFDocumentImage::computeBoundsForCurrentPage):
- platform/graphics/cg/PDFDocumentImage.h:
- platform/graphics/mac/PDFDocumentImageMac.mm:
(WebCore::PDFDocumentImage::computeBoundsForCurrentPage):
Get rid of m_mediaBox, since we don't need it anymore.
(WebCore::PDFDocumentImage::drawPDFPage):
PDFKit does the translation by the crop box origin for us;
if we do it additionally, we'll be painting the wrong part of the image.
So, don't do the translation here.
- fast/images/pdf-as-image-crop-box-expected.html: Added.
- fast/images/pdf-as-image-crop-box.html: Added.
- fast/images/resources/green-1x1.pdf: Added.
- fast/images/resources/red-green-2x2-cropped-to-1x1.pdf: Added.
Add a test that ensures that PDFDocumentImage respects the PDF's crop box.
red-green-2x2-cropped-to-1x1 has a 2"x2" red square with a 1"x1" green
square centered in it, a media box of 2"x2", and a crop box of 1"x1"
offset by 0.5", 0.5". green-1x1 has a 1"x1" green square. The two images
should render the same if the crop box is being respected correctly.
- 4:58 PM Changeset in webkit [158700] by
-
- 5 edits1 copy in trunk/Source/WebKit2
Begin work on decoding invocations
https://bugs.webkit.org/show_bug.cgi?id=123838
Reviewed by Dan Bernstein.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeInvocation):
Declare the type string and selector keys as constants.
(encodeObject):
Make sure to encode the class name for NSInvocations as well.
(decodeInvocation):
Figure out the local and remove method signatures and make sure that they are equal.
- Shared/API/Cocoa/WKRemoteObjectInterface.mm:
(methodArgumentTypeEncodingForSelector):
Helper function that returns the type encoding for a given selector.
(-[WKRemoteObjectInterface _methodSignatureForSelector:]):
Helper function that returns a method signature for the method with the name referred to by selector.
- Shared/API/Cocoa/WKRemoteObjectInterfaceInternal.h: Added.
Add internal header.
- Shared/API/Cocoa/WKRemoteObjectRegistry.mm:
(-[WKRemoteObjectRegistry _invokeMessageWithInterfaceIdentifier:encodedInvocation:]):
Pass the right object to the WKRemoteObjectDecoder initializer and decode the invocation.
- WebKit2.xcodeproj/project.pbxproj:
Add internal header.
- 3:58 PM Changeset in webkit [158699] by
-
- 4 edits in trunk/Source/WebKit2
WKRemoteObjectDecoder should know which interface it's decoding for
https://bugs.webkit.org/show_bug.cgi?id=123833
Reviewed by Andreas Kling.
Move the interface identifier out into the root object body dictionary and make
the encoded invocation a sibling of it. That way we can look up the interface before
creating the decoder.
Also, manage exported objects and interfaces in a separate hash map.
- Shared/API/Cocoa/WKRemoteObjectCoder.h:
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(-[WKRemoteObjectDecoder initWithInterface:rootObjectDictionary:WebKit::]):
(decodeInvocation):
(decodeObject):
- Shared/API/Cocoa/WKRemoteObjectRegistry.mm:
(-[WKRemoteObjectRegistry registerExportedObject:interface:]):
(-[WKRemoteObjectRegistry unregisterExportedObject:interface:]):
(-[WKRemoteObjectRegistry _sendInvocation:interface:]):
(-[WKRemoteObjectRegistry _handleMessageWithName:body:]):
(-[WKRemoteObjectRegistry _invokeMessageWithInterfaceIdentifier:encodedInvocation:]):
- 3:45 PM Changeset in webkit [158698] by
-
- 8 edits1 add in trunk/Source/WebCore
Factor index cache for NodeLists and HTMLCollections to a class
https://bugs.webkit.org/show_bug.cgi?id=123823
Reviewed by Ryosuke Niwa.
Implement index cache class that can used by NodeLists and HTMLCollections that currently
each have implementations of their own.
This patch also implements ChildNodeList and LiveNodeList using CollectionIndexCache.
HTMLCollection is will be transitioned later.
- GNUmakefile.list.am:
- WebCore.vcxproj/WebCore.vcxproj:
- WebCore.xcodeproj/project.pbxproj:
- dom/ChildNodeList.cpp:
(WebCore::ChildNodeList::ChildNodeList):
(WebCore::ChildNodeList::length):
(WebCore::ChildNodeList::item):
The client calls to cache to for indexed and size access.
(WebCore::ChildNodeList::collectionFirst):
(WebCore::ChildNodeList::collectionLast):
(WebCore::ChildNodeList::collectionTraverseForward):
(WebCore::ChildNodeList::collectionTraverseBackward):
Cache calls back to these as needed to do the actual traversal.
(WebCore::ChildNodeList::invalidateCache):
- dom/ChildNodeList.h:
- dom/CollectionIndexCache.h: Added.
Templated cache class itself.
(WebCore::::CollectionIndexCache):
(WebCore::::nodeCount):
(WebCore::::nodeBeforeCached):
(WebCore::::nodeAfterCached):
(WebCore::::nodeAt):
(WebCore::::invalidate):
- dom/LiveNodeList.cpp:
(WebCore::firstMatchingElement):
(WebCore::nextMatchingElement):
(WebCore::traverseMatchingElementsForward):
(WebCore::LiveNodeList::collectionFirst):
(WebCore::LiveNodeList::collectionLast):
(WebCore::LiveNodeList::collectionTraverseForward):
(WebCore::LiveNodeList::collectionTraverseBackward):
(WebCore::LiveNodeList::length):
(WebCore::LiveNodeList::item):
(WebCore::LiveNodeList::invalidateCache):
- dom/LiveNodeList.h:
(WebCore::LiveNodeList::LiveNodeList):
- 3:14 PM Changeset in webkit [158697] by
-
- 6 edits in trunk
Full width semicolon is wrong in vertical text.
https://bugs.webkit.org/show_bug.cgi?id=123814
<rdar://problem/15312541>
Reviewed by Benjamin Poulain.
Source/WebCore:
The full width semicolon should always be upright.
Adding it to the list of characters that should
ignore rotation.
- platform/graphics/FontGlyphs.cpp:
(WebCore::shouldIgnoreRotation):
LayoutTests:
Extended the existing test to include the full width
semicolon.
- platform/mac/fast/text/vertical-no-sideways.html:
- platform/mac/platform/mac/fast/text/vertical-no-sideways-expected.txt:
- platform/mac-mountainlion/platform/mac/fast/text/vertical-no-sideways-expected.txt
- 3:00 PM Changeset in webkit [158696] by
-
- 4 edits in trunk/Source/WebKit2
Add support for decoding NSStrings
https://bugs.webkit.org/show_bug.cgi?id=123829
Reviewed by Andreas Kling.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeObject):
(-[WKRemoteObjectDecoder allowsKeyedCoding]):
Always return YES.
(-[WKRemoteObjectDecoder containsValueForKey:]):
Look up the key in the current dictionary.
(-[WKRemoteObjectDecoder decodeBytesForKey:returnedLength:]):
Try to get the WebData object and return its data + size.
(-[WKRemoteObjectDecoder requiresSecureCoding]):
Return YES.
(checkIfClassIsAllowed):
Check if the class or any of its superclasses are are allowed.
(validateClass):
Call checkIfClassIsAllowed and validate that the class conforms to NSSecureCoding.
(decodeObject):
Get the class name, verify that the class exists and is allowed.
Allocate and initialize an object using initWithCoder:.
(-[WKRemoteObjectDecoder decodeObjectOfClasses:forKey:]):
Set the allowed classes, look up the object in _currentDictionary and call decodeObject.
(-[WKRemoteObjectDecoder allowedClasses]):
Return _allowedClasses.
- Shared/API/Cocoa/WKRemoteObjectRegistry.mm:
(-[WKRemoteObjectRegistry _sendInvocation:interface:]):
Declare interfaceIdentifier as a constant.
(-[WKRemoteObjectRegistry _invokeMessageWithBody:]):
Decode the interface identifier.
- Shared/ImmutableDictionary.h:
(WebKit::ImmutableDictionary::get):
(WebKit::ImmutableDictionary::size):
(WebKit::ImmutableDictionary::map):
Make member functions const.
- 2:51 PM Changeset in webkit [158695] by
-
- 2 edits in trunk/Source/JavaScriptCore
ObjCCallbackFunctionImpl's NSInvocation shouldn't retain its target or arguments
https://bugs.webkit.org/show_bug.cgi?id=123822
Reviewed by Geoffrey Garen.
Using -retainArguments on ObjCCallbackFunctionImpl's NSInvocation leads to memory leaks.
We should handle retaining/releasing the target ourselves, and we should never retain the arguments.
- API/ObjCCallbackFunction.mm:
(JSC::ObjCCallbackFunctionImpl::~ObjCCallbackFunctionImpl):
(JSC::ObjCCallbackFunctionImpl::name):
(objCCallbackFunctionForInvocation):
(objCCallbackFunctionForMethod):
(objCCallbackFunctionForBlock):
- 2:44 PM Changeset in webkit [158694] by
-
- 2 edits in trunk/Source/WebKit2
Fix Mountain Lion Debug bot after r158689
Unreviewed.
It looks like WebGeolocationManagerProxy::stopUpdating() and WebGeolocationManagerProxy::processDidClose()
are racing in some cases, causing the assertion to fail.
That case is handled properly in the last if() branch of WebGeolocationManagerProxy::removeRequester().
This patch remove the overzealous assertion.
- UIProcess/WebGeolocationManagerProxy.cpp:
(WebKit::WebGeolocationManagerProxy::removeRequester):
- 2:38 PM Changeset in webkit [158693] by
-
- 3 edits in trunk/Source/WebCore
Remove unused RenderWidget::notifyWidget().
Rubber-stamped by Anders Carlsson.
- 2:30 PM Changeset in webkit [158692] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix build for architectures with 4 argument registers (broken since r158681).
https://bugs.webkit.org/show_bug.cgi?id=123826
Patch by Julien Brianceau <jbriance@cisco.com> on 2013-11-05
Reviewed by Michael Saboff.
- jit/CCallHelpers.h:
(JSC::CCallHelpers::setupArgumentsWithExecState):
(JSC::CCallHelpers::setupArguments):
- 2:04 PM Changeset in webkit [158691] by
-
- 5 edits2 adds in trunk/Source/WebKit2
Remote Layer Tree: Apply layer changes to LayerTypeCustom layers to the custom layer in the Web process, not to the CALayerHost
https://bugs.webkit.org/show_bug.cgi?id=123818
Reviewed by Anders Carlsson.
Changes to the properties of a PlatformCALayer of type LayerTypeCustom are intended
to affect the custom CALayer; however, we were bundling them up with the transaction
and applying them to the CALayerHost, leading to important properties being lost.
Instead, apply them to the Web-process-side CALayer when building the transaction.
- Shared/mac/RemoteLayerTreePropertyApplier.h: Added.
- Shared/mac/RemoteLayerTreePropertyApplier.mm: Added.
(WebKit::cgColorFromColor):
(WebKit::toCAFilterType):
(WebKit::RemoteLayerTreePropertyApplier::applyPropertiesToLayer):
(WebKit::RemoteLayerTreePropertyApplier::disableActionsForLayer):
Move code to apply LayerProperties to a CALayer from RemoteLayerTreeHost.
Move code to disable actions on a CALayer from RemoteLayerTreeHost.
- UIProcess/mac/RemoteLayerTreeHost.mm:
(WebKit::RemoteLayerTreeHost::commit):
(WebKit::RemoteLayerTreeHost::createLayer):
Use RemoteLayerTreePropertyApplier.
Hand it a map of LayerID->CALayer so that it can look up related layers
for children and mask layers.
- WebKit2.xcodeproj/project.pbxproj:
Add RemoteLayerTreePropertyApplier.{h,mm}
- WebProcess/WebPage/mac/PlatformCALayerRemote.cpp:
(PlatformCALayerRemote::recursiveBuildTransaction):
Upon commit, apply changes to LayerTypeCustom layers to the platform layer.
Setting children or maskLayer won't work, since we don't know about other raw CALayers.
This is OK, since nothing uses those properties on custom layers.
- WebProcess/WebPage/mac/PlatformCALayerRemoteCustom.cpp:
(PlatformCALayerRemoteCustom::PlatformCALayerRemoteCustom):
Disable actions on the root custom layer.
- 1:21 PM Changeset in webkit [158690] by
-
- 4 edits in trunk/Source/WebKit2
Begin work on a WKRemoteObjectDecoder object
https://bugs.webkit.org/show_bug.cgi?id=123819
Reviewed by Dan Bernstein.
- Shared/API/Cocoa/WKRemoteObjectCoder.h:
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(-[WKRemoteObjectDecoder initWithRootObjectDictionary:]):
Add designated initializer.
- Shared/API/Cocoa/WKRemoteObjectRegistry.mm:
(-[WKRemoteObjectRegistry _handleMessageWithName:body:]):
If the message has the expected name and body type, pass it along to -_invokeMessageWithBody:.
(-[WKRemoteObjectRegistry _invokeMessageWithBody:]):
Create a decoder.
- 1:17 PM Changeset in webkit [158689] by
-
- 18 edits5 adds in trunk
[WK2] Add a WebKit2 API for Geolocation's highAccuracy
https://bugs.webkit.org/show_bug.cgi?id=123786
Reviewed by Darin Adler.
Source/WebKit2:
This adds support for highAccuracy Geolocation with WebKit2.
The key is to track which page/requester need what kind of geolocation
in order to change between high and low accuracy as pages run and disappear.
WebGeolocationManager and WebGeolocationManagerProxy have very similar roles
but for different sources:
-WebGeolocationManager tracks which live page require high accuracy geolocation.
When the state changes, it forward the information to the UIProcess.
-WebGeolocationManagerProxy tracks which WebContent processes needs high accuracy.
- Shared/APIClientTraits.cpp:
- Shared/APIClientTraits.h:
- UIProcess/API/C/WKGeolocationManager.h:
- UIProcess/WebGeolocationManagerProxy.cpp:
(WebKit::WebGeolocationManagerProxy::startUpdating):
(WebKit::WebGeolocationManagerProxy::removeRequester):
(WebKit::WebGeolocationManagerProxy::setEnableHighAccuracy):
- UIProcess/WebGeolocationManagerProxy.h:
(WebKit::WebGeolocationManagerProxy::isUpdating):
(WebKit::WebGeolocationManagerProxy::isHighAccuracyEnabled):
- UIProcess/WebGeolocationManagerProxy.messages.in:
- UIProcess/WebGeolocationProvider.cpp:
(WebKit::WebGeolocationProvider::setEnableHighAccuracy):
- UIProcess/WebGeolocationProvider.h:
- WebProcess/Geolocation/WebGeolocationManager.cpp:
(WebKit::WebGeolocationManager::registerWebPage):
(WebKit::WebGeolocationManager::unregisterWebPage):
(WebKit::WebGeolocationManager::setEnableHighAccuracyForPage):
- WebProcess/Geolocation/WebGeolocationManager.h:
(WebKit::WebGeolocationManager::isUpdating):
(WebKit::WebGeolocationManager::isHighAccuracyEnabled):
- WebProcess/WebCoreSupport/WebGeolocationClient.cpp:
(WebKit::WebGeolocationClient::setEnableHighAccuracy):
Tools:
Add basic testing for the Geolocation API (start, stop and change accuracy).
- TestWebKitAPI/GNUmakefile.am:
- TestWebKitAPI/PlatformEfl.cmake:
- TestWebKitAPI/PlatformGTK.cmake:
- TestWebKitAPI/TestWebKitAPI.xcodeproj/project.pbxproj:
- TestWebKitAPI/Tests/WebKit2/Geolocation.cpp: Added.
(TestWebKitAPI::operator<<):
(TestWebKitAPI::GeolocationStateTracker::~GeolocationStateTracker):
(TestWebKitAPI::GeolocationStateTracker::eventsChanged):
(TestWebKitAPI::GeolocationStateTracker::startUpdatingCallback):
(TestWebKitAPI::GeolocationStateTracker::stopUpdatingCallback):
(TestWebKitAPI::GeolocationStateTracker::setEnableHighAccuracyCallback):
(TestWebKitAPI::decidePolicyForGeolocationPermissionRequestCallBack):
(TestWebKitAPI::setupGeolocationProvider):
(TestWebKitAPI::setupView):
(TestWebKitAPI::GeolocationBasicStateTracker::GeolocationBasicStateTracker):
(TestWebKitAPI::GeolocationBasicStateTracker::eventsChanged):
(TestWebKitAPI::GeolocationBasicWithHighAccuracyStateTracker::GeolocationBasicWithHighAccuracyStateTracker):
(TestWebKitAPI::GeolocationBasicWithHighAccuracyStateTracker::eventsChanged):
(TestWebKitAPI::GeolocationTransitionToHighAccuracyStateTracker::GeolocationTransitionToHighAccuracyStateTracker):
(TestWebKitAPI::GeolocationTransitionToHighAccuracyStateTracker::eventsChanged):
(TestWebKitAPI::GeolocationTransitionToLowAccuracyStateTracker::GeolocationTransitionToLowAccuracyStateTracker):
(TestWebKitAPI::GeolocationTransitionToLowAccuracyStateTracker::eventsChanged):
(TestWebKitAPI::didFinishLoadForFrame):
- TestWebKitAPI/Tests/WebKit2/geolocationGetCurrentPosition.html: Added.
- TestWebKitAPI/Tests/WebKit2/geolocationGetCurrentPositionWithHighAccuracy.html: Added.
- TestWebKitAPI/Tests/WebKit2/geolocationWatchPosition.html: Added.
- TestWebKitAPI/Tests/WebKit2/geolocationWatchPositionWithHighAccuracy.html: Added.
- WebKitTestRunner/GeolocationProviderMock.cpp:
(WTR::GeolocationProviderMock::GeolocationProviderMock):
- 1:16 PM Changeset in webkit [158688] by
-
- 10 edits in trunk
Unreviewed, rolling out r158678.
http://trac.webkit.org/changeset/158678
https://bugs.webkit.org/show_bug.cgi?id=123820
Causes a new debug assertion failure on the Mavericks test
system. (Requested by bfulgham on #webkit).
Source/WebCore:
- rendering/mathml/RenderMathMLOperator.cpp:
LayoutTests:
- TestExpectations:
- mathml/presentation/mo-stretch.html:
- platform/gtk/TestExpectations:
- platform/gtk/mathml/presentation/mo-stretch-expected.png:
- platform/gtk/mathml/presentation/mo-stretch-expected.txt:
- platform/mac/mathml/presentation/mo-stretch-expected.png:
- platform/mac/mathml/presentation/mo-stretch-expected.txt:
- 1:04 PM Changeset in webkit [158687] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix register allocation inside control flow in GetByVal String
https://bugs.webkit.org/show_bug.cgi?id=123816
Reviewed by Geoffrey Garen.
- dfg/DFGSpeculativeJIT.cpp:
(JSC::DFG::SpeculativeJIT::compileGetByValOnString):
- 1:03 PM Changeset in webkit [158686] by
-
- 2 edits in trunk/Source/JavaScriptCore
Remove FTL::LowerDFGToLLVM::compileJSConstant()
https://bugs.webkit.org/show_bug.cgi?id=123817
Reviewed by Geoffrey Garen.
- ftl/FTLLowerDFGToLLVM.cpp:
- 12:56 PM Changeset in webkit [158685] by
-
- 6 edits in trunk
Implement more NSCoder methods
https://bugs.webkit.org/show_bug.cgi?id=123815
Reviewed by Dan Bernstein.
Source/WebKit2:
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeObject):
Assert that object is not nil.
(createEncodedObject):
Handle nil objects.
(-[WKRemoteObjectEncoder encodeValueOfObjCType:at:]):
Call the right object stream encoding function based on the object type.
(-[WKRemoteObjectEncoder encodeBool:forKey:]):
(-[WKRemoteObjectEncoder encodeInt64:forKey:]):
(-[WKRemoteObjectEncoder encodeDouble:forKey:]):
Create APIObjects and add them to the current dictionary.
Tools:
Add a method that takes an NSArray, an NSDictionary and an NSURLRequest.
- TestWebKitAPI/Tests/WebKit2ObjC/WKRemoteObjectRegistry.mm:
(TestWebKitAPI::TEST):
- TestWebKitAPI/Tests/mac/WKRemoteObjectRegistry_Bundle.mm:
(-[BundleObject testMethodWithArray:dictionary:request:]):
- TestWebKitAPI/Tests/mac/WKRemoteObjectRegistry_Shared.h:
- 11:34 AM Changeset in webkit [158684] by
-
- 2 edits in trunk/Source/WebKit2
Encode the class name
https://bugs.webkit.org/show_bug.cgi?id=123813
Reviewed by Dan Bernstein.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(encodeObject):
Get the Class using -[NSObject classForCoder] and encode its name in the object dictionary.
- 11:24 AM Changeset in webkit [158683] by
-
- 2 edits in trunk/Source/WebKit2
Clean up the WKRemoteObjectEncoder code
https://bugs.webkit.org/show_bug.cgi?id=123811
Reviewed by Dan Bernstein.
Add a new object stream array to be used for the non-keyed encoding values
and free functions for encoding values to the object stream. Simplify object encoding
by moving the dictionary creation out into a separate function and ditching the block based methods.
- Shared/API/Cocoa/WKRemoteObjectCoder.mm:
(ensureObjectStream):
Add helper function to create an object stream.
(encodeToObjectStream):
Add overloads for encoding values into the object streams.
(encodeInvocation):
Add helper function for encoding an NSInvocation.
(encodeObject):
Call encodeInvocation if needed, otherwise just use encodeWithCoder:.
(createEncodedObject):
Helper function that sets up a dictionary, encodes the object into the dictionary and then returns the dictionary.
(-[WKRemoteObjectEncoder encodeObject:forKey:]):
Call createEncodedObject.
- 11:16 AM Changeset in webkit [158682] by
-
- 4 edits2 adds in trunk
ASSERTION FAILED: isHTMLTitleElement(m_titleElement.get()) in WebCore::Document::setTitle
https://bugs.webkit.org/show_bug.cgi?id=122092
Reviewed by Darin Adler.
Source/WebCore:
Remove a bogus assert in Document::setTitle().
m_titleElement can be either of HTMLTitleElement or SVGTitleElement. The assertion was wrong.
Backported from Blink:
https://src.chromium.org/viewvc/blink?revision=158620&view=revision
Test: svg/custom/title-assertion.html
- dom/Document.cpp:
(WebCore::Document::setTitle):
- svg/SVGTitleElement.cpp:
(WebCore::SVGTitleElement::insertedInto):
LayoutTests:
- svg/custom/title-assertion-expected.txt: Added.
- svg/custom/title-assertion.html: Added.
- 10:56 AM Changeset in webkit [158681] by
-
- 13 edits in trunk/Source/JavaScriptCore
FTL should support PutById
https://bugs.webkit.org/show_bug.cgi?id=123784
Reviewed by Geoffrey Garen.
- ftl/FTLAbbreviations.h:
(JSC::FTL::buildCall):
- ftl/FTLCapabilities.cpp:
(JSC::FTL::canCompile):
- ftl/FTLCompile.cpp:
(JSC::FTL::generateICFastPath):
(JSC::FTL::fixFunctionBasedOnStackMaps):
- ftl/FTLInlineCacheDescriptor.h:
(JSC::FTL::InlineCacheDescriptor::InlineCacheDescriptor):
(JSC::FTL::GetByIdDescriptor::GetByIdDescriptor):
(JSC::FTL::PutByIdDescriptor::PutByIdDescriptor):
(JSC::FTL::PutByIdDescriptor::ecmaMode):
(JSC::FTL::PutByIdDescriptor::putKind):
- ftl/FTLIntrinsicRepository.h:
- ftl/FTLLowerDFGToLLVM.cpp:
(JSC::FTL::LowerDFGToLLVM::compileNode):
(JSC::FTL::LowerDFGToLLVM::compilePutById):
- ftl/FTLOutput.h:
(JSC::FTL::Output::call):
- ftl/FTLSlowPathCall.cpp:
(JSC::FTL::callOperation):
- ftl/FTLSlowPathCall.h:
- ftl/FTLState.h:
- jit/CCallHelpers.h:
(JSC::CCallHelpers::setupArguments):
- runtime/Executable.h:
(JSC::ScriptExecutable::ecmaMode):
- 10:53 AM Changeset in webkit [158680] by
-
- 2 edits in trunk/Source/JavaScriptCore
GetById->GetByOffset and PutById->PutByOffset folding should mark haveStructures since it may result in structure transition watchpoints
https://bugs.webkit.org/show_bug.cgi?id=123788
Reviewed by Geoffrey Garen.
haveStructures is true if there are any currentlyKnownStructures that have
interesting values, since that's the only time when clobbering needs to do things.
It's a really important compile-time optimization. But that also means that anytime
we might cause currentlyKnownStructures to get set - like when we might insert some
structure transition watchpoints - we need to set haveStructures. We were forgetting
to do that for GetById->GetByOffset and PutById->PutByOffset because, I guess, we
forgot that those might insert structure transition watchpoints.
- dfg/DFGAbstractInterpreterInlines.h:
(JSC::DFG::::executeEffects):
- 10:50 AM Changeset in webkit [158679] by
-
- 3 edits in trunk/Tools
Update ReducedFTL
https://bugs.webkit.org/show_bug.cgi?id=123805
Reviewed by Sam Weinig.
- Make ReducedFTL build with debug info.
- Give ReducedFTL a --loop mode that runs everything in a loop. Great for finding memory leaks and attaching a profiler.
- Reorder the passes so that they match the FTL.
- Make it possible to change the backend opt level and enable the fast isel.
- ReducedFTL/ReducedFTL.c:
(usage):
(roundUpSize):
(mmAllocateCodeSection):
(main):
- ReducedFTL/build.sh:
- 10:06 AM Changeset in webkit [158678] by
-
- 10 edits in trunk
[MathML] Poor spacing around delimiters in MathML Torture Test 14
https://bugs.webkit.org/show_bug.cgi?id=122837
Reviewed by Brent Fulgham.
Instead of stretching the vertical bar with the stretchable version, just repeat
the normal vertical bar. This follows what Gecko does when rendering tall vertical
bars and also works around an issue with STIX fonts leading to poor spacing in
formulas.
Source/WebCore:
- rendering/mathml/RenderMathMLOperator.cpp: Stretch the vertical bar with the
normal variant.
LayoutTests:
- mathml/presentation/mo-stretch.html: Reworked this test to show
stretching of all stretchable characters, which reveals a bug with
the double vertical bar (covered by http://wkbug.com/123543).
- platform/gtk/TestExpectations:
- platform/gtk/mathml/presentation/mo-stretch-expected.png:
- platform/gtk/mathml/presentation/mo-stretch-expected.txt:
- platform/mac/mathml/presentation/mo-stretch-expected.png:
- platform/mac/mathml/presentation/mo-stretch-expected.txt:
- 10:05 AM Changeset in webkit [158677] by
-
- 3 edits in trunk/Source/JavaScriptCore
[mips] Make regTx registers match between JSInterfaceJIT and GPRInfo.
https://bugs.webkit.org/show_bug.cgi?id=123807
Patch by Julien Brianceau <jbriance@cisco.com> on 2013-11-05
Reviewed by Mark Lam.
- jit/GPRInfo.h:
(JSC::GPRInfo::toIndex):
- jit/JSInterfaceJIT.h:
- 10:02 AM Changeset in webkit [158676] by
-
- 3 edits3 adds in trunk
XSSAuditor should catch reflected srcdoc properties even without a <frame> tag injection
From Blink r160615 by <tsepez@chromium.org>
https://src.chromium.org/viewvc/blink?view=rev&revision=160615
Source/WebCore:
Test: http/tests/security/xssAuditor/iframe-srcdoc-property-blocked.html
- html/parser/XSSAuditor.cpp:
(WebCore::XSSAuditor::filterIframeToken):
LayoutTests:
- http/tests/security/xssAuditor/iframe-srcdoc-property-blocked-expected.txt: Added.
- http/tests/security/xssAuditor/iframe-srcdoc-property-blocked.html: Added.
- http/tests/security/xssAuditor/resources/echo-frame-src.pl: Added.
- 8:23 AM Changeset in webkit [158675] by
-
- 2 edits6 adds in trunk/LayoutTests
Unreviewed EFL gardening
Add baselines for tests marked as missing.
- platform/efl-wk1/TestExpectations:
- platform/efl/css3/masking/mask-luminance-png-expected.txt: Added.
- platform/efl/fast/css/color-correction-untagged-images-expected.png: Added.
- platform/efl/fast/css/color-correction-untagged-images-expected.txt: Added.
- platform/efl/fast/regions/iframe-html-collected-expected.txt: Added.
- platform/efl/fast/repaint/hover-pseudo-borders-expected.png: Added.
- platform/efl/fast/repaint/hover-pseudo-borders-expected.txt: Added.
- 8:16 AM Changeset in webkit [158674] by
-
- 8 edits in trunk/Tools
AX: switch DRT AX methods to use nullptr
https://bugs.webkit.org/show_bug.cgi?id=123773
Reviewed by Andreas Kling.
Switch AX related code in DRT and WKTR to use nullptr.
- DumpRenderTree/AccessibilityUIElement.cpp:
(AccessibilityUIElement::startTextMarker):
(AccessibilityUIElement::endTextMarker):
- DumpRenderTree/mac/AccessibilityControllerMac.mm:
(findAccessibleObjectById):
(AccessibilityController::accessibleElementById):
- DumpRenderTree/mac/AccessibilityUIElementMac.mm:
(AccessibilityUIElement::getChildAtIndex):
(AccessibilityUIElement::linkedUIElementAtIndex):
(AccessibilityUIElement::ariaOwnsElementAtIndex):
(AccessibilityUIElement::ariaFlowToElementAtIndex):
(AccessibilityUIElement::disclosedRowAtIndex):
(AccessibilityUIElement::selectedChildAtIndex):
(AccessibilityUIElement::selectedRowAtIndex):
(AccessibilityUIElement::rowAtIndex):
(AccessibilityUIElement::titleUIElement):
(AccessibilityUIElement::parentElement):
(AccessibilityUIElement::disclosedByRow):
(AccessibilityUIElement::stringAttributeValue):
(AccessibilityUIElement::uiElementAttributeValue):
(AccessibilityUIElement::role):
(AccessibilityUIElement::subrole):
(AccessibilityUIElement::roleDescription):
(AccessibilityUIElement::title):
(AccessibilityUIElement::description):
(AccessibilityUIElement::orientation):
(AccessibilityUIElement::stringValue):
(AccessibilityUIElement::language):
(AccessibilityUIElement::helpText):
(AccessibilityUIElement::valueDescription):
(AccessibilityUIElement::speak):
(AccessibilityUIElement::classList):
(AccessibilityUIElement::ariaDropEffects):
(AccessibilityUIElement::rangeForLine):
(AccessibilityUIElement::rangeForPosition):
(AccessibilityUIElement::boundsForRange):
(AccessibilityUIElement::stringForRange):
(AccessibilityUIElement::attributedStringForRange):
(AccessibilityUIElement::uiElementForSearchPredicate):
(AccessibilityUIElement::attributesOfColumnHeaders):
(AccessibilityUIElement::attributesOfRowHeaders):
(AccessibilityUIElement::attributesOfColumns):
(AccessibilityUIElement::attributesOfRows):
(AccessibilityUIElement::attributesOfVisibleCells):
(AccessibilityUIElement::attributesOfHeader):
(AccessibilityUIElement::rowIndexRange):
(AccessibilityUIElement::columnIndexRange):
(AccessibilityUIElement::cellForColumnAndRow):
(AccessibilityUIElement::horizontalScrollbar):
(AccessibilityUIElement::verticalScrollbar):
(AccessibilityUIElement::pathDescription):
(AccessibilityUIElement::selectedTextRange):
(AccessibilityUIElement::url):
(AccessibilityUIElement::textMarkerRangeForElement):
(AccessibilityUIElement::textMarkerForIndex):
(AccessibilityUIElement::previousTextMarker):
(AccessibilityUIElement::nextTextMarker):
(AccessibilityUIElement::stringForTextMarkerRange):
(AccessibilityUIElement::textMarkerRangeForMarkers):
(AccessibilityUIElement::startTextMarkerForTextMarkerRange):
(AccessibilityUIElement::endTextMarkerForTextMarkerRange):
(AccessibilityUIElement::endTextMarkerForBounds):
(AccessibilityUIElement::startTextMarkerForBounds):
(AccessibilityUIElement::textMarkerForPoint):
(AccessibilityUIElement::accessibilityElementForTextMarker):
(AccessibilityUIElement::startTextMarker):
(AccessibilityUIElement::endTextMarker):
(AccessibilityUIElement::supportedActions):
(AccessibilityUIElement::mathPostscriptsDescription):
(AccessibilityUIElement::mathPrescriptsDescription):
- WebKitTestRunner/InjectedBundle/AccessibilityController.cpp:
(WTR::AccessibilityController::accessibleElementById):
- WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
(WTR::AccessibilityUIElement::startTextMarker):
(WTR::AccessibilityUIElement::endTextMarker):
- WebKitTestRunner/InjectedBundle/mac/AccessibilityControllerMac.mm:
(WTR::findAccessibleObjectById):
(WTR::AccessibilityController::accessibleElementById):
- WebKitTestRunner/InjectedBundle/mac/AccessibilityUIElementMac.mm:
(WTR::AccessibilityUIElement::childAtIndex):
(WTR::AccessibilityUIElement::linkedUIElementAtIndex):
(WTR::AccessibilityUIElement::ariaOwnsElementAtIndex):
(WTR::AccessibilityUIElement::ariaFlowToElementAtIndex):
(WTR::AccessibilityUIElement::disclosedRowAtIndex):
(WTR::AccessibilityUIElement::rowAtIndex):
(WTR::AccessibilityUIElement::selectedChildAtIndex):
(WTR::AccessibilityUIElement::selectedRowAtIndex):
(WTR::AccessibilityUIElement::titleUIElement):
(WTR::AccessibilityUIElement::parentElement):
(WTR::AccessibilityUIElement::disclosedByRow):
(WTR::AccessibilityUIElement::stringAttributeValue):
(WTR::AccessibilityUIElement::uiElementAttributeValue):
(WTR::AccessibilityUIElement::role):
(WTR::AccessibilityUIElement::subrole):
(WTR::AccessibilityUIElement::roleDescription):
(WTR::AccessibilityUIElement::title):
(WTR::AccessibilityUIElement::description):
(WTR::AccessibilityUIElement::orientation):
(WTR::AccessibilityUIElement::stringValue):
(WTR::AccessibilityUIElement::language):
(WTR::AccessibilityUIElement::helpText):
(WTR::AccessibilityUIElement::valueDescription):
(WTR::AccessibilityUIElement::classList):
(WTR::AccessibilityUIElement::speak):
(WTR::AccessibilityUIElement::ariaDropEffects):
(WTR::AccessibilityUIElement::rangeForLine):
(WTR::AccessibilityUIElement::rangeForPosition):
(WTR::AccessibilityUIElement::boundsForRange):
(WTR::AccessibilityUIElement::stringForRange):
(WTR::AccessibilityUIElement::attributedStringForRange):
(WTR::AccessibilityUIElement::uiElementForSearchPredicate):
(WTR::AccessibilityUIElement::attributesOfColumnHeaders):
(WTR::AccessibilityUIElement::attributesOfRowHeaders):
(WTR::AccessibilityUIElement::attributesOfColumns):
(WTR::AccessibilityUIElement::attributesOfRows):
(WTR::AccessibilityUIElement::attributesOfVisibleCells):
(WTR::AccessibilityUIElement::attributesOfHeader):
(WTR::AccessibilityUIElement::rowIndexRange):
(WTR::AccessibilityUIElement::columnIndexRange):
(WTR::AccessibilityUIElement::cellForColumnAndRow):
(WTR::AccessibilityUIElement::horizontalScrollbar):
(WTR::AccessibilityUIElement::verticalScrollbar):
(WTR::AccessibilityUIElement::selectedTextRange):
(WTR::AccessibilityUIElement::url):
(WTR::AccessibilityUIElement::textMarkerRangeForElement):
(WTR::AccessibilityUIElement::previousTextMarker):
(WTR::AccessibilityUIElement::nextTextMarker):
(WTR::AccessibilityUIElement::stringForTextMarkerRange):
(WTR::AccessibilityUIElement::textMarkerRangeForMarkers):
(WTR::AccessibilityUIElement::startTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::endTextMarkerForTextMarkerRange):
(WTR::AccessibilityUIElement::endTextMarkerForBounds):
(WTR::AccessibilityUIElement::startTextMarkerForBounds):
(WTR::AccessibilityUIElement::textMarkerForPoint):
(WTR::AccessibilityUIElement::accessibilityElementForTextMarker):
(WTR::AccessibilityUIElement::textMarkerForIndex):
(WTR::AccessibilityUIElement::startTextMarker):
(WTR::AccessibilityUIElement::endTextMarker):
(WTR::AccessibilityUIElement::mathPostscriptsDescription):
(WTR::AccessibilityUIElement::mathPrescriptsDescription):
(WTR::AccessibilityUIElement::pathDescription):
(WTR::AccessibilityUIElement::supportedActions):
- 8:06 AM Changeset in webkit [158673] by
-
- 1 edit1 delete in trunk/Source/WebCore
Delete maketokenizer.
https://bugs.webkit.org/show_bug.cgi?id=115155
Patch by Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu> on 2013-11-05
Reviewed by Zoltan Herczeg.
This script was used to generate the old flex based CSS tokenizer. It
was replaced by a custom tokenizer in r106217 but the script wasn't
removed. Since there is no mention of it in the original bug nor any
reference to maketokenizer in our build files, it's probably an
oversight.
Merge from blink:
https://chromium.googlesource.com/chromium/blink/+/2a1c8aaf867f707ccdcd8893446e907e2aa2e1c2
- css/maketokenizer: Removed.
- 7:34 AM Changeset in webkit [158672] by
-
- 2 edits in trunk/Source/JavaScriptCore
REGRESSION(r158315): Fix register mixup in JIT::compileOpCall.
https://bugs.webkit.org/show_bug.cgi?id=123799
Patch by Julien Brianceau <jbriance@cisco.com> on 2013-11-05
Reviewed by Mark Lam.
Changeset r158315 is crashing architectures where JSInterfaceJIT::regT3 is
different from GPRInfo::regT3. This is the case for MIPS architecture.
- jit/JITCall32_64.cpp:
(JSC::JIT::compileOpCall):
- 7:33 AM Changeset in webkit [158671] by
-
- 2 edits in trunk
Remove leftover Qt related things from WebKitMacros.cmake
https://bugs.webkit.org/show_bug.cgi?id=123798
Patch by Éva Balázsfalvi <balazsfalvi.eva@stud.u-szeged.hu> on 2013-11-05
Reviewed by Anders Carlsson.
- Source/cmake/WebKitMacros.cmake:
- 7:32 AM Changeset in webkit [158670] by
-
- 4 edits in trunk/Source/JavaScriptCore
[mips] Fix build for MIPS platforms.
https://bugs.webkit.org/show_bug.cgi?id=123796
Patch by Julien Brianceau <jbriance@cisco.com> on 2013-11-05
Reviewed by Michael Saboff.
- assembler/LinkBuffer.cpp:
(JSC::LinkBuffer::linkCode): Add specific MIPS call to relocateJumps.
- assembler/MIPSAssembler.h: Remove executableCopy (because of r157690) and set relocateJumps function public.
(JSC::MIPSAssembler::firstRegister):
(JSC::MIPSAssembler::lastRegister):
(JSC::MIPSAssembler::firstFPRegister):
(JSC::MIPSAssembler::lastFPRegister):
(JSC::MIPSAssembler::buffer): Needed since r157690.
- assembler/MacroAssemblerMIPS.h: Add framePointerRegister.
(JSC::MacroAssemblerMIPS::revertJumpReplacementToPatchableBranchPtrWithPatch): Remove unused parameter warning.
- 7:31 AM Changeset in webkit [158669] by
-
- 2 edits in trunk/Tools
Remove leftover Qt related things from the flakiness_dashboard
https://bugs.webkit.org/show_bug.cgi?id=123800
Patch by László Langó <laszlo.lango@frontendart.com> on 2013-11-05
Reviewed by Anders Carlsson.
- TestResultServer/static-dashboards/flakiness_dashboard_unittests.js:
(test):
- 7:30 AM Changeset in webkit [158668] by
-
- 1 edit140 moves1 add in trunk/LayoutTests
[CSS Regions] Move cssom related tests into fast/regions/cssom
https://bugs.webkit.org/show_bug.cgi?id=123705
Reviewed by Sam Weinig.
Move tests related to http://dev.w3.org/csswg/css-regions/#cssom_view_and_css_regions into their own folder and adjust paths for resources used in tests.
They test the same functionality: CSSRegions and CSSOM-view.
- fast/regions/cssom/element-region-overset-state-expected.txt: Renamed from LayoutTests/fast/regions/element-region-overset-state-expected.txt.
- fast/regions/cssom/element-region-overset-state-negative-letter-spacing-expected.txt: Renamed from LayoutTests/fast/regions/element-region-overset-state-negative-letter-spacing-expected.txt.
- fast/regions/cssom/element-region-overset-state-negative-letter-spacing.html: Renamed from LayoutTests/fast/regions/element-region-overset-state-negative-letter-spacing.html.
- fast/regions/cssom/element-region-overset-state-vertical-rl-expected.txt: Renamed from LayoutTests/fast/regions/element-region-overset-state-vertical-rl-expected.txt.
- fast/regions/cssom/element-region-overset-state-vertical-rl-negative-letter-spacing-expected.txt: Renamed from LayoutTests/fast/regions/element-region-overset-state-vertical-rl-negative-letter-spacing-expected.txt.
- fast/regions/cssom/element-region-overset-state-vertical-rl-negative-letter-spacing.html: Renamed from LayoutTests/fast/regions/element-region-overset-state-vertical-rl-negative-letter-spacing.html.
- fast/regions/cssom/element-region-overset-state-vertical-rl.html: Renamed from LayoutTests/fast/regions/element-region-overset-state-vertical-rl.html.
- fast/regions/cssom/element-region-overset-state.html: Renamed from LayoutTests/fast/regions/element-region-overset-state.html.
- fast/regions/cssom/flowed-content-bounding-client-rect-expected.txt: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-expected.txt.
- fast/regions/cssom/flowed-content-bounding-client-rect-horizontal-bt-expected.txt: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-horizontal-bt-expected.txt.
- fast/regions/cssom/flowed-content-bounding-client-rect-horizontal-bt.html: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-horizontal-bt.html.
- fast/regions/cssom/flowed-content-bounding-client-rect-vertical-expected.txt: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-vertical-expected.txt.
- fast/regions/cssom/flowed-content-bounding-client-rect-vertical-rl-expected.txt: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-vertical-rl-expected.txt.
- fast/regions/cssom/flowed-content-bounding-client-rect-vertical-rl.html: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-vertical-rl.html.
- fast/regions/cssom/flowed-content-bounding-client-rect-vertical.html: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect-vertical.html.
- fast/regions/cssom/flowed-content-bounding-client-rect.html: Renamed from LayoutTests/fast/regions/flowed-content-bounding-client-rect.html.
- fast/regions/cssom/flowed-content-transform-bounding-client-rect-expected.txt: Renamed from LayoutTests/fast/regions/flowed-content-transform-bounding-client-rect-expected.txt.
- fast/regions/cssom/flowed-content-transform-bounding-client-rect.html: Renamed from LayoutTests/fast/regions/flowed-content-transform-bounding-client-rect.html.
- fast/regions/cssom/flowed-inline-content-bounding-client-rect-expected.txt: Renamed from LayoutTests/fast/regions/flowed-inline-content-bounding-client-rect-expected.txt.
- fast/regions/cssom/flowed-inline-content-bounding-client-rect.html: Renamed from LayoutTests/fast/regions/flowed-inline-content-bounding-client-rect.html.
- fast/regions/cssom/get-region-flow-ranges-absolute-pos-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-absolute-pos-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-absolute-pos.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-absolute-pos.html.
- fast/regions/cssom/get-region-flow-ranges-content-nodes-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-content-nodes-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-content-nodes.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-content-nodes.html.
- fast/regions/cssom/get-region-flow-ranges-display-none-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-display-none-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-display-none.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-display-none.html.
- fast/regions/cssom/get-region-flow-ranges-empty-regions-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-empty-regions-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-empty-regions.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-empty-regions.html.
- fast/regions/cssom/get-region-flow-ranges-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-fixed-pos-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-fixed-pos-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-fixed-pos.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-fixed-pos.html.
- fast/regions/cssom/get-region-flow-ranges-horiz-bt-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-horiz-bt-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-horiz-bt.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-horiz-bt.html.
- fast/regions/cssom/get-region-flow-ranges-inline-only-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-inline-only-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-inline-only.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-inline-only.html.
- fast/regions/cssom/get-region-flow-ranges-inline-svg-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-inline-svg-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-inline-svg.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-inline-svg.html.
- fast/regions/cssom/get-region-flow-ranges-text-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-text-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-text-vert-lr-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-text-vert-lr-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-text-vert-lr.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-text-vert-lr.html.
- fast/regions/cssom/get-region-flow-ranges-text.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-text.html.
- fast/regions/cssom/get-region-flow-ranges-vert-lr-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-vert-lr-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-vert-lr.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-vert-lr.html.
- fast/regions/cssom/get-region-flow-ranges-vert-rl-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-vert-rl-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-vert-rl.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-vert-rl.html.
- fast/regions/cssom/get-region-flow-ranges-writing-modes-rl-rb-lr-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-writing-modes-rl-rb-lr-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-writing-modes-rl-rb-lr.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-writing-modes-rl-rb-lr.html.
- fast/regions/cssom/get-region-flow-ranges-writing-modes-tb-rl-lr-expected.txt: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-writing-modes-tb-rl-lr-expected.txt.
- fast/regions/cssom/get-region-flow-ranges-writing-modes-tb-rl-lr.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges-writing-modes-tb-rl-lr.html.
- fast/regions/cssom/get-region-flow-ranges.html: Renamed from LayoutTests/fast/regions/get-region-flow-ranges.html.
- fast/regions/cssom/get-regions-by-content-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-expected.txt.
- fast/regions/cssom/get-regions-by-content-horiz-bt-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-horiz-bt-expected.txt.
- fast/regions/cssom/get-regions-by-content-horiz-bt.html: Renamed from LayoutTests/fast/regions/get-regions-by-content-horiz-bt.html.
- fast/regions/cssom/get-regions-by-content-horiz-tb-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-horiz-tb-expected.txt.
- fast/regions/cssom/get-regions-by-content-horiz-tb.html: Renamed from LayoutTests/fast/regions/get-regions-by-content-horiz-tb.html.
- fast/regions/cssom/get-regions-by-content-pseudo-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-pseudo-expected.txt.
- fast/regions/cssom/get-regions-by-content-pseudo.html: Renamed from LayoutTests/fast/regions/get-regions-by-content-pseudo.html.
- fast/regions/cssom/get-regions-by-content-vert-lr-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-vert-lr-expected.txt.
- fast/regions/cssom/get-regions-by-content-vert-lr.html: Renamed from LayoutTests/fast/regions/get-regions-by-content-vert-lr.html.
- fast/regions/cssom/get-regions-by-content-vert-rl-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content-vert-rl-expected.txt.
- fast/regions/cssom/get-regions-by-content-vert-rl.html: Renamed from LayoutTests/fast/regions/get-regions-by-content-vert-rl.html.
- fast/regions/cssom/get-regions-by-content.html: Renamed from LayoutTests/fast/regions/get-regions-by-content.html.
- fast/regions/cssom/get-regions-by-content2-expected.txt: Renamed from LayoutTests/fast/regions/get-regions-by-content2-expected.txt.
- fast/regions/cssom/get-regions-by-content2.html: Renamed from LayoutTests/fast/regions/get-regions-by-content2.html.
- fast/regions/cssom/offsetLeft-offsetTop-in-multiple-regions-expected.txt: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-multiple-regions-expected.txt.
- fast/regions/cssom/offsetLeft-offsetTop-in-multiple-regions.html: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-multiple-regions.html.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-absolute-sticky-fixed-expected.txt: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-absolute-sticky-fixed-expected.txt.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-absolute-sticky-fixed.html: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-absolute-sticky-fixed.html.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-float-expected.txt: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-float-expected.txt.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl-expected.txt: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-float-vert-rl-expected.txt.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-float-vert-rl.html: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-float-vert-rl.html.
- fast/regions/cssom/offsetLeft-offsetTop-in-region-float.html: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-in-region-float.html.
- fast/regions/cssom/offsetLeft-offsetTop-inlines-region-in-element-expected.txt: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-inlines-region-in-element-expected.txt.
- fast/regions/cssom/offsetLeft-offsetTop-inlines-region-in-element.html: Renamed from LayoutTests/fast/regions/offsetLeft-offsetTop-inlines-region-in-element.html.
- fast/regions/cssom/offsetParent-body-in-flow-thread-expected.txt: Renamed from LayoutTests/fast/regions/offsetParent-body-in-flow-thread-expected.txt.
- fast/regions/cssom/offsetParent-body-in-flow-thread.html: Renamed from LayoutTests/fast/regions/offsetParent-body-in-flow-thread.html.
- fast/regions/cssom/offsetParent-in-flow-thread-expected.txt: Renamed from LayoutTests/fast/regions/offsetParent-in-flow-thread-expected.txt.
- fast/regions/cssom/offsetParent-in-flow-thread.html: Renamed from LayoutTests/fast/regions/offsetParent-in-flow-thread.html.
- fast/regions/cssom/overset-break-expected.txt: Renamed from LayoutTests/fast/regions/overset-break-expected.txt.
- fast/regions/cssom/overset-break-nested-expected.txt: Renamed from LayoutTests/fast/regions/overset-break-nested-expected.txt.
- fast/regions/cssom/overset-break-nested.html: Renamed from LayoutTests/fast/regions/overset-break-nested.html.
- fast/regions/cssom/overset-break-with-sibling-expected.txt: Renamed from LayoutTests/fast/regions/overset-break-with-sibling-expected.txt.
- fast/regions/cssom/overset-break-with-sibling.html: Renamed from LayoutTests/fast/regions/overset-break-with-sibling.html.
- fast/regions/cssom/overset-break.html: Renamed from LayoutTests/fast/regions/overset-break.html.
- fast/regions/cssom/region-range-for-box-crash-expected.txt: Renamed from LayoutTests/fast/regions/region-range-for-box-crash-expected.txt.
- fast/regions/cssom/region-range-for-box-crash.html: Renamed from LayoutTests/fast/regions/region-range-for-box-crash.html.
- fast/regions/cssom/webkit-named-flow-collection-crash-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection-crash-expected.txt.
- fast/regions/cssom/webkit-named-flow-collection-crash.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection-crash.html.
- fast/regions/cssom/webkit-named-flow-collection-empty-getters-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection-empty-getters-expected.txt.
- fast/regions/cssom/webkit-named-flow-collection-empty-getters.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection-empty-getters.html.
- fast/regions/cssom/webkit-named-flow-collection-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection-expected.txt.
- fast/regions/cssom/webkit-named-flow-collection.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-collection.html.
- fast/regions/cssom/webkit-named-flow-event-add-to-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-add-to-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-add-to-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-add-to-flow.html.
- fast/regions/cssom/webkit-named-flow-event-auto-height-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-auto-height-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-auto-height.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-auto-height.html.
- fast/regions/cssom/webkit-named-flow-event-crash-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-crash-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-crash.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-crash.html.
- fast/regions/cssom/webkit-named-flow-event-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-no-regions-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-no-regions-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-no-regions.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-no-regions.html.
- fast/regions/cssom/webkit-named-flow-event-region-in-flexbox-no-overset-change-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-region-in-flexbox-no-overset-change-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-region-in-flexbox-no-overset-change.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-region-in-flexbox-no-overset-change.html.
- fast/regions/cssom/webkit-named-flow-event-region-in-flexbox-overset-change-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-region-in-flexbox-overset-change-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-region-in-flexbox-overset-change.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-region-in-flexbox-overset-change.html.
- fast/regions/cssom/webkit-named-flow-event-remove-from-dom-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-remove-from-dom-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-remove-from-dom.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-remove-from-dom.html.
- fast/regions/cssom/webkit-named-flow-event-remove-from-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-remove-from-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-remove-from-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-remove-from-flow.html.
- fast/regions/cssom/webkit-named-flow-event-target-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-target-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-target.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-target.html.
- fast/regions/cssom/webkit-named-flow-event-to-null-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-to-null-expected.txt.
- fast/regions/cssom/webkit-named-flow-event-to-null.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event-to-null.html.
- fast/regions/cssom/webkit-named-flow-event.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-event.html.
- fast/regions/cssom/webkit-named-flow-existing-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-existing-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-existing-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-existing-flow.html.
- fast/regions/cssom/webkit-named-flow-first-empty-region-index-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-first-empty-region-index-expected.txt.
- fast/regions/cssom/webkit-named-flow-first-empty-region-index.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-first-empty-region-index.html.
- fast/regions/cssom/webkit-named-flow-flow-added-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-flow-added-expected.txt.
- fast/regions/cssom/webkit-named-flow-flow-added.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-flow-added.html.
- fast/regions/cssom/webkit-named-flow-get-content-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-content-expected.txt.
- fast/regions/cssom/webkit-named-flow-get-content.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-content.html.
- fast/regions/cssom/webkit-named-flow-get-regions-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-regions-expected.txt.
- fast/regions/cssom/webkit-named-flow-get-regions-pseudo-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-regions-pseudo-expected.txt.
- fast/regions/cssom/webkit-named-flow-get-regions-pseudo.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-regions-pseudo.html.
- fast/regions/cssom/webkit-named-flow-get-regions.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-get-regions.html.
- fast/regions/cssom/webkit-named-flow-invalid-name-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-invalid-name-expected.txt.
- fast/regions/cssom/webkit-named-flow-invalid-name.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-invalid-name.html.
- fast/regions/cssom/webkit-named-flow-modified-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-modified-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-modified-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-modified-flow.html.
- fast/regions/cssom/webkit-named-flow-name-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-name-expected.txt.
- fast/regions/cssom/webkit-named-flow-name.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-name.html.
- fast/regions/cssom/webkit-named-flow-non-existing-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-non-existing-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-non-existing-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-non-existing-flow.html.
- fast/regions/cssom/webkit-named-flow-overset-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-overset-expected.txt.
- fast/regions/cssom/webkit-named-flow-overset.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-overset.html.
- fast/regions/cssom/webkit-named-flow-removed-flow-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-removed-flow-expected.txt.
- fast/regions/cssom/webkit-named-flow-removed-flow.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-removed-flow.html.
- fast/regions/cssom/webkit-named-flow-same-object-expected.txt: Renamed from LayoutTests/fast/regions/webkit-named-flow-same-object-expected.txt.
- fast/regions/cssom/webkit-named-flow-same-object.html: Renamed from LayoutTests/fast/regions/webkit-named-flow-same-object.html.
- 7:25 AM Changeset in webkit [158667] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed. Unbreaking GCC builds.
- html/HTMLCollection.cpp:
(WebCore::isMatchingElement): This inline function is not a template anymore.
- 6:50 AM Changeset in webkit [158666] by
-
- 2 edits in trunk/LayoutTests
Unreviewed GTK gardening. Two tests pass after r158575 and r15856.
- platform/gtk/TestExpectations: Removed passing tests.
- 6:35 AM Changeset in webkit [158665] by
-
- 4 edits in trunk/Source/WebCore
Make it compile.
- dom/LiveNodeList.h:
(WebCore::LiveNodeList::LiveNodeList):
(WebCore::LiveNodeList::~LiveNodeList):
- dom/NodeRareData.h:
(WebCore::NodeListsNodeData::adoptDocument):
- html/HTMLCollection.cpp:
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::~HTMLCollection):
- 5:40 AM Changeset in webkit [158664] by
-
- 5 edits in trunk
[EFL] accessibility/svg-group-element-with-title.html is failing
https://bugs.webkit.org/show_bug.cgi?id=114151
Patch by Robert Plociennik <r.plociennik@samsung.com> on 2013-11-05
Reviewed by Mario Sanchez Prada.
Tools:
atk_component_ref_accessible_at_point(), utilized in
AccessibilityUIElement::elementAtPoint(), is expected to 'get a reference to the
accessible child, if one exists, at the coordinate point specified' and not
explicitly return self in case of lack of child elements. This contradicts with
expected behavior of elementAtPoint(). Therefore, elementAtPoint() is
changed to return self regardless of coordinates specified, provided no child
element could be retrieved, effectively mimicing the behaviour of equivalent
Mac implementation in accessibilityHitTest().
- DumpRenderTree/atk/AccessibilityUIElementAtk.cpp:
(AccessibilityUIElement::elementAtPoint): Fixed.
- WebKitTestRunner/InjectedBundle/atk/AccessibilityUIElementAtk.cpp:
(WTR::AccessibilityUIElement::elementAtPoint): Fixed.
LayoutTests:
Removed failure expectation.
- platform/efl/TestExpectations: The test is no longer failing.
- 5:20 AM Changeset in webkit [158663] by
-
- 25 edits in trunk/Source/WebCore
HTMLCollection should not be NodeList
https://bugs.webkit.org/show_bug.cgi?id=123794
Reviewed by Andreas Kling.
HTMLCollection and NodeList are unrelated types in DOM yet our HTMLCollection inherits NodeList
for code sharing reasons. While some code does get shared the types are sufficiently different
that this results in lots of unnecessary branches, complexity and general awkwardness. Code sharing
can be better achieved by means other than inheritance.
This patch splits HTMLCollection from NodeList by copy-pasting and eliminating resulting redundancies.
Sharing comes later.
- dom/Attr.cpp:
(WebCore::Attr::setValue):
(WebCore::Attr::childrenChanged):
- dom/ClassNodeList.cpp:
(WebCore::ClassNodeList::~ClassNodeList):
- dom/ContainerNode.cpp:
(WebCore::ContainerNode::childrenChanged):
(WebCore::ContainerNode::getElementsByTagName):
(WebCore::ContainerNode::getElementsByName):
(WebCore::ContainerNode::getElementsByClassName):
(WebCore::ContainerNode::radioNodeList):
- dom/Document.cpp:
(WebCore::Document::Document):
(WebCore::Document::~Document):
(WebCore::Document::registerNodeList):
(WebCore::Document::unregisterNodeList):
(WebCore::Document::registerCollection):
(WebCore::Document::unregisterCollection):
(WebCore::Document::ensureCachedCollection):
Add separate functions and map for registering HTMLCollections.
(WebCore::Document::all):
(WebCore::Document::windowNamedItems):
(WebCore::Document::documentNamedItems):
- dom/Document.h:
- dom/Element.cpp:
(WebCore::Element::attributeChanged):
(WebCore::Element::ensureCachedHTMLCollection):
(WebCore::Element::cachedHTMLCollection):
- dom/LiveNodeList.cpp:
(WebCore::LiveNodeList::rootNode):
(WebCore::isMatchingElement):
(WebCore::LiveNodeList::iterateForPreviousElement):
(WebCore::LiveNodeList::itemBefore):
(WebCore::firstMatchingElement):
(WebCore::nextMatchingElement):
(WebCore::traverseMatchingElementsForwardToOffset):
(WebCore::LiveNodeList::traverseLiveNodeListFirstElement):
(WebCore::LiveNodeList::traverseLiveNodeListForwardToOffset):
(WebCore::LiveNodeList::isLastItemCloserThanLastOrCachedItem):
(WebCore::LiveNodeList::isFirstItemCloserThanCachedItem):
(WebCore::LiveNodeList::length):
(WebCore::LiveNodeList::item):
(WebCore::LiveNodeList::elementBeforeOrAfterCachedElement):
This code used to live in HTMLCollection.cpp. Copy-paste here and remove all branches not needed for NodeLists.
(WebCore::LiveNodeList::invalidateCache):
NodeLists have no name caches.
- dom/LiveNodeList.h:
(WebCore::LiveNodeList::LiveNodeList):
(WebCore::LiveNodeList::~LiveNodeList):
(WebCore::LiveNodeList::isRootedAtDocument):
(WebCore::LiveNodeList::type):
(WebCore::LiveNodeList::invalidateCache):
(WebCore::LiveNodeList::setCachedElement):
Merge LiveNodeListBase and LiveNodeList.
Remove fields and code supporting HTMLCollection.
(WebCore::shouldInvalidateTypeOnAttributeChange):
Move to global scope. This function is used both HTMLCollections and LiveNodeLists.
- dom/NameNodeList.cpp:
(WebCore::NameNodeList::~NameNodeList):
- dom/NameNodeList.h:
(WebCore::NameNodeList::create):
- dom/Node.cpp:
(WebCore::shouldInvalidateNodeListCachesForAttr):
(WebCore::Document::shouldInvalidateNodeListAndCollectionCaches):
(WebCore::Document::invalidateNodeListAndCollectionCaches):
(WebCore::Node::invalidateNodeListAndCollectionCachesInAncestors):
(WebCore::NodeListsNodeData::invalidateCaches):
- dom/Node.h:
- dom/NodeRareData.h:
(WebCore::NodeListsNodeData::addCacheWithAtomicName):
(WebCore::NodeListsNodeData::addCacheWithName):
(WebCore::NodeListsNodeData::addCacheWithQualifiedName):
(WebCore::NodeListsNodeData::addCachedCollection):
(WebCore::NodeListsNodeData::cachedCollection):
(WebCore::NodeListsNodeData::removeCacheWithAtomicName):
(WebCore::NodeListsNodeData::removeCacheWithName):
(WebCore::NodeListsNodeData::removeCachedCollection):
(WebCore::NodeListsNodeData::isEmpty):
(WebCore::NodeListsNodeData::adoptDocument):
(WebCore::NodeListsNodeData::namedCollectionKey):
(WebCore::NodeListsNodeData::namedNodeListKey):
(WebCore::NodeListsNodeData::deleteThisAndUpdateNodeRareDataIfAboutToRemoveLastList):
Add separate cache for HTMLCollections.
- dom/TagNodeList.cpp:
(WebCore::TagNodeList::TagNodeList):
(WebCore::TagNodeList::~TagNodeList):
- dom/TagNodeList.h:
(WebCore::TagNodeList::create):
(WebCore::HTMLTagNodeList::create):
- html/CollectionType.h:
Remove NodeList types.
- html/HTMLCollection.cpp:
(WebCore::shouldOnlyIncludeDirectChildren):
(WebCore::rootTypeFromCollectionType):
(WebCore::invalidationTypeExcludingIdAndNameAttributes):
(WebCore::HTMLCollection::HTMLCollection):
(WebCore::HTMLCollection::~HTMLCollection):
(WebCore::HTMLCollection::rootNode):
(WebCore::isMatchingElement):
(WebCore::HTMLCollection::iterateForPreviousElement):
(WebCore::HTMLCollection::itemBefore):
(WebCore::firstMatchingElement):
(WebCore::nextMatchingElement):
(WebCore::traverseMatchingElementsForwardToOffset):
(WebCore::HTMLCollection::isLastItemCloserThanLastOrCachedItem):
(WebCore::HTMLCollection::isFirstItemCloserThanCachedItem):
(WebCore::HTMLCollection::setCachedElement):
(WebCore::HTMLCollection::length):
(WebCore::HTMLCollection::item):
(WebCore::HTMLCollection::elementBeforeOrAfterCachedElement):
(WebCore::HTMLCollection::traverseFirstElement):
(WebCore::HTMLCollection::traverseNextElement):
(WebCore::HTMLCollection::traverseForwardToOffset):
(WebCore::HTMLCollection::invalidateCache):
(WebCore::HTMLCollection::invalidateIdNameCacheMaps):
(WebCore::HTMLCollection::namedItem):
Remove NodeList specific branches and functions.
LiveNodeListBase functions are now HTMLCollection functions.
- html/HTMLCollection.h:
(WebCore::HTMLCollection::isRootedAtDocument):
(WebCore::HTMLCollection::invalidationType):
(WebCore::HTMLCollection::type):
(WebCore::HTMLCollection::ownerNode):
(WebCore::HTMLCollection::invalidateCache):
(WebCore::HTMLCollection::document):
(WebCore::HTMLCollection::overridesItemAfter):
(WebCore::HTMLCollection::isElementCacheValid):
(WebCore::HTMLCollection::cachedElement):
(WebCore::HTMLCollection::cachedElementOffset):
(WebCore::HTMLCollection::isLengthCacheValid):
(WebCore::HTMLCollection::cachedLength):
(WebCore::HTMLCollection::setLengthCache):
(WebCore::HTMLCollection::setCachedElement):
(WebCore::HTMLCollection::isItemRefElementsCacheValid):
(WebCore::HTMLCollection::setItemRefElementsCacheValid):
(WebCore::HTMLCollection::rootType):
(WebCore::HTMLCollection::hasNameCache):
(WebCore::HTMLCollection::setHasNameCache):
Copy-paste functions and fields from former LiveNodeListBase.
- html/HTMLNameCollection.cpp:
(WebCore::HTMLNameCollection::~HTMLNameCollection):
- html/LabelableElement.cpp:
(WebCore::LabelableElement::labels):
- html/LabelsNodeList.cpp:
(WebCore::LabelsNodeList::~LabelsNodeList):
- html/LabelsNodeList.h:
- html/RadioNodeList.cpp:
(WebCore::RadioNodeList::~RadioNodeList):
- html/RadioNodeList.h:
(WebCore::RadioNodeList::create):
- 5:02 AM Changeset in webkit [158662] by
-
- 4 edits in trunk/Source/WebCore
[GTK] Add stubs for missing symbols in dom bindings
https://bugs.webkit.org/show_bug.cgi?id=123663
Patch by Emilio Pozuelo Monfort <pochu27@gmail.com> on 2013-11-05
Reviewed by Carlos Garcia Campos.
- bindings/gobject/WebKitDOMCustom.cpp:
(webkit_dom_html_head_element_get_profile):
(webkit_dom_html_head_element_set_profile):
(webkit_dom_processing_instruction_get_data):
(webkit_dom_processing_instruction_set_data):
- bindings/gobject/WebKitDOMCustom.h:
- bindings/gobject/WebKitDOMCustom.symbols:
- 2:48 AM Changeset in webkit [158661] by
-
- 2 edits in trunk/Source/WebCore
Main thread tasks in ThreadableBlobRegistry should use std::unique_ptr
https://bugs.webkit.org/show_bug.cgi?id=122946
Reviewed by Darin Adler.
The new BlobRegistryContext objects don't have to be adopted into OwnPtr and then have OwnPtr's leaked pointer
passed into the WTF::callOnMainThread call - the pointer to the new heap-allocated object is passed in directly,
with the object ending up being managed by std::unique_ptr in the designated main thread task.
- fileapi/ThreadableBlobRegistry.cpp:
(WebCore::registerBlobURLTask):
(WebCore::ThreadableBlobRegistry::registerBlobURL):
(WebCore::registerBlobURLFromTask):
(WebCore::unregisterBlobURLTask):
(WebCore::ThreadableBlobRegistry::unregisterBlobURL):
- 2:17 AM Changeset in webkit [158660] by
-
- 2 edits in trunk/LayoutTests
[EFL] Update a test expected result.
https://bugs.webkit.org/show_bug.cgi?id=123792
Patch by Sun-woo Nam <sunny.nam@samsung.com> on 2013-11-05
Reviewed by Gyuyoung Kim.
Need to update some length properties in this expected file.
The test expected reseult is mismatched with return-values of eval() method in LayoutTests/resources/js-test-pre.js.
- platform/efl/js/dom/constructor-length-expected.txt:
- 1:39 AM Changeset in webkit [158659] by
-
- 5 edits in trunk
[CSS] Enable css-image-orientation on EFL and GTK ports.
https://bugs.webkit.org/show_bug.cgi?id=123698
Reviewed by Beth Dakin.
Source/WebCore:
r157909 added wrong early return for css-image-orientation. It causes about 20 regressions in layout test
when enabling css-image-orientation. This fixes those wrong implementation as well as enables it on EFL
and GTK ports by default.
Test: fast/css/image-orientation/image-orientation.html
- loader/cache/CachedImage.cpp:
(WebCore::CachedImage::imageSizeForRenderer):
- platform/graphics/BitmapImage.cpp:
(WebCore::BitmapImage::updateSize):
Tools:
r157909 added wrong early return for css-image-orientation. It causes about 20 regressions in layout test
when enabling css-image-orientaiton. This fixes those wrong implementation as well as enables it on EFL
and GTK ports by default.
- Scripts/webkitperl/FeatureList.pm:
- 1:35 AM Changeset in webkit [158658] by
-
- 2 edits in trunk/LayoutTests
[EFL] accessibility/tabindex-elements-are-accessible.html is failing after r158195
https://bugs.webkit.org/show_bug.cgi?id=123741
Unreviewed EFL gardening.
Patch by Artur Moryc <a.moryc@samsung.com> on 2013-11-05
- platform/efl/TestExpectations: adding failing test
- 1:29 AM Changeset in webkit [158657] by
-
- 8 edits in trunk/Source/WebCore
RenderEmbeddedObject shouldn't know about fallback content.
<https://webkit.org/b/123781>
Stop caching the presence of fallback (DOM) content in a flag on
RenderEmbeddedObject and have SubframeLoader fetch it directly from
HTMLObjectElement instead.
Also made SubframeLoader::requestObject() take the owner element
by reference since we don't support owner-less embedded objects.
Reviewed by Antti Koivisto.
- 1:08 AM Changeset in webkit [158656] by
-
- 17 edits13 deletes in trunk/Source
[GStreamer] Remove NATIVE_FULLSCREEN_VIDEO support
https://bugs.webkit.org/show_bug.cgi?id=123437
Reviewed by Philippe Normand.
Source/WebCore:
Removed some dead code as no GStreamer port is using the native
fullscreen video support.
- GNUmakefile.list.am:
- PlatformEfl.cmake:
- PlatformGTK.cmake: Removed compilation of deleted files.
- platform/graphics/MediaPlayer.h: Removed structures related to
GStreamer and NATIVE_FULLSCREEN_VIDEO.
- platform/graphics/gstreamer/FullscreenVideoControllerGStreamer.cpp: Removed.
- platform/graphics/gstreamer/FullscreenVideoControllerGStreamer.h: Removed.
- platform/graphics/gstreamer/GStreamerGWorld.cpp: Removed.
- platform/graphics/gstreamer/GStreamerGWorld.h: Removed.
- platform/graphics/gstreamer/ImageGStreamerCairo.cpp: Removed
gst/video/video.h include.
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.cpp:
(WebCore::MediaPlayerPrivateGStreamerBase::~MediaPlayerPrivateGStreamerBase):
(WebCore::MediaPlayerPrivateGStreamerBase::platformMedia):
(WebCore::MediaPlayerPrivateGStreamerBase::createVideoSink):
- platform/graphics/gstreamer/MediaPlayerPrivateGStreamerBase.h:
Removed code related to GStreamer and NATIVE_FULLSCREEN_VIDEO.
- platform/graphics/gstreamer/PlatformVideoWindow.h: Removed.
- platform/graphics/gstreamer/PlatformVideoWindowEfl.cpp: Removed.
- platform/graphics/gstreamer/PlatformVideoWindowGtk.cpp: Removed.
- platform/graphics/gstreamer/PlatformVideoWindowMac.mm: Removed.
- platform/graphics/gstreamer/PlatformVideoWindowNix.cpp: Removed.
- platform/graphics/gstreamer/PlatformVideoWindowPrivate.h: Removed.
- platform/graphics/gstreamer/VideoSinkGStreamer.cpp:
(webkitVideoSinkRender):
(webkitVideoSinkNew):
- platform/graphics/gstreamer/VideoSinkGStreamer.h: Removed code
related to GStreamer and NATIVE_FULLSCREEN_VIDEO.
- platform/graphics/gtk/FullscreenVideoControllerGtk.cpp: Removed.
- platform/graphics/gtk/FullscreenVideoControllerGtk.h: Removed.
Source/WebCore/platform/gtk/po:
- POTFILES.in: Removed FullscreenVideoControllerGtk.cpp.
- gl.po: Removed appearances of strings of
FullscreenVideoControllerGtk.cpp.
Source/WebKit/efl:
Removed some dead code as no GStreamer port is using the native
fullscreen video support.
- WebCoreSupport/FullscreenVideoControllerEfl.h: Removed.
Source/WebKit/gtk:
Removed some dead code as no GStreamer port is using the native
fullscreen video support.
- WebCoreSupport/ChromeClientGtk.cpp:
(WebKit::ChromeClient::enterFullScreenForElement):
(WebKit::ChromeClient::exitFullScreenForElement):
- WebCoreSupport/ChromeClientGtk.h: Removed code related to
GStreamer and NATIVE_FULLSCREEN_VIDEO.
- 12:53 AM Changeset in webkit [158655] by
-
- 8 edits in trunk/Source/WebCore
Remove RenderWidget::viewCleared().
<https://webkit.org/b/123777>
This was some ancient hand-waving code from the KHTML era.
It was obviously confused (e.g RenderEmbeddedObject trying to handle
iframe owners, even though that setup is impossible.)
Reviewed by Anders Carlsson.