Timeline
Aug 4, 2011:
- 11:58 PM Changeset in webkit [92452] by
-
- 2 edits in trunk/LayoutTests
Chromium test expectation update after r92341.
- platform/chromium/test_expectations.txt:
- 11:26 PM Changeset in webkit [92451] by
-
- 5 edits in trunk/Source/WebCore
Use RenderedPosition instead of getInlineBoxAndOffset in Editor and AccessibilityObject
https://bugs.webkit.org/show_bug.cgi?id=65647
Reviewed by Hajime Morita.
Encapsulated the use of getInlineBoxAndOffset in Editor.cpp and AccessibilityObject.cpp by RenderedPosition.
Also added rendererFromPosition that returns the renderer of deprecatedNode but using a proper Position interface.
- accessibility/AccessibilityObject.cpp:
(WebCore::updateAXLineStartForVisiblePosition):
- editing/Editor.cpp:
(WebCore::Editor::firstRectForRange):
- editing/RenderedPosition.cpp:
(WebCore::rendererFromPosition):
(WebCore::RenderedPosition::RenderedPosition):
(WebCore::RenderedPosition::absoluteRect):
- editing/RenderedPosition.h:
(WebCore::RenderedPosition::absoluteRect):
- 11:14 PM Changeset in webkit [92450] by
-
- 8 edits in trunk/Source/WebCore
Make ScopedEventQueue enqueue an EventDispatchMediator, instead of an Event.
https://bugs.webkit.org/show_bug.cgi?id=65613
Reviewed by Dimitri Glazkov.
No changes to functionality so no new tests.
- dom/Event.h:
- dom/EventDispatcher.cpp:
(WebCore::EventDispatcher::dispatchScopedEvent):
- dom/EventDispatcher.h:
- dom/Node.cpp:
(WebCore::Node::dispatchScopedEvent):
(WebCore::Node::dispatchScopedEventDispatchMediator):
- dom/Node.h:
- dom/ScopedEventQueue.cpp:
(WebCore::ScopedEventQueue::~ScopedEventQueue):
(WebCore::ScopedEventQueue::enqueueEventDispatchMediator):
(WebCore::ScopedEventQueue::dispatchAllEvents):
(WebCore::ScopedEventQueue::dispatchEvent):
- dom/ScopedEventQueue.h:
- 11:05 PM Changeset in webkit [92449] by
-
- 2 edits in trunk/Source/WebCore
Unreviewed build fix. gcc 4.5 can't figure out that the 'data' variables are always initialized in these functions.
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
(WebCore::jsArrayToFloatArray):
(WebCore::jsArrayToIntArray):
- 11:04 PM Changeset in webkit [92448] by
-
- 12 edits in trunk/Source/WebCore
Improve const-correctness in CSS code: type information methods
https://bugs.webkit.org/show_bug.cgi?id=65506
Reviewed by Simon Fraser.
Make "is...()" functions (e.g., "isStyleRule()") const.
Also, change CSSRule's type() function to return CSSRuleType.
No new tests. (no change in semantics)
- css/CSSCharsetRule.h:
(WebCore::CSSCharsetRule::isCharsetRule):
(WebCore::CSSCharsetRule::type):
- css/CSSFontFaceRule.h:
(WebCore::CSSFontFaceRule::isFontFaceRule):
(WebCore::CSSFontFaceRule::type):
- css/CSSImportRule.h:
(WebCore::CSSImportRule::isImportRule):
(WebCore::CSSImportRule::type):
- css/CSSMediaRule.h:
(WebCore::CSSMediaRule::isMediaRule):
(WebCore::CSSMediaRule::type):
- css/CSSPageRule.h:
(WebCore::CSSPageRule::isPageRule):
(WebCore::CSSPageRule::type):
- css/CSSRule.h:
(WebCore::CSSRule::isRule):
- css/CSSStyleRule.h:
(WebCore::CSSStyleRule::isStyleRule):
(WebCore::CSSStyleRule::type):
- css/CSSUnknownRule.h:
(WebCore::CSSUnknownRule::type):
- css/StyleBase.h:
(WebCore::StyleBase::isCharsetRule):
(WebCore::StyleBase::isFontFaceRule):
(WebCore::StyleBase::isImportRule):
(WebCore::StyleBase::isKeyframeRule):
(WebCore::StyleBase::isKeyframesRule):
(WebCore::StyleBase::isMediaRule):
(WebCore::StyleBase::isPageRule):
(WebCore::StyleBase::isRule):
(WebCore::StyleBase::isStyleRule):
- css/WebKitCSSKeyframeRule.h:
(WebCore::WebKitCSSKeyframeRule::isKeyframeRule):
(WebCore::WebKitCSSKeyframeRule::type):
- css/WebKitCSSKeyframesRule.h:
(WebCore::WebKitCSSKeyframesRule::isKeyframesRule):
(WebCore::WebKitCSSKeyframesRule::type):
- 10:42 PM Changeset in webkit [92447] by
-
- 4 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from plugin IDL files
https://bugs.webkit.org/show_bug.cgi?id=65745
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- plugins/DOMMimeTypeArray.idl:
- plugins/DOMPlugin.idl:
- plugins/DOMPluginArray.idl:
- 10:37 PM Changeset in webkit [92446] by
-
- 8 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from XML/XSL IDL files
https://bugs.webkit.org/show_bug.cgi?id=65740
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- xml/DOMParser.idl:
- xml/XMLSerializer.idl:
- xml/XPathEvaluator.idl:
- xml/XPathExpression.idl:
- xml/XPathNSResolver.idl:
- xml/XPathResult.idl:
- xml/XSLTProcessor.idl:
- 10:27 PM Changeset in webkit [92445] by
-
- 2 edits in trunk/Source/WebKit/chromium
Unreviewed. Rolled DEPS.
Patch by James Robinson <jamesr@chromium.org> on 2011-08-04
- DEPS:
- 9:51 PM Changeset in webkit [92444] by
-
- 1 edit2 adds in trunk/PerformanceTests
Add a performance test for floating elements layout algorithm
https://bugs.webkit.org/show_bug.cgi?id=65741
The test creating lots of small floats and randomly changes
the width of one element at a time. It measures how often it can do that.
Patch by Alexandru Chiculita <Alexandru Chiculita> on 2011-08-04
Reviewed by Adam Barth.
- Layout/floats.html: Added.
- 8:50 PM Changeset in webkit [92443] by
-
- 11 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from canvas IDL files
https://bugs.webkit.org/show_bug.cgi?id=65737
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- html/canvas/CanvasGradient.idl:
- html/canvas/Float32Array.idl:
- html/canvas/Float64Array.idl:
- html/canvas/Int16Array.idl:
- html/canvas/Int32Array.idl:
- html/canvas/Int8Array.idl:
- html/canvas/OESVertexArrayObject.idl:
- html/canvas/Uint16Array.idl:
- html/canvas/Uint32Array.idl:
- html/canvas/Uint8Array.idl:
- 8:26 PM Changeset in webkit [92442] by
-
- 2 edits1 add in trunk/Tools
model.js needs some unit testing
https://bugs.webkit.org/show_bug.cgi?id=65730
Reviewed by Dimitri Glazkov.
These tests do not cover all the functions exported by the model
module. We'll need to add the remaining ones in the future.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model_unittests.js: Added.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
- 8:25 PM Changeset in webkit [92441] by
-
- 11 edits1 add in trunk/Source/WebCore
Reviewed by Ryosuke Niwa.
DocumentMarker: Type specific details should be separately held by other object.
https://bugs.webkit.org/show_bug.cgi?id=59855
- Introduced DocumentMarkerDetails abstract class and two its subclasses DocumentMarkerDescription and DocumentMarkerActiveMatch,
- Replacing DocumentMarker::m_description and DocumentMarker::m_activeMatch with these new details classes.
No new tests. No behavior change.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- dom/DOMAllInOne.cpp:
- dom/DocumentMarker.cpp: Added.
(WebCore::emptyDescription):
(WebCore::DocumentMarkerDetails::DocumentMarkerDetails):
(WebCore::DocumentMarkerDetails::~DocumentMarkerDetails):
(WebCore::DocumentMarkerDescription::description):
(WebCore::DocumentMarkerDescription::isDescription):
(WebCore::DocumentMarkerDescription::DocumentMarkerDescription):
(WebCore::DocumentMarkerDescription::createUnlessEmpty):
(WebCore::DocumentMarkerDescription::compatibleTypes):
(WebCore::DocumentMarkerTextMatch::activeMatch):
(WebCore::DocumentMarkerTextMatch::isTextMatch):
(WebCore::DocumentMarkerTextMatch::DocumentMarkerTextMatch):
(WebCore::DocumentMarkerTextMatch::instanceFor):
(WebCore::DocumentMarkerTextMatch::compatibleTypes):
(WebCore::DocumentMarker::DocumentMarker):
(WebCore::DocumentMarker::shiftOffsets):
(WebCore::DocumentMarker::setActiveMatch):
(WebCore::DocumentMarker::description):
(WebCore::DocumentMarker::activeMatch):
- dom/DocumentMarker.h:
(WebCore::DocumentMarker::details):
(WebCore::DocumentMarker::clearDetails):
(WebCore::DocumentMarkerDetails::isDescription):
(WebCore::DocumentMarkerDetails::isTextMatch):
(WebCore::DocumentMarkerDetails::isAllowedFor):
- dom/DocumentMarkerController.cpp:
(WebCore::DocumentMarkerController::clearDescriptionOnMarkersIntersectingRange):
- editing/CompositeEditCommand.cpp:
(WebCore::CompositeEditCommand::replaceTextInNodePreservingMarkers):
- 6:45 PM Changeset in webkit [92440] by
-
- 2 edits in trunk/Tools
Another speculative fix for the "svn revision on Windows" problem.
- Scripts/webkitpy/common/checkout/scm/git.py:
- 6:32 PM Changeset in webkit [92439] by
-
- 4 edits4 adds in trunk
Bad interaction between document destruction and unload events
https://bugs.webkit.org/show_bug.cgi?id=64741
Patch by Scott Graham <scottmg@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
Source/WebCore:
Three different errors triggered by this test case. The case to
consider is a subdocument with an onunload on an element, that
destroys the parent document during the onunload. One fix was a
lifetime issue fixed by a protecting RefPtr, and another was an
additional cancel of event triggers. The main fix was that during the
transition to commited state, the documentLoader is being replaced by
the provisionalDocumentLoader. But, because during firing events in
the subdocument the parent is destroyed, that subevent caused the
provisionalDocumentLoader to be detached from its frame. By marking
the page as being in committed state before the parent documentLoader
is set, this is avoided.
Test: loader/document-destruction-within-unload.html
- dom/Document.cpp:
(WebCore::Document::implicitOpen):
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::transitionToCommitted):
(WebCore::FrameLoader::detachChildren):
LayoutTests:
- loader/document-destruction-within-unload-expected.txt: Added.
- loader/document-destruction-within-unload.html: Added.
- loader/resources/document-destruction-within-unload-iframe.html: Added.
- loader/resources/document-destruction-within-unload.svg: Added.
- 6:07 PM Changeset in webkit [92438] by
-
- 24 edits in trunk/Source/WebCore
2011-08-04 Simon Fraser <Simon Fraser>
Add code to determine whether a Range in inside fixed position content
https://bugs.webkit.org/show_bug.cgi?id=65720
Reviewed by Sam Weinig.
Propagate the 'wasFixed' flag out from various methods that
are used when computing the collection of rects or quads
for a range. Use the flag in Range to computer whether
the Range is entirely within, partially within, or outside
of fixed-position content.
- WebCore.exp.in:
- accessibility/AccessibilityRenderObject.cpp: (WebCore::AccessibilityRenderObject::boundingBoxRect):
- dom/Range.cpp: (WebCore::Range::textRects): (WebCore::Range::textQuads):
- dom/Range.h:
- rendering/RenderBlock.cpp: (WebCore::RenderBlock::absoluteQuads):
- rendering/RenderBlock.h:
- rendering/RenderBox.cpp: (WebCore::RenderBox::absoluteQuads):
- rendering/RenderBox.h:
- rendering/RenderInline.cpp: (WebCore::RenderInline::absoluteQuads):
- rendering/RenderInline.h:
- rendering/RenderObject.h: (WebCore::RenderObject::absoluteQuads):
- rendering/RenderText.cpp: (WebCore::RenderText::absoluteRectsForRange): (WebCore::RenderText::absoluteQuads): (WebCore::RenderText::absoluteQuadsForRange):
- rendering/RenderText.h:
- rendering/RenderView.cpp: (WebCore::RenderView::absoluteQuads):
- rendering/RenderView.h:
- rendering/svg/RenderSVGHiddenContainer.cpp: (WebCore::RenderSVGHiddenContainer::absoluteQuads):
- rendering/svg/RenderSVGHiddenContainer.h:
- rendering/svg/RenderSVGInline.cpp: (WebCore::RenderSVGInline::absoluteQuads):
- rendering/svg/RenderSVGInline.h:
- rendering/svg/RenderSVGModelObject.cpp: (WebCore::RenderSVGModelObject::absoluteQuads):
- rendering/svg/RenderSVGModelObject.h:
- rendering/svg/RenderSVGText.cpp: (WebCore::RenderSVGText::absoluteQuads):
- rendering/svg/RenderSVGText.h:
- 5:51 PM Changeset in webkit [92437] by
-
- 4 edits in trunk/Source
CStringBuffer should have thread safety checks turned on.
https://bugs.webkit.org/show_bug.cgi?id=58093
Reviewed by Dmitry Titov.
Source/JavaScriptCore:
- wtf/text/CString.h:
(WTF::CStringBuffer::CStringBuffer): Removed the ifdef that
turned this off for Chromium.
Source/WebKit/chromium:
- DEPS: Roll far enough to pick up the latest WebKit::initialize
fix for Linux.
- 5:39 PM Changeset in webkit [92436] by
-
- 2 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from Document.idl
https://bugs.webkit.org/show_bug.cgi?id=65717
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- dom/Document.idl:
- 5:26 PM Changeset in webkit [92435] by
-
- 2 edits in trunk/Source/WebCore
2011-08-04 Simon Fraser <Simon Fraser>
Fix release build failure with last commit.
- rendering/RenderView.cpp: (WebCore::RenderView::mapLocalToContainer):
- 5:19 PM Changeset in webkit [92434] by
-
- 21 edits in trunk/Source/WebCore
2011-08-04 Simon Fraser <Simon Fraser>
Add code to determine whether a Range in inside fixed position content
https://bugs.webkit.org/show_bug.cgi?id=65720
Reviewed by Dan Bernstein.
Add an out param for various coordinate mapping functions
that tells us whether the point or rectangle being
mapped is inside fixed-position content.
This brings back some of the changes from r89754.
No behavior changes, so no tests.
- rendering/RenderBox.cpp: (WebCore::RenderBox::mapLocalToContainer):
- rendering/RenderBox.h:
- rendering/RenderInline.cpp: (WebCore::RenderInline::mapLocalToContainer):
- rendering/RenderInline.h:
- rendering/RenderObject.cpp: (WebCore::RenderObject::mapLocalToContainer): (WebCore::RenderObject::localToContainerQuad):
- rendering/RenderObject.h: (WebCore::RenderObject::localToAbsoluteQuad):
- rendering/RenderView.cpp: (WebCore::RenderView::mapLocalToContainer):
- rendering/RenderView.h:
- rendering/svg/RenderSVGForeignObject.cpp: (WebCore::RenderSVGForeignObject::mapLocalToContainer):
- rendering/svg/RenderSVGForeignObject.h:
- rendering/svg/RenderSVGInline.cpp: (WebCore::RenderSVGInline::mapLocalToContainer):
- rendering/svg/RenderSVGInline.h:
- rendering/svg/RenderSVGModelObject.cpp: (WebCore::RenderSVGModelObject::mapLocalToContainer):
- rendering/svg/RenderSVGModelObject.h:
- rendering/svg/RenderSVGRoot.cpp: (WebCore::RenderSVGRoot::mapLocalToContainer):
- rendering/svg/RenderSVGRoot.h:
- rendering/svg/RenderSVGText.cpp: (WebCore::RenderSVGText::mapLocalToContainer):
- rendering/svg/RenderSVGText.h:
- rendering/svg/SVGRenderSupport.cpp: (WebCore::SVGRenderSupport::mapLocalToContainer):
- rendering/svg/SVGRenderSupport.h:
- 5:03 PM Changeset in webkit [92433] by
-
- 25 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from DOM-related files except Document.idl
https://bugs.webkit.org/show_bug.cgi?id=65715
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-04
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- dom/CharacterData.idl:
- dom/ClientRectList.idl:
- dom/Clipboard.idl:
- dom/DOMImplementation.idl:
- dom/DOMStringList.idl:
- dom/DataTransferItem.idl:
- dom/DataTransferItems.idl:
- dom/DocumentFragment.idl:
- dom/Element.idl:
- dom/EventListener.idl:
- dom/EventTarget.idl:
- dom/MediaStream.idl:
- dom/MediaStreamList.idl:
- dom/MediaStreamTrackList.idl:
- dom/MessagePort.idl:
- dom/NamedNodeMap.idl:
- dom/Node.idl:
- dom/NodeFilter.idl:
- dom/NodeList.idl:
- dom/Range.idl:
- dom/RequestAnimationFrameCallback.idl:
- dom/StringCallback.idl:
- dom/Text.idl:
- dom/TouchList.idl:
- 4:58 PM Changeset in webkit [92432] by
-
- 45 edits in trunk
Future-proof Xcode configuration settings.
Source/JavaScriptCore:
- Configurations/Base.xcconfig:
- Configurations/DebugRelease.xcconfig:
- Configurations/JavaScriptCore.xcconfig:
- Configurations/Version.xcconfig:
Source/JavaScriptGlue:
- Configurations/Base.xcconfig:
- Configurations/CompilerVersion.xcconfig:
- Configurations/DebugRelease.xcconfig:
- Configurations/Version.xcconfig:
Source/ThirdParty:
- gtest/xcode/Config/General.xcconfig:
Source/ThirdParty/ANGLE:
- Configurations/Base.xcconfig:
- Configurations/CompilerVersion.xcconfig:
- Configurations/DebugRelease.xcconfig:
Source/WebCore:
- Configurations/Base.xcconfig:
- Configurations/DebugRelease.xcconfig:
- Configurations/Version.xcconfig:
- Configurations/WebCore.xcconfig:
Source/WebKit/mac:
- Configurations/Base.xcconfig:
- Configurations/DebugRelease.xcconfig:
- Configurations/Version.xcconfig:
- Configurations/WebKit.xcconfig:
Source/WebKit2:
- Configurations/Base.xcconfig:
- Configurations/CompilerVersion.xcconfig:
- Configurations/DebugRelease.xcconfig:
- Configurations/Version.xcconfig:
- Configurations/WebKit2.xcconfig:
Tools:
- DumpRenderTree/mac/Configurations/Base.xcconfig:
- DumpRenderTree/mac/Configurations/CompilerVersion.xcconfig:
- DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
- MiniBrowser/Configurations/Base.xcconfig:
- MiniBrowser/Configurations/CompilerVersion.xcconfig:
- MiniBrowser/Configurations/DebugRelease.xcconfig:
- TestWebKitAPI/Configurations/Base.xcconfig:
- TestWebKitAPI/Configurations/CompilerVersion.xcconfig:
- TestWebKitAPI/Configurations/DebugRelease.xcconfig:
- WebKitTestRunner/Configurations/Base.xcconfig:
- WebKitTestRunner/Configurations/CompilerVersion.xcconfig:
- WebKitTestRunner/Configurations/DebugRelease.xcconfig:
- 4:56 PM Changeset in webkit [92431] by
-
- 2 edits in trunk/Source/WebCore
A few purely stylistic modifications to visible_units.cpp
https://bugs.webkit.org/show_bug.cgi?id=65723
Patch by Van Lam <vanlam@google.com> on 2011-08-04
Reviewed by Ryosuke Niwa.
Renamed greatestValueUnder to greatestOffsetUnder, positionIsInsideBox
to positionIsInBoxButNotOnBoundary (to avoid confusion with
positionIsInBox, which is just a getInlineBoxAndOffset check).
Removed use of invalidOffset as an error value in greatestOffsetUnder
and smallestOffsetAbove since semantically it should only be used to
check if it makes sense to compare offsets in a single box.
- editing/visible_units.cpp:
(WebCore::greatestOffsetUnder):
(WebCore::smallestOffsetAbove):
(WebCore::positionIsInBoxButNotOnBoundary):
(WebCore::leftWordPositionAcrossBoundary):
(WebCore::rightWordPositionAcrossBoundary):
- 4:46 PM Changeset in webkit [92430] by
-
- 3 edits in trunk/Source/WebCore
[chromium] Implement a global resource limit for DrawingBuffer to limit the amount of GPU memory used by 2d canvas backing stores
https://bugs.webkit.org/show_bug.cgi?id=65655
Patch by James Robinson <jamesr@chromium.org> on 2011-08-04
Reviewed by Kenneth Russell.
- platform/graphics/gpu/DrawingBuffer.cpp:
(WebCore::DrawingBuffer::setResourceLimit):
(WebCore::DrawingBuffer::clear):
(WebCore::DrawingBuffer::reset):
- platform/graphics/gpu/DrawingBuffer.h:
- 4:25 PM Changeset in webkit [92429] by
-
- 2 edits in trunk/Tools
Fancier debug logging.
- Scripts/webkitpy/layout_tests/controllers/manager.py:
- 4:20 PM Changeset in webkit [92428] by
-
- 2 edits in trunk/Websites/webkit.org
Fixed a typo.
- coding/contributing.html:
- 4:17 PM Changeset in webkit [92427] by
-
- 15 edits7 copies6 moves8 adds3 deletes in trunk/LayoutTests
Move <input type=week> tests to fast/forms/week/
https://bugs.webkit.org/show_bug.cgi?id=65676
Reviewed by Tony Chang.
- fast/forms/ValidityState-rangeOverflow-expected.txt:
- fast/forms/ValidityState-rangeUnderflow-expected.txt:
- fast/forms/ValidityState-stepMismatch-expected.txt:
- fast/forms/ValidityState-typeMismatch-week-expected.txt: Removed.
- fast/forms/ValidityState-typeMismatch-week.html: Removed.
- fast/forms/date-input-visible-strings-expected.txt:
- fast/forms/date-input-visible-strings.html:
- fast/forms/input-stepup-stepdown-expected.txt:
- fast/forms/input-stepup-stepdown-from-renderer-expected.txt:
- fast/forms/input-type-change3-expected.txt:
- fast/forms/input-valueasdate-week-expected.txt: Removed.
- fast/forms/input-valueasdate-week.html: Removed.
- fast/forms/input-valueasnumber-week-expected.txt: Removed.
- fast/forms/input-valueasnumber-week.html: Removed.
- fast/forms/script-tests/ValidityState-rangeOverflow.js:
- fast/forms/script-tests/ValidityState-rangeUnderflow.js:
- fast/forms/script-tests/ValidityState-stepMismatch.js:
- fast/forms/script-tests/ValidityState-typeMismatch-week.js: Removed.
- fast/forms/script-tests/input-stepup-stepdown-from-renderer.js:
- fast/forms/script-tests/input-stepup-stepdown.js:
- fast/forms/script-tests/input-type-change3.js:
- fast/forms/script-tests/input-valueasdate-week.js: Removed.
- fast/forms/script-tests/input-valueasnumber-week.js: Removed.
- fast/forms/week: Added.
- fast/forms/week/ValidityState-rangeOverflow-week-expected.txt: Added.
- fast/forms/week/ValidityState-rangeOverflow-week.html: Copied from LayoutTests/fast/forms/script-tests/ValidityState-rangeOverflow.js.
- fast/forms/week/ValidityState-rangeUnderflow-week-expected.txt: Added.
- fast/forms/week/ValidityState-rangeUnderflow-week.html: Copied from LayoutTests/fast/forms/script-tests/ValidityState-rangeUnderflow.js.
- fast/forms/week/ValidityState-stepMismatch-week-expected.txt: Added.
- fast/forms/week/ValidityState-stepMismatch-week.html: Copied from LayoutTests/fast/forms/script-tests/ValidityState-stepMismatch.js.
- fast/forms/week/ValidityState-typeMismatch-week-expected.txt: Copied from LayoutTests/fast/forms/ValidityState-typeMismatch-week-expected.txt.
- fast/forms/week/ValidityState-typeMismatch-week.html: Copied from LayoutTests/fast/forms/script-tests/ValidityState-typeMismatch-week.js.
- fast/forms/week/input-valueasdate-week-expected.txt: Copied from LayoutTests/fast/forms/input-valueasdate-week-expected.txt.
- fast/forms/week/input-valueasdate-week.html: Copied from LayoutTests/fast/forms/script-tests/input-valueasdate-week.js.
- fast/forms/week/input-valueasnumber-week-expected.txt: Copied from LayoutTests/fast/forms/input-valueasnumber-week-expected.txt.
- fast/forms/week/input-valueasnumber-week.html: Copied from LayoutTests/fast/forms/script-tests/input-valueasnumber-week.js.
- fast/forms/week/week-input-type-expected.txt: Added.
- fast/forms/week/week-input-type.html: Copied from LayoutTests/fast/forms/script-tests/input-type-change3.js.
- fast/forms/week/week-input-visible-string-expected.txt: Added.
- fast/forms/week/week-input-visible-string.html: Copied from LayoutTests/fast/forms/date-input-visible-strings.html.
- fast/forms/week/week-stepup-stepdown-expected.txt: Added.
- fast/forms/week/week-stepup-stepdown-from-renderer-expected.txt: Added.
- fast/forms/week/week-stepup-stepdown-from-renderer.html: Copied from LayoutTests/fast/forms/script-tests/input-stepup-stepdown-from-renderer.js.
- fast/forms/week/week-stepup-stepdown.html: Copied from LayoutTests/fast/forms/script-tests/input-stepup-stepdown.js.
- 3:54 PM Changeset in webkit [92426] by
-
- 1 edit in trunk/Tools/Scripts/webkitpy/common/config/committers.py
Move Tim Horton to committers section of committers.py
No review necessary.
- 3:53 PM Changeset in webkit [92425] by
-
- 3 edits in trunk/Source/WebCore
[Chromium] Reduce memory consumption of HarfbuzzFace
https://bugs.webkit.org/show_bug.cgi?id=65688
Adds a cache for HB_FaceRec to eliminate multiple allocation for the same font.
Patch by Kenichi Ishibashi <bashi@chromium.org> on 2011-08-04
Reviewed by Tony Chang.
No new tests since there is no behavior change.
- platform/graphics/chromium/HarfbuzzSkia.cpp:
(WebCore::getCachedHarfbuzzFace): Added.
(WebCore::releaseCachedHarfbuzzFace): Ditto.
(WebCore::HarfbuzzFace::HarfbuzzFace): Calls getCachedHarfbuzzFace() instead of allocating HB_FaceRec.
(WebCore::HarfbuzzFace::~HarfbuzzFace): Calls releaseCachedHarfbuzzFace() to release the onership of the cache.
- platform/graphics/chromium/HarfbuzzSkia.h:
- 3:51 PM Changeset in webkit [92424] by
-
- 5 edits in trunk/Source
Unreviewed, rolling out r92415.
http://trac.webkit.org/changeset/92415
https://bugs.webkit.org/show_bug.cgi?id=65728
Causes many DEBUG crashes (Requested by abarth on #webkit).
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-08-04
Source/WebCore:
- platform/network/chromium/ResourceRequest.h:
- xml/XMLHttpRequest.cpp:
(WebCore::XMLHttpRequest::createRequest):
Source/WebKit/chromium:
- public/WebURLRequest.h:
- 3:46 PM Changeset in webkit [92423] by
-
- 39 edits in trunk
Reviewed by Nikolas Zimmermann.
Errors encountered within SVG documents should be reported to the console
https://bugs.webkit.org/show_bug.cgi?id=62599
<rdar://problem/9727074>
Make use of SVGLength::construct when parsing Length attributes; we will
now propagate errors which occur while parsing SVGLength attributes to the
Web Inspector console.
- 3:42 PM Changeset in webkit [92422] by
-
- 39 edits in trunk
Unreviewed, rolling out r92419.
http://trac.webkit.org/changeset/92419
https://bugs.webkit.org/show_bug.cgi?id=65726
"committed partially to branch" (Requested by thorton on
#webkit).
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-08-04
Source/WebCore:
- svg/SVGCircleElement.cpp:
(WebCore::SVGCircleElement::parseMappedAttribute):
- svg/SVGCursorElement.cpp:
(WebCore::SVGCursorElement::parseMappedAttribute):
- svg/SVGEllipseElement.cpp:
(WebCore::SVGEllipseElement::parseMappedAttribute):
- svg/SVGFilterElement.cpp:
(WebCore::SVGFilterElement::parseMappedAttribute):
- svg/SVGFilterPrimitiveStandardAttributes.cpp:
(WebCore::SVGFilterPrimitiveStandardAttributes::parseMappedAttribute):
- svg/SVGForeignObjectElement.cpp:
(WebCore::SVGForeignObjectElement::parseMappedAttribute):
- svg/SVGImageElement.cpp:
(WebCore::SVGImageElement::parseMappedAttribute):
- svg/SVGLineElement.cpp:
(WebCore::SVGLineElement::parseMappedAttribute):
- svg/SVGLinearGradientElement.cpp:
(WebCore::SVGLinearGradientElement::parseMappedAttribute):
- svg/SVGMarkerElement.cpp:
(WebCore::SVGMarkerElement::parseMappedAttribute):
- svg/SVGMaskElement.cpp:
(WebCore::SVGMaskElement::parseMappedAttribute):
- svg/SVGPatternElement.cpp:
(WebCore::SVGPatternElement::parseMappedAttribute):
- svg/SVGRadialGradientElement.cpp:
(WebCore::SVGRadialGradientElement::parseMappedAttribute):
- svg/SVGRectElement.cpp:
(WebCore::SVGRectElement::parseMappedAttribute):
- svg/SVGSVGElement.cpp:
(WebCore::SVGSVGElement::parseMappedAttribute):
- svg/SVGTextContentElement.cpp:
(WebCore::SVGTextContentElement::parseMappedAttribute):
- svg/SVGTextPathElement.cpp:
(WebCore::SVGTextPathElement::parseMappedAttribute):
- svg/SVGUseElement.cpp:
(WebCore::SVGUseElement::parseMappedAttribute):
LayoutTests:
- platform/chromium-win/svg/hixie/error/013-expected.txt:
- platform/gtk/svg/hixie/error/001-expected.txt:
- platform/gtk/svg/hixie/error/007-expected.txt:
- platform/gtk/svg/hixie/error/013-expected.txt:
- platform/gtk/svg/hixie/error/015-expected.txt:
- platform/mac/svg/hixie/error/001-expected.txt:
- platform/mac/svg/hixie/error/007-expected.txt:
- platform/mac/svg/hixie/error/013-expected.txt:
- platform/mac/svg/hixie/error/015-expected.txt:
- platform/qt/svg/hixie/error/001-expected.txt:
- platform/qt/svg/hixie/error/007-expected.txt:
- platform/qt/svg/hixie/error/013-expected.txt:
- platform/qt/svg/hixie/error/015-expected.txt:
- svg/custom/invalid-length-units-expected.txt:
- svg/custom/svg-parse-overflow-1-expected.txt:
- svg/custom/svg-parse-overflow-2-expected.txt:
- svg/custom/svg-parse-overflow-3-expected.txt:
- svg/custom/svg-parse-overflow-4-expected.txt:
- svg/custom/svg-parse-overflow-5-expected.txt:
- 3:41 PM Changeset in webkit [92421] by
-
- 2 edits in trunk/Websites/webkit.org
Update the contributors page to recommend webkit-patch instead of many manual steps
https://bugs.webkit.org/show_bug.cgi?id=65714
Reviewed by Adam Barth.
asvitkine followed the contributing instructions for his first patch, and got
the ChangeLog entry wrong: https://bugs.webkit.org/show_bug.cgi?id=65707
webkit-patch prevents errors like this and more.
- coding/contributing.html:
- 3:39 PM Changeset in webkit [92420] by
-
- 2 edits in trunk/Tools
[chromium] Fix assertion failure in ThreadIdentifierData::identifier in TestShell.
https://bugs.webkit.org/show_bug.cgi?id=65685
Reviewed by Dmitry Titov.
- DumpRenderTree/chromium/WebViewHost.cpp:
(WebViewHost::WebViewHost): Intialize WTF threading before
anything in WTF is used. Usually this is done by WebViewImpl::WebViewImpl
but in some cases code may use WTF without creating WebViewImpl and
WTF code functionality may call WTF::currentThread, which requires
this initialization now.
- 3:15 PM Changeset in webkit [92419] by
-
- 39 edits in /
Reviewed by Nikolas Zimmermann.
Errors encountered within SVG documents should be reported to the console
https://bugs.webkit.org/show_bug.cgi?id=62599
<rdar://problem/9727074>
Make use of SVGLength::construct when parsing Length attributes; we will
now propagate errors which occur while parsing SVGLength attributes to the
Web Inspector console.
- 3:03 PM Changeset in webkit [92418] by
-
- 3 edits in trunk/Tools
An educated guess at causing the Windows bots on build.webkit.org to
find the SVN revision number.
- Scripts/webkitpy/layout_tests/controllers/manager.py:
- Scripts/webkitpy/layout_tests/port/base.py:
- 3:00 PM Changeset in webkit [92417] by
-
- 5 edits3 adds in trunk
Source/WebCore: Background Does Not Scale Correctly with Page
https://bugs.webkit.org/show_bug.cgi?id=65690
Reviewed by Simon Fraser.
Test: fast/repaint/background-scaling.html
- rendering/RenderBox.cpp:
(WebCore::RenderBox::paintRootBoxFillLayers):
- rendering/RenderView.cpp:
(WebCore::RenderView::unscaledDocumentRect):
(WebCore::RenderView::documentRect):
- rendering/RenderView.h:
LayoutTests: Background Does Not Scale Correctly with Page
Scaling is applied twice to the background (the paint area is doubly scaled).
This patch fixes this issue by passing the unscaled document rect to paintFillLayers
in paintRootBoxFillLayers.
https://bugs.webkit.org/show_bug.cgi?id=65690
Reviewed by Simon Fraser.
- fast/repaint/background-scaling-expected.png: Added.
- fast/repaint/background-scaling-expected.txt: Added.
- fast/repaint/background-scaling.html: Added.
- 2:50 PM Changeset in webkit [92416] by
-
- 2 edits in trunk/LayoutTests
[Qt] 69 tests failing after http://trac.webkit.org/changeset/92375
https://bugs.webkit.org/show_bug.cgi?id=65721
Unreviewed.
Skipping tests until rebaseline.
- platform/qt/Skipped:
- 2:50 PM Changeset in webkit [92415] by
-
- 5 edits in trunk/Source
Introduce a new ResourceRequest::TargetType for XHRs
https://bugs.webkit.org/show_bug.cgi?id=65544
Reviewed by Darin Fisher.
Source/WebCore:
- platform/network/chromium/ResourceRequest.h:
- xml/XMLHttpRequest.cpp:
(WebCore::XMLHttpRequest::createRequest):
Source/WebKit/chromium:
- public/WebURLRequest.h:
- 2:40 PM Changeset in webkit [92414] by
-
- 6 edits in trunk/Source/WebKit/win
Add support for setting and getting whether AVFoundation is enabled to IWebPreferences
https://bugs.webkit.org/show_bug.cgi?id=65718
Reviewed by Adam Roben.
- Interfaces/IWebPreferences.idl: Added setAVFoundationEnabled() and avFoundationEnabled().
- WebPreferenceKeysPrivate.h: Added WebKitAVFoundationEnabledPreferenceKey.
- WebPreferences.cpp:
(WebPreferences::avFoundationEnabled): Added.
(WebPreferences::setAVFoundationEnabled): Added.
- WebPreferences.h: Added setAVFoundationEnabled() and avFoundationEnabled().
- WebView.cpp:
(WebView::notifyPreferencesChanged): Keep settings for AVFoundation being enabled in sync.
- 2:37 PM Changeset in webkit [92413] by
-
- 4 edits4 adds in trunk
Fix integer overflow in custom bindings for WebGLRenderingContext
https://bugs.webkit.org/show_bug.cgi?id=65646
Patch by Sergey Glazunov <serg.glazunov@gmail.com> on 2011-08-04
Reviewed by Kenneth Russell.
Source/WebCore:
Test: fast/canvas/webgl/uniform-array-length-overflow.html
- bindings/js/JSWebGLRenderingContextCustom.cpp:
(WebCore::toVector): Don't crash if allocation fails.
- bindings/v8/custom/V8WebGLRenderingContextCustom.cpp:
(WebCore::jsArrayToFloatArray):
(WebCore::jsArrayToIntArray):
LayoutTests:
- fast/canvas/webgl/resources/floatArrayUniformShader.vert: Added.
- fast/canvas/webgl/resources/intArrayUniformShader2.vert: Added.
- fast/canvas/webgl/uniform-array-length-overflow-expected.txt: Added.
- fast/canvas/webgl/uniform-array-length-overflow.html: Added.
- 2:29 PM Changeset in webkit [92412] by
-
- 4 edits in tags/Safari-534.49.1/Source
Merge r90705.
- 2:13 PM Changeset in webkit [92411] by
-
- 2 edits in tags/Safari-534.49.1/Source/WebCore
Merge r89214.
- 2:12 PM Changeset in webkit [92410] by
-
- 2 edits in trunk/Source/WebCore
Implement CERTIFICATE_CREDENTIALS_SUPPORTED for CFNetwork
https://bugs.webkit.org/show_bug.cgi?id=65704
<rdar://problem/9877734>
Reviewed by Oliver Hunt.
Implement support for client side certificate authentication in the CFNetwork based loader.
- platform/network/cf/AuthenticationCF.cpp:
(WebCore::createCF):
(WebCore::core): Also fix leak of password string.
- 2:11 PM Changeset in webkit [92409] by
-
- 2 edits in trunk/LayoutTests
Refine some test expectations to account for flakiness.
- platform/chromium/test_expectations.txt:
- 2:07 PM Changeset in webkit [92408] by
-
- 6 edits in trunk/Source/WebCore
Make sure that AudioArray is 16-byte aligned
https://bugs.webkit.org/show_bug.cgi?id=65651
Reviewed by Kenneth Russell.
No new tests - this does not change JavaScript API.
- platform/audio/AudioArray.h:
(WebCore::AudioArray::AudioArray):
(WebCore::AudioArray::~AudioArray):
(WebCore::AudioArray::allocate):
(WebCore::AudioArray::data):
(WebCore::AudioArray::size):
(WebCore::AudioArray::at):
(WebCore::AudioArray::operator[]):
(WebCore::AudioArray::alignedAddress):
- platform/audio/Biquad.cpp:
(WebCore::Biquad::Biquad):
- platform/audio/ReverbConvolverStage.cpp:
(WebCore::ReverbConvolverStage::ReverbConvolverStage):
- webaudio/DelayDSPKernel.cpp:
(WebCore::DelayDSPKernel::DelayDSPKernel):
- webaudio/RealtimeAnalyser.cpp:
(WebCore::RealtimeAnalyser::setFftSize):
- 1:38 PM Changeset in webkit [92407] by
-
- 2 edits in trunk/Tools
More logging to help debug the "no SVN rev on Chromium Windows bots"
bug. My current theory is that we're trying to detect the SCM system
in the wrong directory.
- Scripts/webkitpy/layout_tests/port/base.py:
- 1:14 PM Changeset in webkit [92406] by
-
- 2 edits in trunk/Source/WebCore
<rdar://problem/9882581>, <rdar://problem/9868015>, and https://bugs.webkit.org/show_bug.cgi?id=65712
REGRESSION (91931) - Two LocalStorage threads started, thread unsafe operations can cause crash or other problems later.
Reviewed by Darin Adler.
- storage/StorageTracker.cpp:
(WebCore::StorageTracker::internalInitialize): Set the "needs initialization" flag before doing a
whole bunch of stuff that might need to check it.
- 1:09 PM Changeset in webkit [92405] by
-
- 2 edits in trunk/LayoutTests
Make fast/css/import-and-insert-rule-no-update.html less flaky
https://bugs.webkit.org/show_bug.cgi?id=65713
Reviewed by Dan Bernstein.
Wait until the @imported style sheet has finished loading before running the test.
- fast/css/import-and-insert-rule-no-update.html:
- 1:06 PM Changeset in webkit [92404] by
-
- 8 edits in trunk/Source/WebCore
Adopt AVCF media back end on Windows
https://bugs.webkit.org/show_bug.cgi?id=65400
<rdar://problem/9894105>
First cut at implementation in MediaPlayerPrivateAVFoundationCF.cpp/.h, based on
work by Eric Carlson. Note that use of AVFoundation is determined at runtime, and
defaults to off.
Reviewed by Darin Adler.
No new tests, uses existing media tests.
- config.h: Turn on WTF_USE_AVFOUNDATION on Windows if AVFoundationCF is available.
- platform/graphics/MediaPlayer.cpp:
(WebCore::installedMediaEngines): Register MediaPlayerPrivateAVFoundationCF on Windows.
- platform/graphics/MediaPlayer.h: Add support for an AVCFPlayer.
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.cpp:
(WebCore::MediaPlayerPrivateAVFoundation::setPreload): Workaround an AVCF limitation that prevents an AVCFPlayer from being created without an AVCFItem.
(WebCore::MediaPlayerPrivateAVFoundation::dispatchNotification): Added support for ContentsNeedsDisplay notification.
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundation.h:
(WebCore::MediaPlayerPrivateAVFoundation::contentsNeedsDisplay): Added support for ContentsNeedsDisplay notification.
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundationCF.cpp: Added implementation.
(WebCore::AVFWrapper::caVideoLayer):
(WebCore::AVFWrapper::videoLayerWrapper):
(WebCore::AVFWrapper::videoLayer):
(WebCore::AVFWrapper::avPlayer):
(WebCore::AVFWrapper::avAsset):
(WebCore::AVFWrapper::avPlayerItem):
(WebCore::AVFWrapper::timeObserver):
(WebCore::AVFWrapper::imageGenerator):
(WebCore::AVFWrapper::dispatchQueue):
(WebCore::LayerClient::LayerClient):
(WebCore::LayerClient::~LayerClient):
(WebCore::LayerClient::platformCALayerRespondsToLayoutChanges):
(WebCore::LayerClient::platformCALayerAnimationStarted):
(WebCore::LayerClient::platformCALayerContentsOrientation):
(WebCore::LayerClient::platformCALayerPaintContents):
(WebCore::LayerClient::platformCALayerShowDebugBorders):
(WebCore::LayerClient::platformCALayerShowRepaintCounter):
(WebCore::LayerClient::platformCALayerIncrementRepaintCount):
(WebCore::LayerClient::platformCALayerContentsOpaque):
(WebCore::LayerClient::platformCALayerDrawsContent):
(WebCore::LayerClient::platformCALayerLayerDidDisplay):
(WebCore::boolString):
(WebCore::metadataKeyNames):
(WebCore::CMTimeRangeStartKey):
(WebCore::CMTimeRangeDurationKey):
(WebCore::CACFContextNeedsFlushNotification):
(WebCore::videoLayer):
(WebCore::avPlayer):
(WebCore::avAsset):
(WebCore::avPlayerItem):
(WebCore::imageGenerator):
(WebCore::MediaPlayerPrivateAVFoundationCF::create):
(WebCore::MediaPlayerPrivateAVFoundationCF::registerMediaEngine):
(WebCore::MediaPlayerPrivateAVFoundationCF::MediaPlayerPrivateAVFoundationCF):
(WebCore::MediaPlayerPrivateAVFoundationCF::~MediaPlayerPrivateAVFoundationCF):
(WebCore::MediaPlayerPrivateAVFoundationCF::cancelLoad):
(WebCore::MediaPlayerPrivateAVFoundationCF::hasLayerRenderer):
(WebCore::MediaPlayerPrivateAVFoundationCF::hasContextRenderer):
(WebCore::MediaPlayerPrivateAVFoundationCF::createContextVideoRenderer):
(WebCore::MediaPlayerPrivateAVFoundationCF::destroyContextVideoRenderer):
(WebCore::MediaPlayerPrivateAVFoundationCF::createVideoLayer):
(WebCore::MediaPlayerPrivateAVFoundationCF::destroyVideoLayer):
(WebCore::MediaPlayerPrivateAVFoundationCF::hasAvailableVideoFrame):
(WebCore::MediaPlayerPrivateAVFoundationCF::createAVPlayer):
(WebCore::MediaPlayerPrivateAVFoundationCF::createAVPlayerItem):
(WebCore::MediaPlayerPrivateAVFoundationCF::createAVAssetForURL):
(WebCore::MediaPlayerPrivateAVFoundationCF::checkPlayability):
(WebCore::MediaPlayerPrivateAVFoundationCF::beginLoadingMetadata):
(WebCore::MediaPlayerPrivateAVFoundationCF::playerItemStatus):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformMedia):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformLayer):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformSetVisible):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformPlay):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformPause):
(WebCore::MediaPlayerPrivateAVFoundationCF::updateRate):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformDuration):
(WebCore::MediaPlayerPrivateAVFoundationCF::currentTime):
(WebCore::MediaPlayerPrivateAVFoundationCF::seekToTime):
(WebCore::MediaPlayerPrivateAVFoundationCF::setVolume):
(WebCore::MediaPlayerPrivateAVFoundationCF::setClosedCaptionsVisible):
(WebCore::MediaPlayerPrivateAVFoundationCF::rate):
(WebCore::timeRangeIsValidAndNotEmpty):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformBufferedTimeRanges):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformMaxTimeSeekable):
(WebCore::MediaPlayerPrivateAVFoundationCF::platformMaxTimeLoaded):
(WebCore::MediaPlayerPrivateAVFoundationCF::totalBytes):
(WebCore::MediaPlayerPrivateAVFoundationCF::assetStatus):
(WebCore::MediaPlayerPrivateAVFoundationCF::paintCurrentFrameInContext):
(WebCore::MediaPlayerPrivateAVFoundationCF::paint):
(WebCore::mimeTypeCache):
(WebCore::MediaPlayerPrivateAVFoundationCF::getSupportedTypes):
(WebCore::MediaPlayerPrivateAVFoundationCF::supportsType):
(WebCore::MediaPlayerPrivateAVFoundationCF::isAvailable):
(WebCore::MediaPlayerPrivateAVFoundationCF::mediaTimeForTimeValue):
(WebCore::MediaPlayerPrivateAVFoundationCF::tracksChanged):
(WebCore::MediaPlayerPrivateAVFoundationCF::sizeChanged):
(WebCore::MediaPlayerPrivateAVFoundationCF::contentsNeedsDisplay):
(WebCore::AVFWrapper::AVFWrapper):
(WebCore::AVFWrapper::~AVFWrapper):
(WebCore::AVFWrapper::scheduleDisconnectAndDelete):
(WebCore::AVFWrapper::disconnectAndDeleteAVFWrapper):
(WebCore::AVFWrapper::deleteAVFWrapper):
(WebCore::AVFWrapper::createAssetForURL):
(WebCore::AVFWrapper::createPlayer):
(WebCore::AVFWrapper::createPlayerItem):
(WebCore::AVFWrapper::periodicTimeObserverCallback):
(WebCore::AVFWrapper::notificationCallback):
(WebCore::AVFWrapper::loadPlayableCompletionCallback):
(WebCore::AVFWrapper::checkPlayability):
(WebCore::AVFWrapper::loadMetadataCompletionCallback):
(WebCore::AVFWrapper::beginLoadingMetadata):
(WebCore::AVFWrapper::seekCompletedCallback):
(WebCore::AVFWrapper::seekToTime):
(WebCore::AVFWrapper::setAsset):
(WebCore::AVFWrapper::platformLayer):
(WebCore::AVFWrapper::createAVCFVideoLayer):
(WebCore::AVFWrapper::destroyVideoLayer):
(WebCore::AVFWrapper::setVideoLayerNeedsCommit):
(WebCore::AVFWrapper::setVideoLayerHidden):
(WebCore::AVFWrapper::createImageGenerator):
(WebCore::AVFWrapper::destroyImageGenerator):
(WebCore::AVFWrapper::createImageForTimeInRect):
(WebCore::LayerClient::platformCALayerLayoutSublayersOfLayer):
- platform/graphics/avfoundation/MediaPlayerPrivateAVFoundationCF.h: Added implementation.
- 1:04 PM Changeset in webkit [92403] by
-
- 2 edits in trunk/Tools
Speed up webkit-patch optimize-expectations significantly by not collecting test files.
https://bugs.webkit.org/show_bug.cgi?id=65697
I neglected to realize that collecting test names is not necessary for this operation.
Reviewed by Adam Barth.
- Scripts/webkitpy/tool/commands/expectations.py: Changed to pass an empty list of test files.
- 12:42 PM Changeset in webkit [92402] by
-
- 6 edits in tags/Safari-534.49.1/Source
Merge r92231.
- 12:35 PM Changeset in webkit [92401] by
-
- 5 edits in tags/Safari-534.49.1/Source
Versioning.
- 12:33 PM Changeset in webkit [92400] by
-
- 1 copy in tags/Safari-534.49.1
New tag.
- 12:23 PM Changeset in webkit [92399] by
-
- 15 edits in trunk/Source
Get rid of ResourceRequestBase::m_targetType. Move it to chromium's ResourceRequest.
https://bugs.webkit.org/show_bug.cgi?id=48483
Reviewed by Alexey Proskuryakov.
Source/WebCore:
- loader/PingLoader.cpp:
(WebCore::PingLoader::loadImage):
(WebCore::PingLoader::sendPing):
(WebCore::PingLoader::reportContentSecurityPolicyViolation):
- loader/cache/CachedResourceRequest.cpp:
(WebCore::CachedResourceRequest::load):
- platform/graphics/gstreamer/WebKitWebSourceGStreamer.cpp:
(webKitWebSrcStart):
- platform/network/ResourceRequestBase.cpp:
(WebCore::ResourceRequestBase::adopt):
(WebCore::ResourceRequestBase::copyData):
- platform/network/ResourceRequestBase.h:
(WebCore::ResourceRequestBase::ResourceRequestBase):
- platform/network/chromium/ResourceRequest.cpp:
(WebCore::ResourceRequest::doPlatformCopyData):
(WebCore::ResourceRequest::doPlatformAdopt):
- platform/network/chromium/ResourceRequest.h:
(WebCore::ResourceRequest::ResourceRequest):
(WebCore::ResourceRequest::targetType):
(WebCore::ResourceRequest::setTargetType):
- workers/DefaultSharedWorkerRepository.cpp:
(WebCore::SharedWorkerScriptLoader::load):
- workers/Worker.cpp:
(WebCore::Worker::create):
- workers/WorkerContext.cpp:
(WebCore::WorkerContext::importScripts):
- workers/WorkerScriptLoader.cpp:
(WebCore::WorkerScriptLoader::WorkerScriptLoader):
(WebCore::WorkerScriptLoader::createResourceRequest):
- workers/WorkerScriptLoader.h:
(WebCore::WorkerScriptLoader::create):
(WebCore::WorkerScriptLoader::setTargetType):
Source/WebKit/chromium:
- src/SharedWorkerRepository.cpp:
(WebCore::SharedWorkerScriptLoader::SharedWorkerScriptLoader):
- 12:21 PM Changeset in webkit [92398] by
-
- 2 edits in trunk/Source/WebCore
Fix WinCE build after r92308.
- config.h: Don't try to include WebCoreHeaderDetection.h for WinCE.
- 12:20 PM Changeset in webkit [92397] by
-
- 2 edits in trunk/LayoutTests
Add more failing tests to the skipped list.
- platform/mac-lion/Skipped:
- 12:19 PM Changeset in webkit [92396] by
-
- 3 edits in trunk/Tools
checkout_unittest.js should have better coverage of checkout.js
https://bugs.webkit.org/show_bug.cgi?id=65671
Reviewed by Dimitri Glazkov.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
- Remove unused functions.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js:
- Test remaining public functions in the checkout module.
- 12:11 PM Changeset in webkit [92395] by
-
- 5 edits in branches/safari-534.51-branch/Source
Versioning.
- 12:09 PM Changeset in webkit [92394] by
-
- 1 copy in tags/Safari-534.51.6
New tag.
- 11:50 AM Maintenance and architecture list edited by
- Tweaked formatting. (diff)
- 11:40 AM Memory Use edited by
- Added formatting for readability. Tweaked a few words and phrases. (diff)
- 11:26 AM Changeset in webkit [92393] by
-
- 2 edits in trunk/Source/JavaScriptCore
Interpreter can potentially GC in the middle of initializing a structure chain
https://bugs.webkit.org/show_bug.cgi?id=65638
Patch by Mark Hahnenberg <mhahnenberg@apple.com> on 2011-08-04
Reviewed by Oliver Hunt.
Moved the allocation of a prototype StructureChain before the initialization of
the structure chain within the interpreter that was causing intermittent GC crashes.
- interpreter/Interpreter.cpp:
(JSC::Interpreter::tryCachePutByID):
- wtf/Platform.h:
- 11:19 AM Changeset in webkit [92392] by
-
- 2 edits in trunk/Source/WebCore
webkitRequestAnimationFrame's element argument needs to be marked optional
https://bugs.webkit.org/show_bug.cgi?id=65698
Reviewed by James Robinson.
- page/DOMWindow.idl:
- 11:17 AM Changeset in webkit [92391] by
-
- 2 edits in trunk/Tools
https://bugs.webkit.org/show_bug.cgi?id=65706
Run run-unit-tests on release mode test bots.
Reenabling after 61812 is fixed.
Reviewed by Adam Roben.
- BuildSlaveSupport/build.webkit.org-config/master.cfg:
- 11:11 AM Changeset in webkit [92390] by
-
- 3 edits8 deletes in trunk/Source/WebCore
Delete some unused code from platform/graphics/win
MediaPlayerPrivateQuickTimeWin has been unused since r72117, and the GraphicsLayer-related
classes have been unused since r75262.
Fixes <http://webkit.org/b/65689> platform/graphics/win has a bunch of unused code
Reviewed by Eric Carlson.
- WebCore.gypi:
- WebCore.vcproj/WebCore.vcproj:
Removed now-deleted files.
- platform/graphics/win/GraphicsLayerCACF.cpp: Removed.
- platform/graphics/win/GraphicsLayerCACF.h: Removed.
- platform/graphics/win/MediaPlayerPrivateQuickTimeWin.cpp: Removed.
- platform/graphics/win/MediaPlayerPrivateQuickTimeWin.h: Removed.
- platform/graphics/win/WebLayer.cpp: Removed.
- platform/graphics/win/WebLayer.h: Removed.
- platform/graphics/win/WebTiledLayer.cpp: Removed.
- platform/graphics/win/WebTiledLayer.h: Removed.
- 11:11 AM Changeset in webkit [92389] by
-
- 3 edits2 adds in trunk
Detect and handle overflow in PlatformCALayerWinInternal::constrainedSize
Google Maps sometimes requests very large (i.e., 250 pixels or greater) layers when
zooming. PlatformCALayerWinInternal has code to limit tiled layers to 227 pixels, but it
was not correctly handling overflow. In some cases, this would lead to creating a tiled
layer with 0 tiles, which was the cause of this crash.
Fixes <http://webkit.org/b/65637> <rdar://problem/9784849> Crash beneath
PlatformCALayerWinInternal::updateTiles when zooming on Google Maps
Reviewed by Sam Weinig.
Source/WebCore:
- platform/graphics/ca/win/PlatformCALayerWinInternal.cpp:
(PlatformCALayerWinInternal::constrainedSize): Check for overflow before seeing if the
number of required tiles is larger than the maximum number of allowed tiles.
(PlatformCALayerWinInternal::updateTiles): Added an assertion to catch cases where we have a
non-empty tiled layer that contains 0 tiles, which would cause the crash in this bug report.
LayoutTests:
Test that a 225x225 pixel layer doesn't cause a crash
- compositing/tiling/crash-huge-layer-expected.txt: Added.
- compositing/tiling/crash-huge-layer.html: Added.
- 11:00 AM Changeset in webkit [92388] by
-
- 2 edits in trunk/Source/WebCore
Set graphics context current before canvas.toDataURL().
https://bugs.webkit.org/show_bug.cgi?id=65700
Reviewed by James Robinson.
No new tests, unfortunately. The test infrastucture doesn't seem
to be conducive to writing multiple-context tests.
- platform/graphics/skia/ImageBufferSkia.cpp:
(WebCore::ImageBuffer::toDataURL):
- 10:52 AM Changeset in webkit [92387] by
-
- 2 edits in trunk/Source/ThirdParty
https://bugs.webkit.org/show_bug.cgi?id=61812
TestWebKitApi breaks in release mode due to gtest incompatibility with fast malloc
Disable fast malloc for offending class (::std::strstream) in gtest.
This looks like the most non-intrusive solution.
Reviewed by David Levin.
- 10:48 AM Changeset in webkit [92386] by
-
- 3 edits in trunk/Source/JavaScriptCore
Eval handling attempts literal parsing even when the eval
string is in the cache
https://bugs.webkit.org/show_bug.cgi?id=65675
Reviewed by Oliver Hunt.
This is a 25% speed-up on date-format-tofte and a 1.5% speed-up overall
in SunSpider. It's neutral on V8.
- bytecode/EvalCodeCache.h:
(JSC::EvalCodeCache::tryGet):
(JSC::EvalCodeCache::getSlow):
(JSC::EvalCodeCache::get):
- interpreter/Interpreter.cpp:
(JSC::Interpreter::callEval):
- 10:48 AM Changeset in webkit [92385] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, mark gain.html as flaky on Linux chromium.
- platform/chromium/test_expectations.txt:
- 10:45 AM Changeset in webkit [92384] by
-
- 20 edits in trunk/Source
Source/WebCore: WebKit2: Web Inspector always starts in undocked mode
https://bugs.webkit.org/show_bug.cgi?id=65493
<rdar://problem/9353114>
Reviewed by Adam Roben.
Expose some methods on InspectorFrontendClient through the InspectorController so WebKit2
can request the inspector be docked, or ask whether or not it can be docked.
- WebCore.exp.in: Export needed methods.
- inspector/InspectorController.cpp:
(WebCore::InspectorController::requestAttachWindow): Call through to InspectorFrontendClient.
(WebCore::InspectorController::canAttachWindow): Ditto.
- inspector/InspectorController.h:
- inspector/InspectorFrontendClient.h:
- inspector/InspectorFrontendClientLocal.h:
Source/WebKit/chromium: WebKit2: Web Inspector always starts in undocked mode
https://bugs.webkit.org/show_bug.cgi?id=65493
<rdar://problem/9353114>
Reviewed by Adam Roben.
Add a stub method for Chromium.
- src/InspectorFrontendClientImpl.cpp:
(WebKit::InspectorFrontendClientImpl::canAttachWindow):
- src/InspectorFrontendClientImpl.h:
Source/WebKit2: WebKit2: Web Inspector always starts in undocked mode
https://bugs.webkit.org/show_bug.cgi?id=65493
<rdar://problem/9353114>
Reviewed by Adam Roben.
When opening the inspector, the web process tells the UI process that the inspector page has loaded,
but now will pass another bit of data, whether the inspector can start attached, so the UI process
doesn't need to ask the web process to do another calculation on whether or not it can be attached.
If the user prefers the inspector to start docked (this defaults to true), and there is room for the
window, we send a message to the web process to try and attach the inspector. This makes sure that the
inspector knows it is docked (in the web process).
- UIProcess/WebInspectorProxy.cpp:
(WebKit::WebInspectorProxy::attach): Update the user's docked/undocked preference if the inspector is visible
when it was attached.
(WebKit::WebInspectorProxy::detach): Ditto (but when it was detached).
(WebKit::WebInspectorProxy::didLoadInspectorPage): If we can start docked, and the user prefers to start docked,
then request the inspector be attached to the window.
- UIProcess/WebInspectorProxy.h:
- UIProcess/mac/WebInspectorProxyMac.mm:
(WebKit::WebInspectorProxy::platformOpen): Only show the window if we are going to start undocked.
- UIProcess/win/WebInspectorProxyWin.cpp:
(WebKit::WebInspectorProxy::platformOpen): Ditto.
- WebProcess/WebPage/WebInspector.cpp:
(WebKit::WebInspector::didLoadInspectorPage): Pass whether or not we can attach the window.
(WebKit::WebInspector::requestAttachWindow): Call through to the InspectorController to attach the inspector.
(WebKit::WebInspector::canAttachWindow): Ask the InspectorController if we can attach the inspector.
- WebProcess/WebPage/WebInspector.h:
- Shared/WebPreferencesStore.h: Add a new preference for whether or not the inspector should
start attached.
- UIProcess/WebInspectorProxy.messages.in: When the inspector page is loaded, tell the UI Process whether
we can attach the inspector without needing another message.
- WebProcess/WebPage/WebInspector.messages.in: Add a new message for RequestAttachWindow
- 10:25 AM Changeset in webkit [92383] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip 2 crashing tests on GTK. See bug 65699 and 65702.
- platform/gtk/Skipped:
- 9:51 AM Changeset in webkit [92382] by
-
- 3 edits1 add in trunk/Tools
builders.js needs unit tests
https://bugs.webkit.org/show_bug.cgi?id=65670
Reviewed by Dimitri Glazkov.
This test requires somewhat large test fixtures, but using real
examples seemed better than trimming them down too much.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders_unittests.js: Added.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
- Note: trac_unittests.js doesn't exist (yet!).
- 9:41 AM Changeset in webkit [92381] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip some svg tests on GTK, likely affected by bug 39022.
- platform/gtk/Skipped:
- 9:33 AM Changeset in webkit [92380] by
-
- 4 edits in trunk/LayoutTests
Unreviewed, GTK rebaseline and test_expectations update (2 tests
now passing).
- platform/gtk/fast/text/international/unicode-bidi-plaintext-expected.txt:
- platform/gtk/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt:
- platform/gtk/test_expectations.txt:
- 9:22 AM Changeset in webkit [92379] by
-
- 2 edits in trunk/LayoutTests
[Chromium] Normalize test_expectations.txt file.
- platform/chromium/test_expectations.txt: Ran webkit-path optimize-expectations.
- 9:10 AM Changeset in webkit [92378] by
-
- 3 edits in trunk/Source/WebCore
Support cast between CSSPrimitiveValue and EborderFit, use in CSSStyleSelector.
https://bugs.webkit.org/show_bug.cgi?id=65665
Reviewed by Simon Fraser.
No new tests / refactoring only.
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
Support cast from EBorderFit.
(WebCore::CSSPrimitiveValue::operator EBorderFit):
Support cast to EBorderFit.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
Use new cast to allow use of appropriate macro.
- 9:09 AM Changeset in webkit [92377] by
-
- 7 edits in trunk/Source/WebCore
Web Inspector: rename sendResultByValue to returnByValue in Runtime agent.
https://bugs.webkit.org/show_bug.cgi?id=65687
Reviewed by Yury Semikhatsky.
- inspector/InjectedScript.cpp:
(WebCore::InjectedScript::evaluate):
(WebCore::InjectedScript::callFunctionOn):
- inspector/InjectedScript.h:
- inspector/InjectedScriptSource.js:
- inspector/Inspector.json:
- inspector/InspectorRuntimeAgent.cpp:
(WebCore::InspectorRuntimeAgent::evaluate):
(WebCore::InspectorRuntimeAgent::callFunctionOn):
- inspector/InspectorRuntimeAgent.h:
- 8:41 AM Changeset in webkit [92376] by
-
- 11 edits1 copy3 adds in trunk/Source/WebKit2
[Qt][WK2] Create scene graph nodes for tiles in QTouchWebView instead of using imperative painting.
https://bugs.webkit.org/show_bug.cgi?id=65528
Reviewed by Benjamin Poulain.
Converts QTouchWebPage from QSGPaintedItem to a straight QSGItem.
- A SGTileNode is created and added to the scene graph for each tile, positioning them relatively to the page. It's basically a QSGSimpleTextureNode with support for specifying a source rect plus for owning the QSGTexture for proper destruction on shutdown by the rendering thread.
- Scale nodes are used as parent of tile nodes to revert the scaling set on the QTouchWebPage and allow us to keep using integer coordinates.
- The SGAgent class is introduced to carry scene graph update request up to the updatePaintNode call of the item, which may be on the scene graph rendering thread.
- UIProcess/API/qt/qtouchwebpage.cpp:
(QTouchWebPage::QTouchWebPage):
(QTouchWebPage::updatePaintNode):
Delegate scene graph updates to the SGAgent which received update requests from the tiled drawing area.
(QTouchWebPage::event):
(QTouchWebPage::geometryChanged):
(QTouchWebPagePrivate::QTouchWebPagePrivate):
- UIProcess/API/qt/qtouchwebpage.h:
- UIProcess/API/qt/qtouchwebpage_p.h:
- UIProcess/TiledDrawingAreaProxy.cpp:
Manage the scale node in the TileSet, it will be the parent node of Tile nodes.
(WebKit::TiledDrawingAreaTileSet::sgNodeID):
(WebKit::TiledDrawingAreaTileSet::TiledDrawingAreaTileSet):
(WebKit::TiledDrawingAreaTileSet::~TiledDrawingAreaTileSet):
(WebKit::TiledDrawingAreaProxy::TiledDrawingAreaProxy):
(WebKit::TiledDrawingAreaProxy::setContentsScale):
(WebKit::TiledDrawingAreaProxy::createTiles):
(WebKit::TiledDrawingAreaProxy::removeAllTiles):
- UIProcess/TiledDrawingAreaTile.h:
(WebKit::TiledDrawingAreaTile::create):
- UIProcess/qt/SGAgent.cpp: Added.
- UIProcess/qt/SGAgent.h: Added.
- UIProcess/qt/SGTileNode.cpp: Added.
- UIProcess/qt/SGTileNode.h: Added.
- UIProcess/qt/TiledDrawingAreaProxyQt.cpp:
Disable the paint call and update the scene graph on incorporateUpdate through the SGAgent.
(WebKit::TiledDrawingAreaProxy::updateWebView):
- UIProcess/qt/TiledDrawingAreaTileQt.cpp:
(WebKit::TiledDrawingAreaTile::TiledDrawingAreaTile):
(WebKit::TiledDrawingAreaTile::~TiledDrawingAreaTile):
(WebKit::TiledDrawingAreaTile::isReadyToPaint):
(WebKit::TiledDrawingAreaTile::swapBackBufferToFront):
(WebKit::TiledDrawingAreaTile::paint):
(WebKit::TiledDrawingAreaTile::incorporateUpdate):
(WebKit::TiledDrawingAreaTile::disableUpdates):
(WebKit::TiledDrawingAreaTile::setParentNodeID):
- UIProcess/qt/TouchViewInterface.cpp:
(WebKit::TouchViewInterface::sceneGraphAgent):
(WebKit::TouchViewInterface::setViewNeedsDisplay):
- UIProcess/qt/TouchViewInterface.h:
- WebKit2.pro:
- 8:22 AM Changeset in webkit [92375] by
-
- 13 edits3 adds in trunk/Source/WebCore
Use -webkit-locale for font selection.
https://bugs.webkit.org/show_bug.cgi?id=10874
Patch by Matt Falkenhagen <falken@chromium.org> on 2011-08-04
Reviewed by Dan Bernstein.
Infer a script from -webkit-locale to use to choose a font for generic
font families and the default unstyled font. The font is retrieved
from per-script font settings (see bug 20797). Since these settings
have not changed there should be no visible effect yet.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gyp/WebCore.gyp:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- css/CSSFontSelector.cpp: Use script when getting font from Settings
(WebCore::fontDataForGenericFamily):
(WebCore::CSSFontSelector::getFontData):
- css/CSSPropertyNames.in: Increase priority of -webkit-locale since it affects font
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::styleForDocument):
(WebCore::CSSStyleSelector::applyDeclarations):
(WebCore::CSSStyleSelector::applyProperty): Set script in font based on -webkit-locale
- page/Settings.cpp:
(WebCore::getGenericFontFamilyForScript): Fallback to USCRIPT_COMMON
- platform/graphics/FontDescription.h: Add m_script
(WebCore::FontDescription::FontDescription):
(WebCore::FontDescription::script):
(WebCore::FontDescription::setScript):
(WebCore::FontDescription::operator==):
- platform/text/LocaleToScriptMapping.h: Added.
- platform/text/LocaleToScriptMappingDefault.cpp: Added.
(WebCore::localeToScriptCodeForFontSelection):
(WebCore::LocaleScript::if):
(WebCore::LocaleScript::while):
- platform/text/LocaleToScriptMappingICU.cpp: Added.
(WebCore::scriptCodeForFontSelection):
(WebCore::localeToScriptCodeForFontSelection):
- 8:04 AM Changeset in webkit [92374] by
-
- 1 edit93 adds in trunk/LayoutTests
Unreviewed, GTK new baselines for new tests.
- platform/gtk/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Added.
- platform/gtk/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Added.
- platform/gtk/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt: Added.
- platform/gtk/fast/blockflow/broken-ideograph-small-caps-expected.png: Added.
- platform/gtk/fast/blockflow/broken-ideographic-font-expected.png: Added.
- platform/gtk/fast/borders/only-one-border-with-width-expected.png: Added.
- platform/gtk/fast/borders/only-one-border-with-width-expected.txt: Added.
- platform/gtk/fast/css/color-leakage-expected.png: Added.
- platform/gtk/fast/css/color-leakage-expected.txt: Added.
- platform/gtk/fast/css/font-family-pictograph-expected.png: Added.
- platform/gtk/fast/css/font-family-pictograph-expected.txt: Added.
- platform/gtk/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png: Added.
- platform/gtk/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Added.
- platform/gtk/fast/forms/input-appearance-number-rtl-expected.png: Added.
- platform/gtk/fast/forms/input-appearance-number-rtl-expected.txt: Added.
- platform/gtk/fast/forms/textarea-placeholder-wrapping-expected.png: Added.
- platform/gtk/fast/forms/textarea-placeholder-wrapping-expected.txt: Added.
- platform/gtk/fast/forms/textfield-overflow-by-value-update-expected.png: Added.
- platform/gtk/fast/forms/textfield-overflow-by-value-update-expected.txt: Added.
- platform/gtk/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Added.
- platform/gtk/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Added.
- platform/gtk/fast/text/international/unicode-bidi-plaintext-expected.png: Added.
- platform/gtk/fast/text/international/unicode-bidi-plaintext-expected.txt: Added.
- platform/gtk/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.png: Added.
- platform/gtk/fast/text/international/unicode-bidi-plaintext-in-textarea-expected.txt: Added.
- platform/gtk/fast/text/midword-break-before-surrogate-pair-expected.png: Added.
- platform/gtk/fast/text/midword-break-before-surrogate-pair-expected.txt: Added.
- platform/gtk/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Added.
- platform/gtk/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/painting-control-04-f-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/struct-dom-11-f-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/struct-use-11-f-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/styling-pres-02-f-expected.txt: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added.
- platform/gtk/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.txt: Added.
- platform/gtk/svg/as-border-image/svg-as-border-image-expected.png: Added.
- platform/gtk/svg/as-border-image/svg-as-border-image-expected.txt: Added.
- platform/gtk/svg/custom/absolute-root-position-masking-expected.png: Added.
- platform/gtk/svg/custom/absolute-root-position-masking-expected.txt: Added.
- platform/gtk/svg/custom/linking-uri-01-b-expected.png: Added.
- platform/gtk/svg/custom/linking-uri-01-b-expected.txt: Added.
- platform/gtk/svg/custom/repaint-shadow-expected.png: Added.
- platform/gtk/svg/custom/repaint-shadow-expected.txt: Added.
- platform/gtk/svg/custom/svg-fonts-fallback-expected.png: Added.
- platform/gtk/svg/custom/svg-fonts-fallback-expected.txt: Added.
- platform/gtk/svg/custom/svg-fonts-segmented-expected.png: Added.
- platform/gtk/svg/custom/svg-fonts-segmented-expected.txt: Added.
- platform/gtk/svg/custom/svg-fonts-word-spacing-expected.png: Added.
- platform/gtk/svg/custom/svg-fonts-word-spacing-expected.txt: Added.
- platform/gtk/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added.
- platform/gtk/svg/custom/text-tref-03-b-change-href-dom-expected.txt: Added.
- platform/gtk/svg/custom/text-tref-03-b-change-href-expected.png: Added.
- platform/gtk/svg/custom/text-tref-03-b-change-href-expected.txt: Added.
- platform/gtk/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added.
- platform/gtk/svg/custom/text-tref-03-b-referenced-element-removal-expected.txt: Added.
- platform/gtk/svg/custom/text-tref-03-b-tref-removal-expected.png: Added.
- platform/gtk/svg/custom/text-tref-03-b-tref-removal-expected.txt: Added.
- platform/gtk/svg/custom/tref-own-content-removal-expected.png: Added.
- platform/gtk/svg/custom/tref-own-content-removal-expected.txt: Added.
- platform/gtk/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added.
- platform/gtk/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added.
- platform/gtk/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added.
- platform/gtk/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added.
- 7:57 AM Changeset in webkit [92373] by
-
- 15 edits2 adds in trunk
[Qt] Make navigation actions properly usable in QML.
https://bugs.webkit.org/show_bug.cgi?id=65624
Source/WebKit2:
Add a new class that is exposed in QML to control the navigation
like reload/stop/back/forward. Enums are not very QML friendly,
it not possible to use enums that are not declared in the same class
than the object exposed in QML, therefore it makes hard the sharing
between the desktop and the touch views. In addition namespaced enums are
even harder to support in QML. QWebNavigationController is
not really meant to be used in C++ but it is exported for convenience
reason (tests and MiniBrowser) so its API is not meant to be public but
exposed in QML through properties and convenience slots. The QML code to use
the navigation action in QML will look like "desktopView.navigation.reload();"
or "if (desktopView.navigation.reloadAction.enabled) ...".
Reviewed by Benjamin Poulain.
- UIProcess/API/qt/WKView.h: To get the forward header generated
- UIProcess/API/qt/qdesktopwebview.cpp:
(QDesktopWebViewPrivate::QDesktopWebViewPrivate):
(QDesktopWebView::navigationController):
- UIProcess/API/qt/qdesktopwebview.h:
- UIProcess/API/qt/qdesktopwebview_p.h:
- UIProcess/API/qt/qmlplugin/plugin.cpp:
(WebKit2QmlPlugin::registerTypes):
- UIProcess/API/qt/qtouchwebpage.cpp:
(QTouchWebPage::navigationController):
(QTouchWebPagePrivate::QTouchWebPagePrivate):
- UIProcess/API/qt/qtouchwebpage.h:
- UIProcess/API/qt/qtouchwebpage_p.h:
- UIProcess/API/qt/qwebnavigationcontroller.cpp: Added.
(QWebNavigationControllerPrivate::QWebNavigationControllerPrivate):
(QWebNavigationController::QWebNavigationController):
(QWebNavigationController::~QWebNavigationController):
(QWebNavigationController::backAction):
(QWebNavigationController::forwardAction):
(QWebNavigationController::stopAction):
(QWebNavigationController::reloadAction):
(QWebNavigationController::navigationAction):
(QWebNavigationController::back):
(QWebNavigationController::forward):
(QWebNavigationController::stop):
(QWebNavigationController::reload):
- UIProcess/API/qt/qwebnavigationcontroller.h: Added.
- UIProcess/API/qt/tests/commonviewtests/webviewabstraction.cpp:
(WebViewAbstraction::triggerNavigationAction):
- UIProcess/API/qt/tests/qdesktopwebview/tst_qdesktopwebview.cpp:
(tst_QDesktopWebView::navigationActionsStatusAtStartup):
(LoadStartedCatcher::onLoadStarted):
(tst_QDesktopWebView::stopActionEnabledAfterLoadStarted):
- UIProcess/API/qt/tests/qtouchwebview/tst_qtouchwebview.cpp:
(tst_QTouchWebView::navigationActionsStatusAtStartup):
- WebKit2API.pri:
Tools:
Fix compilation after the introduction of QWebNavigationController.
Reviewed by Benjamin Poulain.
- MiniBrowser/qt/BrowserView.cpp:
(BrowserView::navigationAction):
- 7:39 AM Changeset in webkit [92372] by
-
- 4 edits2 adds in trunk
Web Inspector: Pretty print JSONP in network panel preview tab.
https://bugs.webkit.org/show_bug.cgi?id=65559
Reviewed by Pavel Feldman.
Source/WebCore:
Test: http/tests/inspector/network/network-preview-json.html
- inspector/front-end/ResourceJSONView.js:
(WebInspector.ResourceJSONView.parseJSON.WebInspector.ResourceJSONView.parseJSONP):
(WebInspector.ResourceJSONView.parseJSON.WebInspector.ResourceJSONView.prototype._initialize):
(WebInspector.ResourceJSONView.parseJSON.WebInspector.ParsedJSON):
- inspector/front-end/ResourcePreviewView.js:
(WebInspector.ResourcePreviewView.prototype._createPreviewView):
LayoutTests:
- http/tests/inspector/network/network-preview-json-expected.txt: Added.
- http/tests/inspector/network/network-preview-json.html: Added.
- 6:54 AM Changeset in webkit [92371] by
-
- 8 edits in trunk
Web Inspector: replace isRegex with urlRegex in setBreakpointByUrl
https://bugs.webkit.org/show_bug.cgi?id=65684
Reviewed by Yury Semikhatsky.
Source/WebCore:
- inspector/Inspector.json:
- inspector/InspectorDebuggerAgent.cpp:
(WebCore::InspectorDebuggerAgent::setBreakpointByUrl):
- inspector/InspectorDebuggerAgent.h:
- inspector/front-end/DebuggerModel.js:
(WebInspector.DebuggerModel.prototype.setBreakpoint):
LayoutTests:
- inspector/debugger/debugger-set-breakpoint-regex-expected.txt:
- inspector/debugger/debugger-set-breakpoint-regex.html:
- 6:42 AM Changeset in webkit [92370] by
-
- 4 edits in trunk/Source/WebCore
[GTK] fullscreen/video-controls-override.html fails
https://bugs.webkit.org/show_bug.cgi?id=65618
Reviewed by Martin Robinson.
Implement extraFullScreenStyleSheet() and provide the QuickTime
stylesheet for now, later we might want our own stylesheet.
- GNUmakefile.am:
- platform/gtk/RenderThemeGtk.cpp: (WebCore::RenderThemeGtk::extraFullScreenStyleSheet):
- platform/gtk/RenderThemeGtk.h:
- 6:07 AM Changeset in webkit [92369] by
-
- 20 edits in trunk
Web Inspector: Rename sourceId -> scriptId in the protocol and the source code.
https://bugs.webkit.org/show_bug.cgi?id=65682
Reviewed by Yury Semikhatsky.
Source/WebCore:
- inspector/InjectedScriptSource.js:
():
- inspector/Inspector.json:
- inspector/InspectorConsoleAgent.cpp:
(WebCore::InspectorConsoleAgent::addMessageToConsole):
- inspector/InspectorConsoleAgent.h:
- inspector/InspectorConsoleInstrumentation.h:
(WebCore::InspectorInstrumentation::addMessageToConsole):
- inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::buildObjectForEventListener):
- inspector/InspectorDebuggerAgent.cpp:
(WebCore::parseLocation):
(WebCore::InspectorDebuggerAgent::setBreakpoint):
(WebCore::InspectorDebuggerAgent::continueToLocation):
(WebCore::InspectorDebuggerAgent::resolveBreakpoint):
(WebCore::InspectorDebuggerAgent::setScriptSource):
(WebCore::InspectorDebuggerAgent::getScriptSource):
(WebCore::InspectorDebuggerAgent::didParseSource):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorInstrumentation.cpp:
(WebCore::InspectorInstrumentation::addMessageToConsoleImpl):
- inspector/InspectorInstrumentation.h:
- inspector/ScriptDebugListener.h:
- inspector/front-end/DebuggerModel.js:
(WebInspector.DebuggerModel.prototype.scriptForSourceID):
(WebInspector.DebuggerModel.prototype.queryScripts):
(WebInspector.DebuggerModel.prototype.setScriptSource):
(WebInspector.DebuggerModel.prototype._didEditScriptSource):
(WebInspector.DebuggerModel.prototype._parsedScriptSource):
(WebInspector.DebuggerDispatcher.prototype.scriptParsed):
(WebInspector.DebuggerDispatcher.prototype.breakpointResolved):
- inspector/front-end/DebuggerPresentationModel.js:
(WebInspector.DebuggerPresentationModel.prototype.registerAnchor):
(WebInspector.DebuggerPresentationModel.prototype._updateAnchor):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource.didReceiveSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource):
(WebInspector.DebuggerPresentationModel.prototype._setBreakpointInDebugger.didGetScriptLocation):
(WebInspector.DebuggerPresentationModel.prototype._setBreakpointInDebugger):
(WebInspector.DebuggerPresentationModel.prototype._breakpointAdded):
(WebInspector.DebuggerPresentationModel.prototype.set _debuggerPaused):
(WebInspector.DebuggerPresentationModel.prototype._sourceFileForScript):
(WebInspector.DebuggerPresentationModel.prototype._scriptForSourceFileId):
(WebInspector.DebuggerPresentationModel.prototype._createSourceFileId):
(WebInspector.PresenationCallFrame):
(WebInspector.PresenationCallFrame.prototype.sourceLine):
- inspector/front-end/EventListenersSidebarPane.js:
(.):
():
- inspector/front-end/Script.js:
(WebInspector.Script):
(WebInspector.Script.prototype.requestSource):
(WebInspector.Script.prototype.editSource):
- inspector/front-end/SourceFile.js:
(WebInspector.RawSourceCode.prototype.uiLocationToRawLocation):
(WebInspector.RawSourceCode.prototype.forceLoadContent):
(WebInspector.RawSourceCode.prototype._concatenateScriptsContent):
LayoutTests:
- http/tests/inspector/debugger-test.js:
(initialize_DebuggerTest):
- inspector/debugger/source-file.html:
- 5:43 AM Changeset in webkit [92368] by
-
- 5 edits4 adds in trunk/LayoutTests
Unreviewed, GTK rebaseline.
- platform/gtk/fast/dom/Range/getBoundingClientRect-expected.txt:
- platform/gtk/fast/dom/Range/getClientRects-expected.txt:
- platform/gtk/fast/dom/Window/window-postmessage-clone-expected.txt:
- platform/gtk/fast/dom/Window/window-properties-expected.txt:
- platform/gtk/fast/dom/Window/window-property-descriptors-expected.txt: Added.
- platform/gtk/fast/dom/prototype-inheritance-2-expected.txt: Added.
- platform/gtk/fast/dom/prototype-inheritance-expected.txt: Added.
- platform/gtk/fast/js/global-constructors-expected.txt: Added.
- 4:24 AM Changeset in webkit [92367] by
-
- 2 edits in trunk/LayoutTests
[Chromium] Needs eventSender.scalePageBy()
https://bugs.webkit.org/show_bug.cgi?id=58013
Unreviewed chromium test_expectations.txt update
- platform/chromium/test_expectations.txt:
- 4:04 AM Changeset in webkit [92366] by
-
- 1 edit in branches/chromium/835/Source/WebCore/inspector/front-end/DetailedHeapshotView.js
Merge 91829 - Web Inspector: [Chromium] REGRESSION: Uncaught TypeError: Cannot read property 'isTracingToWindowObjects' of undefined
https://bugs.webkit.org/show_bug.cgi?id=65213
Reviewed by Pavel Feldman.
- inspector/front-end/DetailedHeapshotView.js:
(WebInspector.HeapSnapshotRetainingPathsList.prototype.refresh):
TBR=mnaganov@chromium.org
BUG=91535
Review URL: http://codereview.chromium.org/7575008
- 3:07 AM Changeset in webkit [92365] by
-
- 16 edits3 moves in trunk/Source/WebCore
MediaStream API: Rename StreamEvent to MediaStreamEvent
https://bugs.webkit.org/show_bug.cgi?id=65669
Patch by Tommy Widenflycht <tommyw@google.com> on 2011-08-04
Reviewed by Tony Gentilcore.
- CMakeLists.txt:
- CodeGenerators.pri:
- DerivedSources.cpp:
- DerivedSources.make:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSEventCustom.cpp:
(WebCore::toJS):
- bindings/v8/custom/V8EventCustom.cpp:
(WebCore::toV8):
- dom/DOMAllInOne.cpp:
- dom/Event.cpp:
(WebCore::Event::isMediaStreamEvent):
- dom/Event.h:
- p2p/MediaStreamEvent.cpp: Renamed from Source/WebCore/dom/StreamEvent.cpp.
(WebCore::MediaStreamEvent::create):
(WebCore::MediaStreamEvent::MediaStreamEvent):
(WebCore::MediaStreamEvent::~MediaStreamEvent):
(WebCore::MediaStreamEvent::initMediaStreamEvent):
(WebCore::MediaStreamEvent::stream):
- p2p/MediaStreamEvent.h: Renamed from Source/WebCore/dom/StreamEvent.h.
(WebCore::MediaStreamEvent::isMediaStreamEvent):
- p2p/MediaStreamEvent.idl: Renamed from Source/WebCore/dom/StreamEvent.idl.
- p2p/PeerConnection.cpp:
(WebCore::PeerConnection::dispatchStreamEvent):
- 2:32 AM Changeset in webkit [92364] by
-
- 6 edits2 adds in trunk
IndexedDB: Fix index data invalidation bugs.
https://bugs.webkit.org/show_bug.cgi?id=65547
Reviewed by Tony Chang.
Source/WebCore:
The function that checks whether a key exists in an index failed
to check whether that key was still valid or not.
Deleting a record from an object store must also delete its exists
entry, thus invalidating index keys pointing to that record.
Test: storage/indexeddb/index-unique.html
- storage/IDBLevelDBBackingStore.cpp:
(WebCore::IDBLevelDBBackingStore::deleteObjectStoreRecord):
(WebCore::findKeyInIndex):
(WebCore::IDBLevelDBBackingStore::getPrimaryKeyViaIndex):
(WebCore::IDBLevelDBBackingStore::keyExistsInIndex):
(WebCore::CursorOptions::IndexKeyCursorImpl::loadCurrentRow):
LayoutTests:
Add layout test to verify that update object store data causes old
index data to be invalidated.
- storage/indexeddb/index-unique.html: Added.
- 2:19 AM WikiStart edited by
- (diff)
- 2:10 AM Changeset in webkit [92363] by
-
- 1 edit4 moves in trunk/Source/WebCore
Move PODIntervalTree to Source/WebCore/platform
https://bugs.webkit.org/show_bug.cgi?id=65667
It seems the files were not part of any project, so no project files were modified.
Patch by Alexandru Chiculita <Alexandru Chiculita> on 2011-08-04
Reviewed by Adam Barth.
No new tests, just moving files from one folder to the other.
- platform/PODArena.h: Renamed from Source/WebCore/platform/graphics/gpu/PODArena.h.
(WebCore::PODArena::Allocator::~Allocator):
(WebCore::PODArena::FastMallocAllocator::create):
(WebCore::PODArena::FastMallocAllocator::allocate):
(WebCore::PODArena::FastMallocAllocator::free):
(WebCore::PODArena::FastMallocAllocator::FastMallocAllocator):
(WebCore::PODArena::create):
(WebCore::PODArena::allocateObject):
(WebCore::PODArena::~PODArena):
(WebCore::PODArena::PODArena):
(WebCore::PODArena::minAlignment):
(WebCore::PODArena::allocateBase):
(WebCore::PODArena::roundUp):
(WebCore::PODArena::Chunk::Chunk):
(WebCore::PODArena::Chunk::~Chunk):
(WebCore::PODArena::Chunk::allocate):
- platform/PODInterval.h: Renamed from Source/WebCore/platform/graphics/gpu/PODInterval.h.
(WebCore::PODInterval::PODInterval):
(WebCore::PODInterval::low):
(WebCore::PODInterval::high):
(WebCore::PODInterval::data):
(WebCore::PODInterval::overlaps):
(WebCore::PODInterval::operator<):
(WebCore::PODInterval::operator==):
(WebCore::PODInterval::maxHigh):
(WebCore::PODInterval::setMaxHigh):
(WebCore::PODInterval::toString):
- platform/PODIntervalTree.h: Renamed from Source/WebCore/platform/graphics/gpu/PODIntervalTree.h.
(WebCore::PODIntervalTree::PODIntervalTree):
(WebCore::PODIntervalTree::allOverlaps):
(WebCore::PODIntervalTree::createInterval):
(WebCore::PODIntervalTree::checkInvariants):
(WebCore::PODIntervalTree::init):
(WebCore::PODIntervalTree::searchForOverlapsFrom):
(WebCore::PODIntervalTree::updateNode):
(WebCore::PODIntervalTree::checkInvariantsFromNode):
- platform/PODRedBlackTree.h: Renamed from Source/WebCore/platform/graphics/gpu/PODRedBlackTree.h.
(WebCore::PODRedBlackTree::Visitor::~Visitor):
(WebCore::PODRedBlackTree::PODRedBlackTree):
(WebCore::PODRedBlackTree::~PODRedBlackTree):
(WebCore::PODRedBlackTree::add):
(WebCore::PODRedBlackTree::remove):
(WebCore::PODRedBlackTree::contains):
(WebCore::PODRedBlackTree::visitInorder):
(WebCore::PODRedBlackTree::size):
(WebCore::PODRedBlackTree::setNeedsFullOrderingComparisons):
(WebCore::PODRedBlackTree::checkInvariants):
(WebCore::PODRedBlackTree::dump):
(WebCore::PODRedBlackTree::setVerboseDebugging):
(WebCore::PODRedBlackTree::Node::Node):
(WebCore::PODRedBlackTree::Node::~Node):
(WebCore::PODRedBlackTree::Node::color):
(WebCore::PODRedBlackTree::Node::setColor):
(WebCore::PODRedBlackTree::Node::data):
(WebCore::PODRedBlackTree::Node::copyFrom):
(WebCore::PODRedBlackTree::Node::left):
(WebCore::PODRedBlackTree::Node::setLeft):
(WebCore::PODRedBlackTree::Node::right):
(WebCore::PODRedBlackTree::Node::setRight):
(WebCore::PODRedBlackTree::Node::parent):
(WebCore::PODRedBlackTree::Node::setParent):
(WebCore::PODRedBlackTree::root):
(WebCore::PODRedBlackTree::updateNode):
(WebCore::PODRedBlackTree::treeSearch):
(WebCore::PODRedBlackTree::treeSearchNormal):
(WebCore::PODRedBlackTree::treeSearchFullComparisons):
(WebCore::PODRedBlackTree::treeInsert):
(WebCore::PODRedBlackTree::treeSuccessor):
(WebCore::PODRedBlackTree::treeMinimum):
(WebCore::PODRedBlackTree::propagateUpdates):
(WebCore::PODRedBlackTree::leftRotate):
(WebCore::PODRedBlackTree::rightRotate):
(WebCore::PODRedBlackTree::insertNode):
(WebCore::PODRedBlackTree::deleteFixup):
(WebCore::PODRedBlackTree::deleteNode):
(WebCore::PODRedBlackTree::visitInorderImpl):
(WebCore::PODRedBlackTree::Counter::Counter):
(WebCore::PODRedBlackTree::Counter::visit):
(WebCore::PODRedBlackTree::Counter::count):
(WebCore::PODRedBlackTree::checkInvariantsFromNode):
(WebCore::PODRedBlackTree::logIfVerbose):
(WebCore::PODRedBlackTree::dumpFromNode):
- 1:52 AM Changeset in webkit [92362] by
-
- 2 edits in trunk/LayoutTests
Layout Test fast/box-shadow/box-shadow-clipped-slices.html is failing
https://bugs.webkit.org/show_bug.cgi?id=65666
Chromium test_expectations.txt update
- platform/chromium/test_expectations.txt:
- 1:39 AM Changeset in webkit [92361] by
-
- 2 edits9 adds in trunk/LayoutTests
[Chromium] Needs eventSender.scalePageBy()
https://bugs.webkit.org/show_bug.cgi?id=58013
Chromium test rebaselining
- platform/chromium-gpu-win/compositing/scaling/tiled-layer-recursion-expected.png: Added.
- platform/chromium-mac-leopard/compositing/scaling/tiled-layer-recursion-expected.png: Added.
- platform/chromium-mac/compositing/scaling/tiled-layer-recursion-expected.png: Added.
- platform/chromium-win/compositing/scaling/tiled-layer-recursion-expected.png: Added.
- platform/chromium/test_expectations.txt:
- 12:56 AM Changeset in webkit [92360] by
-
- 2 edits in trunk/Tools
Another subtle bug due to lack of testing in main.js. :(
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- 12:52 AM Changeset in webkit [92359] by
-
- 3 edits in trunk/LayoutTests
Test progression after <http://trac.webkit.org/changeset/92341>.
- platform/chromium-mac/fast/dom/Element/scale-page-client-rects-expected.txt:
- platform/chromium-mac/fast/dom/Range/scale-page-client-rects-expected.txt:
- 12:49 AM Changeset in webkit [92358] by
-
- 6 edits in trunk/LayoutTests
Update baselines after <http://trac.webkit.org/changeset/92340>.
- platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png:
- platform/chromium-mac/fast/repaint/shadow-multiple-horizontal-expected.png:
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-horizontal-expected.png:
- platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png:
- platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png:
- 12:41 AM Changeset in webkit [92357] by
-
- 2 edits in trunk/Tools
Fix types. Sadly, main.js has no test coverage. (I need to think
about how to test this part of the code.)
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- 12:14 AM Changeset in webkit [92356] by
-
- 3 edits1 add in trunk/Tools
bugzilla.js is missing unit tests
https://bugs.webkit.org/show_bug.cgi?id=65656
Reviewed by Adam Roben.
Testing makes perfect.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/bugzilla_unittests.js: Added.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js:
(NetworkSimulator.prototype.runTest.get if):
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
- 12:14 AM Changeset in webkit [92355] by
-
- 19 edits in trunk/Tools
Add missing license blocks to garden-o-matic
https://bugs.webkit.org/show_bug.cgi?id=65654
Reviewed by Dimitri Glazkov.
This patch is entirely boilerplate.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/TestFailures.css:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/config.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.css:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
- 12:13 AM Changeset in webkit [92354] by
-
- 12 edits2 adds in trunk/Tools
garden-o-matic needs a way to mock out the network
https://bugs.webkit.org/show_bug.cgi?id=65653
Reviewed by Dimitri Glazkov.
This patch introduces the net module, which is a useful mock point for
abstracting away the network. Future patches will use this
infrastructure to test some currently untested code.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Bugzilla.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/Trac.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/base.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/builders.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/index.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net.js: Added.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/net_unittests.js: Added.
(NetworkSimulator):
(NetworkSimulator.prototype.scheduleCallback):
(NetworkSimulator.prototype.runTest):
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/run-unittests.html:
- Scripts/webkitpy/tool/servers/gardeningserver.py:
- 12:10 AM Changeset in webkit [92353] by
-
- 2 edits in trunk/LayoutTests
This test triggers a crasher on some ports. The crasher is filed already.
- platform/qt/Skipped:
Aug 3, 2011:
- 11:35 PM Changeset in webkit [92352] by
-
- 5 edits in trunk
An element with role=textbox should have settable AXValue unless read-only
https://bugs.webkit.org/show_bug.cgi?id=65664
Patch by Alice Boxhall <aboxhall@chromium.org> on 2011-08-03
Reviewed by Chris Fleizach.
Source/WebCore:
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::AccessibilityRenderObject::canSetValueAttribute):
Return true for non-native text field with aria-readonly not set.
LayoutTests:
- accessibility/aria-readonly-expected.txt:
- accessibility/aria-readonly.html:
- 11:08 PM Changeset in webkit [92351] by
-
- 6 edits in trunk/Tools
Use failureInfo more pervasively in garden-o-matic
https://bugs.webkit.org/show_bug.cgi?id=65650
Reviewed by Dimitri Glazkov.
These three variable appears in concert together many places. This
patch unifies the remaining uses into being failureInfo objects, which
saves some marshalling.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/results_unittests.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/ui_unittests.js:
- 10:34 PM Changeset in webkit [92350] by
-
- 2 edits in trunk/Source/WebKit/win
[Windows] Fix build without ENABLE_VIDEO.
- WebView.cpp:
(WebView::enterFullscreenForNode):
- 9:40 PM Changeset in webkit [92349] by
-
- 2 edits in trunk/Source/WebCore
Clean up value clamping in CSSStyleSelector.
https://bugs.webkit.org/show_bug.cgi?id=65588
Reviewed by Darin Adler.
No new tests / trivial code cleanup only.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
Replace (unsigned int)primitiveValue->getDoubleValue() with primtiveValue->getValue<unsigned>() for correct clamping.
Replace clampToInteger(primitiveValue->getDoubleValue()) with primitiveValue->getIntValue().
- 9:38 PM Changeset in webkit [92348] by
-
- 4 edits in trunk/Tools
garden-o-matic should be able to update expecations from the details pane
https://bugs.webkit.org/show_bug.cgi?id=65648
Reviewed by Dimitri Glazkov.
The new button queues up the updates, which get executed all at once.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
- 9:38 PM Changeset in webkit [92347] by
-
- 13 edits in trunk/Source
Fix incorrect checks for HTMLMediaElement
https://bugs.webkit.org/show_bug.cgi?id=65590
Reviewed by Dimitri Glazkov.
<video> and <audio> can be an HTMLElement instance instead of
HTMLMediaElement if MediaPlayer::isAvailable() returns false or
the media feature is disabled at runtime.
Source/WebCore:
- html/HTMLSourceElement.cpp:
(WebCore::HTMLSourceElement::insertedIntoTree):
(WebCore::HTMLSourceElement::willRemove):
- html/HTMLTrackElement.cpp:
(WebCore::HTMLTrackElement::insertedIntoTree):
(WebCore::HTMLTrackElement::willRemove):
- html/shadow/MediaControlElements.cpp:
(WebCore::toParentMediaElement):
- page/FrameView.cpp:
(WebCore::FrameView::updateWidget):
- platform/efl/RenderThemeEfl.cpp:
(WebCore::RenderThemeEfl::paintMediaMuteButton):
- platform/gtk/RenderThemeGtk.cpp:
(WebCore::getMediaElementFromRenderObject):
- rendering/RenderThemeMac.mm:
(WebCore::RenderThemeMac::paintMediaSliderTrack):
- rendering/RenderThemeWinCE.cpp:
(WebCore::mediaElementParent):
Source/WebKit/mac:
- WebView/WebFullScreenController.mm:
(-[WebFullScreenController _isAnyMoviePlaying]):
Source/WebKit/win:
- WebView.cpp:
(WebView::enterFullscreenForNode):
- 9:16 PM Changeset in webkit [92346] by
-
- 7 edits in trunk/Tools
Add UI to garden-o-matic for updating expectations
https://bugs.webkit.org/show_bug.cgi?id=65644
Reviewed by Dimitri Glazkov.
The patch plumbs the UI back to the gardening server, but the gardening
server endpoint is just a stub at this point.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
- Scripts/webkitpy/tool/servers/gardeningserver.py:
- Scripts/webkitpy/tool/servers/reflectionhandler.py:
- 8:54 PM Changeset in webkit [92345] by
-
- 2 edits in trunk/Source/WebKit2
Use of AVFoundation should default to off on Windows
https://bugs.webkit.org/show_bug.cgi?id=65660
Reviewed by Darin Adler.
- Shared/WebPreferencesStore.h: Change default value for AVFoundationEnabled to false on Windows, it's still true on other platforms.
- 8:02 PM Changeset in webkit [92344] by
-
- 5 edits in trunk/Tools
garden-o-matic details view should queue rebaselines for later execution
https://bugs.webkit.org/show_bug.cgi?id=65636
Reviewed by Dimitri Glazkov.
This patch doesn't contain any confirmation UI, but we'll probably want
that at some point.
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/checkout.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/garden-o-matic.html:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/main.js:
- BuildSlaveSupport/build.webkit.org-config/public_html/TestFailures/model.js:
- 7:35 PM Changeset in webkit [92343] by
-
- 3 edits in trunk/Source/WebCore
Chromium Mac: Make ScrollbarOverlayUtilitiesChromiumMac.h c++ compatible
https://bugs.webkit.org/show_bug.cgi?id=65659
Patch by Sailesh Agrawal <sail@chromium.org> on 2011-08-03
Reviewed by James Robinson.
ScrollbarOverlayUtilitiesChromiumMac.h couldn't be included from pure c++ code because it used NSInteger. I fixed this by checking for OBJC before using NSInteger.
Currently no pure c++ files are including ScrollbarOverlayUtilitiesChromiumMac.h but this will change in future patches from jam@chromium.org.
- platform/chromium/ScrollbarOverlayUtilitiesChromiumMac.h:
- platform/chromium/ScrollbarOverlayUtilitiesChromiumMac.mm:
(wkScrollbarPainterControllerStyle):
(wkSetScrollbarPainterControllerStyle):
- 7:09 PM Changeset in webkit [92342] by
-
- 3 edits in trunk/Source/WebCore
Support cast between CSSPrimitiveValue and EBoxSizing, use in CSSStyleSelector.
https://bugs.webkit.org/show_bug.cgi?id=65657
Reviewed by Simon Fraser.
No new tests / refactoring only.
- css/CSSPrimitiveValueMappings.h:
(WebCore::CSSPrimitiveValue::CSSPrimitiveValue):
Implement cast from EBoxSizing.
(WebCore::CSSPrimitiveValue::operator EBoxSizing):
Implement cast to EBoxSizing.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
Use appropriate macro to simplify code using cast.
- 7:01 PM Changeset in webkit [92341] by
-
- 10 edits4 adds6 deletes in trunk
Implement EventSender.scalePageBy()
https://bugs.webkit.org/show_bug.cgi?id=58013
Patch by Kentaro Hara <haraken@google.com> on 2011-08-03
Reviewed by Darin Fisher.
Implemented EventSender.scalePageBy(f, x, y), which scales a page by a factor of f
and then sets a scroll position to (x, y). Enabled the tests that had been waiting
for the implementation of EventSender.scalePageBy(f, x, y).
Source/WebKit/chromium:
Tests: compositing/scaling/tiled-layer-recursion.html
fast/repaint/scale-page-shrink.html
fast/dom/Element/scale-page-client-rects.html
fast/dom/Range/scale-page-client-rects.html
fast/events/scroll-in-scaled-page-with-overflow-hidden.html
fast/dom/Element/scale-page-bounding-client-rect.html
fast/dom/Range/scale-page-bounding-client-rect.html
- public/WebView.h:
- src/WebViewImpl.cpp:
(WebKit::WebViewImpl::scalePage): A wrapper method for scalePage() in WebCore.
- src/WebViewImpl.h:
Tools:
Tests: compositing/scaling/tiled-layer-recursion.html
fast/repaint/scale-page-shrink.html
fast/dom/Element/scale-page-client-rects.html
fast/dom/Range/scale-page-client-rects.html
fast/events/scroll-in-scaled-page-with-overflow-hidden.html
fast/dom/Element/scale-page-bounding-client-rect.html
fast/dom/Range/scale-page-bounding-client-rect.html
- DumpRenderTree/chromium/EventSender.cpp:
(EventSender::EventSender): Added bindings for scalePageBy().
(EventSender::scalePageBy): A wrapper method for scalePage() in WebView.
- DumpRenderTree/chromium/EventSender.h:
- DumpRenderTree/chromium/TestShell.cpp:
(TestShell::resetTestController): Resets the scale factor to 1.
LayoutTests:
- platform/chromium-linux/compositing/scaling/tiled-layer-recursion-expected.png: Added.
- platform/chromium-linux/fast/repaint/scale-page-shrink-expected.png: Added.
- platform/chromium-linux/fast/repaint/scale-page-shrink-expected.txt: Added.
- platform/chromium-mac/fast/dom/Element/scale-page-bounding-client-rect-expected.txt: Removed.
- platform/chromium-mac/fast/dom/Range/scale-page-bounding-client-rect-expected.txt: Removed.
- platform/chromium-win/fast/dom/Element/scale-page-bounding-client-rect-expected.txt: Removed.
- platform/chromium-win/fast/dom/Element/scale-page-client-rects-expected.txt: Removed.
- platform/chromium-win/fast/dom/Range/scale-page-bounding-client-rect-expected.txt: Removed.
- platform/chromium-win/fast/dom/Range/scale-page-client-rects-expected.txt: Removed.
- platform/chromium/test_expectations.txt: Enabled one test. Enabled two tests for chromium-linux.
- 6:51 PM Changeset in webkit [92340] by
-
- 10 edits3 adds in trunk
<http://webkit.org/b/65006> Draw rectangular box shadow for elements with border-radius if no corners are visible
Patch by Ian Henderson <ianh@apple.com> on 2011-08-03
Reviewed by Simon Fraser.
Source/WebCore:
Change "unroundClippedCorners" to "allCornersClippedOut" and use it to
determine when the corners' influence affects the blurred shadow in
the current drawing region.
Test: fast/box-shadow/box-shadow-clipped-slices.html
- rendering/InlineFlowBox.cpp:
(WebCore::InlineFlowBox::paintBoxShadow): Pass PaintInfo through to
RenderBoxModelObject::paintBoxShadow.
(WebCore::InlineFlowBox::paintBoxDecorations): Ditto.
- rendering/InlineFlowBox.h:
- rendering/RenderBox.cpp:
(WebCore::RenderBox::paintBoxDecorations): Ditto.
- rendering/RenderBoxModelObject.cpp:
(WebCore::allCornersClippedOut): Determines whether the bounding rects
for any of the given rounded rect's corners intersects the clip rect.
(WebCore::RenderBoxModelObject::paintBorder): Instead of "unrounding"
any corner outside the clip rect, unround all corners at once, and
only if they are all outside the clip rect.
(WebCore::RenderBoxModelObject::paintBoxShadow): Determine whether any
corner will influence shadow drawing using allCornersClippedOut on the
influenceRect, whose corners extend past the fillRect's corners by the
blur radius and inside the fillRect's corners by the blur radius.
- rendering/RenderBoxModelObject.h:
- rendering/RenderFieldset.cpp:
(WebCore::RenderFieldset::paintBoxDecorations): Pass PaintInfo into
RenderBoxModelObject::paintBoxShadow.
- rendering/RenderTable.cpp:
(WebCore::RenderTable::paintBoxDecorations): Ditto.
- rendering/RenderTableCell.cpp:
(WebCore::RenderTableCell::paintBoxDecorations): Ditto.
LayoutTests:
- fast/box-shadow/box-shadow-clipped-slices.html: Added.
- platform/mac/fast/box-shadow/box-shadow-clipped-slices-expected.png: Added.
- platform/mac/fast/box-shadow/box-shadow-clipped-slices-expected.txt: Added.
- 6:44 PM Changeset in webkit [92339] by
-
- 3 edits in trunk/LayoutTests
[Chromium] fast/dom/resource-locations-in-created-html-document.html fails on win32
https://bugs.webkit.org/show_bug.cgi?id=65521
Patch by Noel Gordon <noel.gordon@gmail.com> on 2011-08-03
Reviewed by Adam Barth.
file: scheme URI paths on Windows include the disk drive reference (C: for example).
Refer to http://blogs.msdn.com/b/ie/archive/2006/12/06/file-uris-in-windows.aspx.
- fast/dom/resource-locations-in-created-html-document.html:
- platform/chromium/test_expectations.txt:
- 6:41 PM Changeset in webkit [92338] by
-
- 2 edits in trunk/LayoutTests
Revert an erroneous rebaseline from r92315.
- fast/dom/navigator-detached-no-crash-expected.txt:
- 5:22 PM Changeset in webkit [92337] by
-
- 2 edits in trunk/Source/WebCore
[Qt][Texmap][REGRESSION] http://webkit.org/blog-files/transform-style.html doesn't show composited content
https://bugs.webkit.org/show_bug.cgi?id=65629
Reviewed by Benjamin Poulain.
Some non-ES2 initialization was wrongfully #ifdefed in CPU(X86) and thus compiled-out.
When put it in the correct #ifdef, composited layers which require an intermediate buffer
work again.
No new tests. Existing opacity tests in LayoutTests/compositing test this.
- platform/graphics/opengl/TextureMapperGL.cpp:
(WebCore::BitmapTextureGL::bind):
- 5:16 PM Changeset in webkit [92336] by
-
- 1 edit3 deletes in trunk/LayoutTests
Chromium Windows and Linux rebaselines after r92330.
- platform/chromium-win/editing/pasteboard/paste-pre-001-expected.txt: Removed.
- platform/chromium-win/editing/pasteboard/paste-pre-002-expected.txt: Removed.
- platform/chromium-win/editing/pasteboard/paste-text-011-expected.txt: Removed.
- 4:57 PM Changeset in webkit [92335] by
-
- 1 edit in branches/chromium/835/Source/WebCore/platform/graphics/chromium/LayerTilerChromium.cpp
Merge 92331 - [chromium] Fix issue where switching composited tabs evicts root textures
https://bugs.webkit.org/show_bug.cgi?id=65562
Reviewed by James Robinson.
LayerTilerChromium::protectTileTextures was hard-coding texture sizes
and texture formats. Because this didn't always match textures' actual
sizes and formats, they weren't getting protected during eviction.
- platform/graphics/chromium/LayerTilerChromium.cpp:
(WebCore::LayerTilerChromium::protectTileTextures):
TBR=enne@google.com
Review URL: http://codereview.chromium.org/7508041
- 4:53 PM Changeset in webkit [92334] by
-
- 3 edits in trunk/Tools
Rename WEBKIT_API to WEBKIT_EXPORT in check-webkit-style.
https://bugs.webkit.org/show_bug.cgi?id=65652
Reviewed by Adam Barth.
- Scripts/webkitpy/style/checkers/cpp.py:
- Scripts/webkitpy/style/checkers/cpp_unittest.py:
- 4:51 PM Changeset in webkit [92333] by
-
- 8 edits in trunk/Source
Bring some order to FeatureDefines.xcconfig to make it easier to follow.
Reviewed by Sam Weinig.
Source/JavaScriptCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit/mac:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit2:
- Configurations/FeatureDefines.xcconfig:
- 4:50 PM Changeset in webkit [92332] by
-
- 8 edits in trunk/Source
Clean up FeatureDefines.xcconfig to remove some unnecessary conditional settings
Reviewed by Dave Kilzer.
Source/JavaScriptCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebCore:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit/mac:
- Configurations/FeatureDefines.xcconfig:
Source/WebKit2:
- Configurations/FeatureDefines.xcconfig:
- 4:43 PM Changeset in webkit [92331] by
-
- 2 edits in trunk/Source/WebCore
[chromium] Fix issue where switching composited tabs evicts root textures
https://bugs.webkit.org/show_bug.cgi?id=65562
Reviewed by James Robinson.
LayerTilerChromium::protectTileTextures was hard-coding texture sizes
and texture formats. Because this didn't always match textures' actual
sizes and formats, they weren't getting protected during eviction.
- platform/graphics/chromium/LayerTilerChromium.cpp:
(WebCore::LayerTilerChromium::protectTileTextures):
- 4:42 PM Changeset in webkit [92330] by
-
- 10 edits2 adds in trunk
select-all, copy, paste of specialAncestorElements (e.g. pre, h1, etc) nests the element inside itself
https://bugs.webkit.org/show_bug.cgi?id=26483
Reviewed by Enrica Casucci.
Source/WebCore:
The bug was caused by WebKit serializing pre, h1, etc... to retain structure and appearance when copying
rich content and pasting did not remove such nodes wrapping the copied contents.
Fixed the bug by extending r81887 and r83322 to remove those elements from where WebKit pastes into.
Test: editing/pasteboard/copy-paste-text-in-h1.html
- editing/ReplaceSelectionCommand.cpp:
(WebCore::nodeHasAttributesToPreserve): Extracted from isInlineNodeWithStyle.
(WebCore::isInlineNodeWithStyle): Calls nodeHasAttributesToPreserve.
(WebCore::ReplaceSelectionCommand::doApply): Calls ancestorToRetainStructureAndAppearance.
Remove nodes copied by ancestorToRetainStructureAndAppearance at insertionPos before pasting the fragment.
- editing/markup.cpp:
(WebCore::ancestorToRetainStructureAndAppearance): Takes ShouldIncludeParagraphSeparators.
- editing/markup.h:
LayoutTests:
- editing/pasteboard/5065605-expected.txt:
- editing/pasteboard/copy-paste-text-in-h1-expected.txt: Added.
- editing/pasteboard/copy-paste-text-in-h1.html: Added.
- editing/pasteboard/display-block-on-spans-expected.txt:
- editing/pasteboard/paste-pre-001-expected.txt:
- editing/pasteboard/paste-pre-002-expected.txt:
- editing/pasteboard/paste-text-011-expected.txt:
- 4:35 PM Changeset in webkit [92329] by
-
- 2 edits in trunk/Source/JavaScriptCore
JSC GC heap size improvement breaks build on some platforms due to
unused parameter
https://bugs.webkit.org/show_bug.cgi?id=65641
Reviewed by Darin Adler.
Fix build on non-x86 platforms, by ensuring that the relevant
parameter always appears to be used even when it isn't.
- heap/Heap.cpp:
- 4:31 PM Changeset in webkit [92328] by
-
- 2 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from Console.idl
https://bugs.webkit.org/show_bug.cgi?id=65569
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- page/Console.idl:
- 4:20 PM Changeset in webkit [92327] by
-
- 34 edits in trunk
Remove LegacyDefaultOptionalArguments flag from HTML DOM IDL files
https://bugs.webkit.org/show_bug.cgi?id=65338
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
Source/WebCore:
- html/DOMFormData.idl:
- html/DOMTokenList.idl:
- html/DOMURL.idl:
- html/HTMLAllCollection.idl:
- html/HTMLAnchorElement.idl:
- html/HTMLAudioElement.idl:
- html/HTMLButtonElement.idl:
- html/HTMLCanvasElement.idl:
- html/HTMLCollection.idl:
- html/HTMLDivElement.idl:
- html/HTMLDocument.idl:
- html/HTMLElement.idl:
- html/HTMLFieldSetElement.idl:
- html/HTMLInputElement.idl:
- html/HTMLKeygenElement.idl:
- html/HTMLMediaElement.idl:
- html/HTMLObjectElement.idl:
- html/HTMLOptionsCollection.idl:
- html/HTMLOutputElement.idl:
- html/HTMLSelectElement.idl:
- html/HTMLTableElement.idl:
- html/HTMLTableRowElement.idl:
- html/HTMLTableSectionElement.idl:
- html/HTMLTextAreaElement.idl:
- html/HTMLVideoElement.idl:
- html/TimeRanges.idl:
LayoutTests:
- fast/files/create-blob-url-crash-expected.txt:
- fast/files/create-blob-url-crash.html:
- fast/files/revoke-blob-url-expected.txt:
- fast/files/revoke-blob-url.html:
- fast/forms/ValidityState-customError-expected.txt:
- fast/forms/ValidityState-customError.html:
- 4:19 PM Changeset in webkit [92326] by
-
- 2 edits in trunk/Tools
Adding Filip Pizlo to committer list.
Unreviewed.
- Scripts/webkitpy/common/config/committers.py:
- 4:18 PM Changeset in webkit [92325] by
-
- 6 edits in trunk/Source/WebCore
Make atomic XML token
https://bugs.webkit.org/show_bug.cgi?id=65639
Reviewed by Adam Barth.
Create a shared AtomicMarkupTokenBase that is shared by AtomicHTMLToken and the new AtomicXMLToken
- html/parser/HTMLToken.h:
(WebCore::HTMLToken::setForceQuirks):
(WebCore::AtomicHTMLToken::AtomicHTMLToken):
(WebCore::AtomicHTMLToken::forceQuirks):
- html/parser/HTMLTokenizer.cpp:
(WebCore::::nameForAttribute):
(WebCore::::usesName):
(WebCore::::usesAttributes):
- xml/parser/MarkupTokenBase.h:
(WebCore::AtomicMarkupTokenBase::AtomicMarkupTokenBase):
(WebCore::AtomicMarkupTokenBase::type):
(WebCore::AtomicMarkupTokenBase::name):
(WebCore::AtomicMarkupTokenBase::setName):
(WebCore::AtomicMarkupTokenBase::selfClosing):
(WebCore::AtomicMarkupTokenBase::getAttributeItem):
(WebCore::AtomicMarkupTokenBase::attributes):
(WebCore::AtomicMarkupTokenBase::takeAtributes):
(WebCore::AtomicMarkupTokenBase::characters):
(WebCore::AtomicMarkupTokenBase::comment):
(WebCore::AtomicMarkupTokenBase::publicIdentifier):
(WebCore::AtomicMarkupTokenBase::systemIdentifier):
(WebCore::::initializeAttributes):
- xml/parser/XMLToken.h:
(WebCore::AtomicXMLToken::AtomicXMLToken):
(WebCore::AtomicXMLToken::prefix):
(WebCore::AtomicXMLToken::target):
(WebCore::AtomicXMLToken::data):
(WebCore::AtomicXMLToken::xmlVersion):
(WebCore::AtomicXMLToken::xmlStandalone):
- xml/parser/XMLTokenizer.cpp:
(WebCore::::nameForAttribute):
(WebCore::::usesName):
(WebCore::::usesAttributes):
- 4:03 PM Changeset in webkit [92324] by
-
- 2 edits1 add in trunk/Tools
Add "optimize-expectations" command to webkit-patch.
https://bugs.webkit.org/show_bug.cgi?id=65633
For now, only operates on Chromium test_expectations.txt and does not report errors/warnings.
Reviewed by Adam Barth.
- Scripts/webkitpy/tool/commands/init.py: Added command.
- Scripts/webkitpy/tool/commands/expectations.py: Added.
- 4:01 PM Changeset in webkit [92323] by
-
- 4 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from geolocation IDL files
https://bugs.webkit.org/show_bug.cgi?id=65355
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- page/Geolocation.idl:
- page/PositionCallback.idl:
- page/PositionErrorCallback.idl:
- 3:59 PM Changeset in webkit [92322] by
-
- 104 edits in trunk/Source/WebKit/chromium
2011-08-03 Darin Fisher <darin@chromium.org>
[Chromium] Rename WEBKIT_API to WEBKIT_EXPORT.
https://bugs.webkit.org/show_bug.cgi?id=65649
Reviewed by Adam Barth.
- README:
- public/WebAccessibilityCache.h:
- public/WebAccessibilityObject.h:
- public/WebArrayBufferView.h:
- public/WebAttribute.h:
- public/WebAudioBus.h:
- public/WebBindings.h:
- public/WebBlobData.h:
- public/WebBlobRegistry.h:
- public/WebCString.h:
- public/WebCache.h:
- public/WebColor.h:
- public/WebCommon.h:
- public/WebCrossOriginPreflightResultCache.h:
- public/WebDOMEvent.h:
- public/WebDOMEventListener.h:
- public/WebDOMMouseEvent.h:
- public/WebDOMMutationEvent.h:
- public/WebDOMStringList.h:
- public/WebData.h:
- public/WebDatabase.h:
- public/WebDevToolsAgent.h:
- public/WebDevToolsFrontend.h:
- public/WebDeviceOrientationClientMock.h:
- public/WebDeviceOrientationController.h:
- public/WebDocument.h:
- public/WebDocumentType.h:
- public/WebDragData.h:
- public/WebElement.h:
- public/WebFont.h:
- public/WebFontCache.h:
- public/WebFormControlElement.h:
- public/WebFormElement.h:
- public/WebFrame.h:
- public/WebGeolocationClientMock.h:
- public/WebGeolocationController.h:
- public/WebGeolocationError.h:
- public/WebGeolocationPermissionRequest.h:
- public/WebGeolocationPermissionRequestManager.h:
- public/WebGeolocationPosition.h:
- public/WebGlyphCache.h:
- public/WebHTTPBody.h:
- public/WebHTTPLoadInfo.h:
- public/WebHistoryItem.h:
- public/WebIDBDatabaseError.h:
- public/WebIDBFactory.h:
- public/WebIDBKey.h:
- public/WebIDBKeyPath.h:
- public/WebIDBKeyRange.h:
- public/WebImage.h:
- public/WebImageDecoder.h:
- public/WebInputElement.h:
- public/WebInputEvent.h:
- public/WebKit.h:
- public/WebLabelElement.h:
- public/WebMediaElement.h:
- public/WebNamedNodeMap.h:
- public/WebNetworkStateNotifier.h:
- public/WebNode.h:
- public/WebNodeCollection.h:
- public/WebNodeList.h:
- public/WebNotification.h:
- public/WebOptionElement.h:
- public/WebPageSerializer.h:
- public/WebPasswordFormData.h:
- public/WebPerformance.h:
- public/WebPluginDocument.h:
- public/WebPopupMenu.h:
- public/WebRange.h:
- public/WebRegularExpression.h:
- public/WebRuntimeFeatures.h:
- public/WebScriptController.h:
- public/WebScrollbar.h:
- public/WebSearchableFormData.h:
- public/WebSecurityOrigin.h:
- public/WebSecurityPolicy.h:
- public/WebSelectElement.h:
- public/WebSerializedScriptValue.h:
- public/WebSharedWorker.h:
- public/WebSpeechInputControllerMock.h:
- public/WebSpeechInputResult.h:
- public/WebStorageEventDispatcher.h:
- public/WebStorageNamespace.h:
- public/WebString.h:
- public/WebTestingSupport.h:
- public/WebThreadSafeData.h:
- public/WebURLLoadTiming.h:
- public/WebURLRequest.h:
- public/WebURLResponse.h:
- public/WebView.h:
- public/WebWorker.h:
- public/gtk/WebFontInfo.h:
- public/gtk/WebInputEventFactory.h:
- public/linux/WebFontRenderStyle.h:
- public/linux/WebFontRendering.h:
- public/linux/WebRenderTheme.h:
- public/mac/WebInputEventFactory.h:
- public/mac/WebScreenInfoFactory.h:
- public/mac/WebSubstringUtil.h:
- public/win/WebInputEventFactory.h:
- public/win/WebScreenInfoFactory.h:
- public/x11/WebScreenInfoFactory.h:
- tests/WebUnitTests.h:
- 3:50 PM Changeset in webkit [92321] by
-
- 2 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from DOMSelection.idl
https://bugs.webkit.org/show_bug.cgi?id=65566
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- page/DOMSelection.idl:
- 3:47 PM Changeset in webkit [92320] by
-
- 2 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from Location.idl
https://bugs.webkit.org/show_bug.cgi?id=65565
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Darin Adler.
No new tests, all existing tests pass.
- page/Location.idl:
- 3:42 PM Changeset in webkit [92319] by
-
- 2 edits in trunk/Source/WebCore
Chromium Mac: Fix position of search tickmarks
https://bugs.webkit.org/show_bug.cgi?id=65575
This change adjusts the position of search tickmarks so that they are correctly centered.
Also, insetting the tickmark rect by 5 pixels caused tickmarks on the overlay scrollbar to look very small. I changed this to inset by 4 pixels instead. The tickmark is the same width as the overlay scrollbar which looks much better.
Patch by Sailesh Agrawal <sail@chromium.org> on 2011-08-03
Reviewed by James Robinson.
- platform/chromium/ScrollbarThemeChromiumMac.mm:
(WebCore::ScrollbarThemeChromiumMac::paint):
- 3:36 PM Changeset in webkit [92318] by
-
- 3 edits in trunk/Source/WebKit/chromium
[Chromium] Minor cleanup, remove a deprecated method.
The old WebDatabase::updateDatabaseSize method has been replaced with
updateDatabaseSize, updateSpaceAvailable, and resetSpaceAvailable.
https://bugs.webkit.org/show_bug.cgi?id=65553
Reviewed by Adam Barth.
- public/WebDatabase.h:
- src/WebDatabase.cpp:
- 3:34 PM Changeset in webkit [92317] by
-
- 3 edits in trunk/Tools
Allow multiple bug identifiers in test expectations.
https://bugs.webkit.org/show_bug.cgi?id=65642
Reviewed by Adam Barth.
- Scripts/webkitpy/layout_tests/models/test_expectations.py: Tweaked to allow multiple bug ids.
- Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Added tests.
- 3:24 PM Changeset in webkit [92316] by
-
- 2 edits in trunk/Source/WebCore
Chromium Mac: Make sure scrollbars flash when web page loads
https://bugs.webkit.org/show_bug.cgi?id=65586
On slow web pages scrollbars wouldn't flash when the page was done loading. The problem was that we were flashing the scrollbar 0.1 second after the load operation had started. If the page was slow to load then we might not have scrollbars to flash. To work around this I added an extra check to make sure that we had indeed finished loading the page before flashing the scrollbars.
Patch by Sailesh Agrawal <sail@chromium.org> on 2011-08-03
Reviewed by James Robinson.
- platform/chromium/ScrollAnimatorChromiumMac.mm:
(WebCore::ScrollAnimatorChromiumMac::initialScrollbarPaintTimerFired):
- 2:58 PM Changeset in webkit [92315] by
-
- 7 edits in trunk
Remove LegacyDefaultOptionalArguments flag from navigator IDL files
https://bugs.webkit.org/show_bug.cgi?id=65370
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
Source/WebCore:
- page/Navigator.idl:
- page/NavigatorUserMediaErrorCallback.idl:
- page/NavigatorUserMediaSuccessCallback.idl:
LayoutTests:
- fast/dom/navigator-detached-no-crash-expected.txt:
- platform/chromium/fast/dom/navigator-detached-no-crash-expected.txt:
- 2:53 PM Changeset in webkit [92314] by
-
- 2 edits in trunk/Source/WebCore
webarchive/loading/missing-data.html is failing on Mac
https://bugs.webkit.org/show_bug.cgi?id=63507
Reviewed by Adam Barth.
When loading a main resource from a web archive, make sure that the working URL is actually
the URL of the resource, and not the URL of the web archive itself.
- loader/FrameLoader.cpp:
(WebCore::FrameLoader::receivedFirstData):
- 2:50 PM Changeset in webkit [92313] by
-
- 4 edits in trunk/Source/WebCore
Remove LegacyDefaultOptionalArguments flag from DOMWindow.idl
https://bugs.webkit.org/show_bug.cgi?id=65353
Patch by Mark Pilgrim <pilgrim@chromium.org> on 2011-08-03
Reviewed by Adam Barth.
No new tests, all existing tests pass.
- bindings/scripts/CodeGeneratorJS.pm:
(GenerateImplementation):
- bindings/scripts/CodeGeneratorV8.pm:
(GenerateFunctionCallback):
- page/DOMWindow.idl:
- 2:22 PM Changeset in webkit [92312] by
-
- 2 edits in branches/safari-534.51-branch/Source/WebCore
Merge r91447.
- 2:16 PM Changeset in webkit [92311] by
-
- 2 edits in branches/safari-534.51-branch/Source/WebCore
Merge r91438.
- 2:04 PM Changeset in webkit [92310] by
-
- 17 edits in branches/safari-534.51-branch/Source
Merge r91435.
- 1:52 PM Changeset in webkit [92309] by
-
- 2 edits in trunk/Source/WebCore
Fix Chromimum and Qt builds after r92308.
- config.h: Don't try to include WebCoreHeaderDetection.h for Chromimum and Qt.
- 1:15 PM Changeset in webkit [92308] by
-
- 3 edits in trunk/Source/WebCore
Generate WebCoreHeaderDetection.h on Windows to define HAVE_AVCF
https://bugs.webkit.org/show_bug.cgi?id=65634
AVFoundation support on Windows will (eventually) be predicated on the
availability of AVFoundationCF headers and libraries in the WebKit Support
Libraries, so we test for the existence of one of the header files (AVCFBase.h)
to determine whether to AVCF is available.
For now, even if AVFoundationCF is available, leave WTF_USE_AVFOUNDATION off, since
it's not ready to be turned on yet (which is covered by http://webkit.org/b/65400).
Ideally, we would generate WebCoreHeaderDetection.h on all platforms so we could
include it unconditionally in WebCore's config.h, but unfortunately the Mac-only file
ExportFileGenerator.cpp depends on WTF_USE_AVFOUNDATION being set correctly, and since this
.cpp file is also generated it doesn't have access to WebCoreHeaderDetection.h.
Reviewed by Adam Roben.
No change in functionality, so new tests.
- DerivedSources.make: Add rule to generate WebCoreHeaderDetection.h to set HAVE_AVCF on Windows.
- config.h: Include WebCoreHeaderDetection.h on Windows, check for HAVE(AVCF) but always leave WTF_USE_AVFOUNDATION off on Windows for now.
- 1:13 PM Changeset in webkit [92307] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, fix an error in test_expectations.txt.
- platform/chromium/test_expectations.txt:
- 12:57 PM Changeset in webkit [92306] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, skip fast/loader/reload-zero-byte-plugin.html for now, gardener stuff.
- platform/chromium/test_expectations.txt:
- 12:55 PM Changeset in webkit [92305] by
-
- 10 edits in branches/chromium/835/Source/WebCore/storage
Merge 92155 - [Chromium] WebSQLDatabase version handling is broken in multi-process browsers.
https://bugs.webkit.org/show_bug.cgi?id=65486
The WebCore::AbstractDatabase class maintains a global in-memory map of
the version numbers associated with open database files, but that map is
not reliable in a multi-process system like Chrome. So instead of relying
on the cached values in that map, we read the value from the database (and
update the cached value) where possible. There are two edge cases where that's
not possible because the scriptable interface requires synchronous access
to the version: the .version attribute getter and the .openDatabase() method.
In those cases, we have no choice but to use the potentially stale cached value.
Reviewed by Darin Fisher.
No new tests. Existing layout tests cover the version handling functionality.
- storage/AbstractDatabase.cpp:
(WebCore::AbstractDatabase::version):
(WebCore::AbstractDatabase::performOpenAndVerify):
(WebCore::AbstractDatabase::getVersionFromDatabase):
(WebCore::AbstractDatabase::setVersionInDatabase):
(WebCore::AbstractDatabase::setExpectedVersion):
(WebCore::AbstractDatabase::getCachedVersion):
(WebCore::AbstractDatabase::setCachedVersion):
(WebCore::AbstractDatabase::getActualVersionForTransaction):
- storage/AbstractDatabase.h:
(WebCore::AbstractDatabase::expectedVersion):
- storage/ChangeVersionWrapper.cpp:
(WebCore::ChangeVersionWrapper::handleCommitFailedAfterPostflight):
- storage/ChangeVersionWrapper.h:
- storage/Database.cpp:
(WebCore::Database::openDatabase):
- storage/DatabaseSync.cpp:
(WebCore::DatabaseSync::openDatabaseSync):
(WebCore::DatabaseSync::changeVersion):
- storage/SQLTransaction.cpp:
(WebCore::SQLTransaction::SQLTransaction):
(WebCore::SQLTransaction::executeSQL):
(WebCore::SQLTransaction::openTransactionAndPreflight):
(WebCore::SQLTransaction::runCurrentStatement):
(WebCore::SQLTransaction::postflightAndCommit):
- storage/SQLTransaction.h:
- storage/SQLTransactionSync.cpp:
(WebCore::SQLTransactionSync::SQLTransactionSync):
(WebCore::SQLTransactionSync::executeSQL):
(WebCore::SQLTransactionSync::begin):
- storage/SQLTransactionSync.h:
TBR=Michael Nordman
Review URL: http://codereview.chromium.org/7563014
- 12:54 PM Changeset in webkit [92304] by
-
- 27 edits2 copies7 adds in trunk
MediaStream API: Implement PeerConnection and SignalingCallback
https://bugs.webkit.org/show_bug.cgi?id=65101
Patch by Tommy Widenflycht <tommyw@google.com> on 2011-08-03
Reviewed by Adam Barth.
LayoutTests will be provided by a follow-up CL, see <https://bugs.webkit.org/show_bug.cgi?id=56587>.
Source/WebCore:
- CMakeLists.txt:
- CodeGenerators.pri:
- DerivedSources.cpp:
- DerivedSources.make:
- GNUmakefile.am:
- GNUmakefile.list.am:
- UseJSC.cmake:
- WebCore.gyp/WebCore.gyp:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/generic/RuntimeEnabledFeatures.h:
(WebCore::RuntimeEnabledFeatures::peerConnectionEnabled):
- bindings/js/JSBindingsAllInOne.cpp:
- bindings/js/JSPeerConnectionCustom.cpp: Copied from Source/WebCore/page/MediaStreamClient.h.
(WebCore::JSPeerConnectionConstructor::constructJSPeerConnection):
- bindings/v8/V8DOMWrapper.cpp:
(WebCore::V8DOMWrapper::convertEventTargetToV8Object):
- bindings/v8/custom/V8PeerConnectionCustom.cpp: Added.
(WebCore::V8PeerConnection::constructorCallback):
- dom/DispatchTask.h: Added.
(WebCore::SimpleDispatchTask::create):
(WebCore::SimpleDispatchTask::performTask):
(WebCore::SimpleDispatchTask::SimpleDispatchTask):
(WebCore::DispatchTask::create):
(WebCore::DispatchTask::performTask):
(WebCore::DispatchTask::DispatchTask):
- dom/EventNames.h:
- dom/EventTarget.cpp:
(WebCore::EventTarget::toPeerConnection):
- dom/EventTarget.h:
- p2p/PeerConnection.cpp: Added.
(WebCore::PeerConnection::create):
(WebCore::PeerConnection::PeerConnection):
(WebCore::PeerConnection::init):
(WebCore::PeerConnection::~PeerConnection):
(WebCore::PeerConnection::localStreams):
(WebCore::PeerConnection::remoteStreams):
(WebCore::PeerConnection::processSignalingMessage):
(WebCore::PeerConnection::send):
(WebCore::PeerConnection::addStream):
(WebCore::PeerConnection::removeStream):
(WebCore::PeerConnection::close):
(WebCore::PeerConnection::onNegotiationStarted):
(WebCore::PeerConnection::onNegotiationDone):
(WebCore::PeerConnection::streamAdded):
(WebCore::PeerConnection::streamRemoved):
(WebCore::PeerConnection::onMessage):
(WebCore::PeerConnection::onSignalingMessage):
(WebCore::PeerConnection::toPeerConnection):
(WebCore::PeerConnection::scriptExecutionContext):
(WebCore::PeerConnection::eventTargetData):
(WebCore::PeerConnection::ensureEventTargetData):
(WebCore::PeerConnection::postMessageEvent):
(WebCore::PeerConnection::postSignalingEvent):
(WebCore::PeerConnection::postStreamAddedEvent):
(WebCore::PeerConnection::postStreamRemovedEvent):
(WebCore::PeerConnection::postSimpleEvent):
(WebCore::PeerConnection::postStartNegotiationTask):
(WebCore::PeerConnection::dispatchMessageEvent):
(WebCore::PeerConnection::dispatchSignalingEvent):
(WebCore::PeerConnection::dispatchStreamEvent):
(WebCore::PeerConnection::dispatchSimpleEvent):
(WebCore::PeerConnection::dispatchStartNegotiationTask):
- p2p/PeerConnection.h: Added.
(WebCore::PeerConnection::readyState):
(WebCore::PeerConnection::refEventTarget):
(WebCore::PeerConnection::derefEventTarget):
- p2p/PeerConnection.idl: Added.
- p2p/SignalingCallback.h: Copied from Source/WebCore/page/MediaStreamClient.h.
(WebCore::SignalingCallback::~SignalingCallback):
- p2p/SignalingCallback.idl: Added.
- page/DOMWindow.idl:
- page/MediaStreamClient.h:
- page/MediaStreamController.cpp:
(WebCore::MediaStreamController::MediaStreamController):
(WebCore::MediaStreamController::unregisterFrameController):
(WebCore::MediaStreamController::onSignalingMessage):
(WebCore::MediaStreamController::frameToPagePeerConnectionId):
(WebCore::MediaStreamController::processSignalingMessage):
(WebCore::MediaStreamController::message):
(WebCore::MediaStreamController::onMessage):
(WebCore::MediaStreamController::addStream):
(WebCore::MediaStreamController::onAddStream):
(WebCore::MediaStreamController::removeStream):
(WebCore::MediaStreamController::onRemoveStream):
(WebCore::MediaStreamController::newPeerConnection):
(WebCore::MediaStreamController::closePeerConnection):
(WebCore::MediaStreamController::startNegotiation):
(WebCore::MediaStreamController::onNegotiationStarted):
(WebCore::MediaStreamController::onNegotiationDone):
- page/MediaStreamController.h:
- page/MediaStreamFrameController.cpp:
(WebCore::MediaStreamFrameController::Request::isSignalingRequest):
(WebCore::MediaStreamFrameController::createPeerConnection):
(WebCore::MediaStreamFrameController::newPeerConnection):
(WebCore::MediaStreamFrameController::closePeerConnection):
(WebCore::MediaStreamFrameController::startNegotiation):
(WebCore::MediaStreamFrameController::processSignalingMessage):
(WebCore::MediaStreamFrameController::message):
(WebCore::MediaStreamFrameController::addStream):
(WebCore::MediaStreamFrameController::removeStream):
(WebCore::MediaStreamFrameController::onMessage):
(WebCore::MediaStreamFrameController::onAddStream):
(WebCore::MediaStreamFrameController::onRemoveStream):
(WebCore::MediaStreamFrameController::onSignalingMessage):
(WebCore::MediaStreamFrameController::onNegotiationStarted):
(WebCore::MediaStreamFrameController::onNegotiationDone):
- page/MediaStreamFrameController.h:
(WebCore::MediaStreamFrameController::ClientBase::isPeerConnection):
(WebCore::MediaStreamFrameController::PeerConnectionClient::PeerConnectionClient):
(WebCore::MediaStreamFrameController::PeerConnectionClient::~PeerConnectionClient):
(WebCore::MediaStreamFrameController::PeerConnectionClient::isPeerConnection):
LayoutTests:
- platform/chromium/fast/dom/prototype-inheritance-expected.txt:
- 12:38 PM Changeset in webkit [92303] by
-
- 2 edits in trunk
[wx] Unreviewed build fix after gesture recognizer changes.
- 12:36 PM Changeset in webkit [92302] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] [WK2] Improve position of context menu for QDesktopWebView
https://bugs.webkit.org/show_bug.cgi?id=65635
Reviewed by Andreas Kling.
Do not assume that the QDesktopWebView takes the entire canvas when
positioning the context menu.
- UIProcess/API/qt/qdesktopwebview.cpp:
(QDesktopWebViewPrivate::showContextMenu):
- 12:18 PM Changeset in webkit [92301] by
-
- 4 edits in branches/safari-534.51-branch/Source
Merge r90705.
- 12:09 PM Changeset in webkit [92300] by
-
- 15 edits in trunk/Source
Web Inspector: Remove InspectorFrontendHost load/saveSessionSetting
https://bugs.webkit.org/show_bug.cgi?id=65582
Reviewed by Pavel Feldman.
Source/WebCore:
Remove stale code. WebInspector.settings uses localStorage and
handles the "debuggerEnabled" state. So remove the only remaining
usage of load/saveSessionSetting.
- inspector/InspectorFrontendClient.h:
- inspector/InspectorFrontendHost.cpp:
- inspector/InspectorFrontendHost.h:
- inspector/InspectorFrontendHost.idl:
- inspector/front-end/InspectorFrontendHostStub.js:
- inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype._debuggerWasDisabled):
Source/WebKit/cf:
- WebCoreSupport/WebInspectorClientCF.cpp:
Source/WebKit/mac:
- WebCoreSupport/WebInspectorClient.h:
- WebCoreSupport/WebInspectorClient.mm:
Source/WebKit/win:
- WebCoreSupport/WebInspectorClient.cpp:
- WebCoreSupport/WebInspectorClient.h:
- 12:06 PM Changeset in webkit [92299] by
-
- 1 edit in branches/chromium/835/Source/WebCore/page/FrameView.cpp
Merge 92030 - [chromium] Only force slow scrolling for iframes under --force-compositing-mode
https://bugs.webkit.org/show_bug.cgi?id=65394
Reviewed by James Robinson.
The previous code introduced by r91591 made composited frames as well
as non-composited subframes go down the slow scrolling path. Adjust
the check to use ownerElement to test for subframe and use
hasCompositedContent() which is a more correct test for compositing
than isEnclosedInCompositingLayer.
- page/FrameView.cpp:
(WebCore::FrameView::useSlowRepaints):
TBR=enne@google.com
Review URL: http://codereview.chromium.org/7565014
- 11:56 AM Changeset in webkit [92298] by
-
- 3 edits2 adds in trunk
Crash in DocumentWriter::endIfNotLoadingMainResource
https://bugs.webkit.org/show_bug.cgi?id=65581
Reviewed by Nate Chapin.
Source/WebCore:
This function is poorly designed because isLoadingMainResource is a
poor proxy for determing whether to flush/finish the parser. Really,
we should change how loads complete to match the model in HTML5, but
that's pretty tricky. In the meantime, this null check fixes the
crash.
I'm sure there's another bug on file about this crash, but we've never
been able to reproduce it. Thanks to Berend-Jan Wever for the test
case!
Test: fast/loader/reload-zero-byte-plugin.html
- loader/DocumentWriter.cpp:
(WebCore::DocumentWriter::endIfNotLoadingMainResource):
LayoutTests:
- fast/loader/reload-zero-byte-plugin-expected.txt: Added.
- fast/loader/reload-zero-byte-plugin.html: Added.
- 11:40 AM Changeset in webkit [92297] by
-
- 1 edit in branches/chromium/835/Source/WebCore/platform/graphics/skia/ImageBufferSkia.cpp
Merge 92227 - [Chromium] Remove an unnecessary readback during accelerated
canvas-to-canvas draws.
https://bugs.webkit.org/show_bug.cgi?id=65560
Reviewed by James Robinson.
No new tests. (Printing has few tests, sadly.)
- platform/graphics/skia/ImageBufferSkia.cpp:
(WebCore::ImageBuffer::draw):
Revert most of the changes to this file from
http://trac.webkit.org/changeset/91870, except for the call which makes
the source context current, so that the readPixels() still works.
TBR=senorblanco@chromium.org
Review URL: http://codereview.chromium.org/7465097
- 11:38 AM Changeset in webkit [92296] by
-
- 2 edits in branches/chromium/835/Source/WebCore
Merge 91870 - Fix for printing with accelerated <canvas>
https://bugs.webkit.org/show_bug.cgi?id=62406
Reviewed by James Robinson.
The platform-independent side of this should be covered by existing
tests. Printing itself in Chrome has few tests, sadly. :(
- html/HTMLCanvasElement.cpp:
(WebCore::HTMLCanvasElement::paint):
- platform/graphics/skia/ImageBufferSkia.cpp:
(WebCore::ImageBuffer::draw):
TBR=senorblanco@chromium.org
Review URL: http://codereview.chromium.org/7564022
- 11:38 AM Changeset in webkit [92295] by
-
- 2 edits in trunk/Source/WebCore
WebCore images backing CG patterns should be released on the main thread
https://bugs.webkit.org/show_bug.cgi?id=65630
Reviewed by Sam Weinig.
- platform/graphics/cg/PatternCG.cpp:
(WebCore::patternReleaseOnMainThreadCallback):
Deref the image.
(WebCore::patternReleaseCallback):
Call callOnMainThread.
- 11:11 AM Changeset in webkit [92294] by
-
- 3 edits in trunk/Tools
Teach BuilderToPort to distinguish between Release and Debug builders.
https://bugs.webkit.org/show_bug.cgi?id=65628
Reviewed by Adam Barth.
- Scripts/webkitpy/tool/commands/rebaseline.py: Added a smart options object and passed it to port factory.
- Scripts/webkitpy/tool/commands/rebaseline_unittest.py: Added tests.
- 10:55 AM Changeset in webkit [92293] by
-
- 16 edits343 deletes in branches/chromium/835
REGRESSION(87526): ASSERT(!needsLayout()) followed by graphical glitches on google charts (svg loaded in iframe)
https://bugs.webkit.org/show_bug.cgi?id=64974
Reviewed by James Robinson.
Rolling back r87526 for Chrome 14.
Source/WebCore:
- platform/Length.h:
(WebCore::Length::isIntrinsicOrAuto):
- rendering/RenderPart.cpp:
(WebCore::RenderPart::embeddedContentBox):
- rendering/RenderReplaced.cpp:
(WebCore::lengthIsSpecified):
(WebCore::RenderReplaced::computeReplacedLogicalWidth):
(WebCore::RenderReplaced::computeReplacedLogicalHeight):
- rendering/svg/RenderSVGRoot.cpp:
(WebCore::RenderSVGRoot::RenderSVGRoot):
(WebCore::RenderSVGRoot::computeReplacedLogicalWidth):
(WebCore::RenderSVGRoot::computeReplacedLogicalHeight):
(WebCore::RenderSVGRoot::layout):
- rendering/svg/RenderSVGRoot.h:
- svg/SVGLength.cpp:
(WebCore::SVGLength::determineViewport):
- svg/SVGSVGElement.cpp:
(WebCore::SVGSVGElement::SVGSVGElement):
(WebCore::SVGSVGElement::currentScale):
(WebCore::SVGSVGElement::setCurrentScale):
(WebCore::SVGSVGElement::viewBoxToViewTransform):
- svg/SVGSVGElement.h:
LayoutTests:
- css2.1/20110323/replaced-intrinsic-001.htm: Removed.
- css2.1/20110323/replaced-intrinsic-002.htm: Removed.
- css2.1/20110323/replaced-intrinsic-003.htm: Removed.
- css2.1/20110323/replaced-intrinsic-004.htm: Removed.
- css2.1/20110323/replaced-intrinsic-005.htm: Removed.
- css2.1/20110323/replaced-intrinsic-ratio-001.htm: Removed.
- http/tests/misc/object-embedding-svg-delayed-size-negotiation-2.htm: Removed.
- http/tests/misc/object-embedding-svg-delayed-size-negotiation.xhtml: Removed.
- http/tests/misc/resources/embedded.svg: Removed.
- http/tests/misc/resources/intrinsic-ratio-slow.pl: Removed.
- http/tests/misc/resources/intrinsic-ratio.svg: Removed.
- http/tests/misc/resources/svg-slow.pl: Removed.
- platform/chromium-linux/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/chromium-linux/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/chromium-linux/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/chromium-linux/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/chromium-linux/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-explicit-height-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-explicit-width-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-explicit-width-height-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/chromium-linux/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-no-width-height-expected.png: Removed.
- platform/chromium-linux/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-linux/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/chromium-linux/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-linux/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/chromium-linux/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/chromium-linux/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/chromium-linux/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/chromium-linux/svg/hixie/intrinsic/003-expected.txt: Removed.
- platform/chromium-linux/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/chromium-linux/svg/wicd/rightsizing-grid-expected.txt: Removed.
- platform/chromium-linux/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/chromium-linux/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/chromium-mac-leopard/svg/custom/object-sizing-expected.png: Removed.
- platform/chromium-mac-leopard/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/chromium-mac-leopard/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/chromium-mac-leopard/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/chromium-mac-leopard/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/chromium-mac-leopard/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/chromium-mac-leopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/chromium-mac/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/chromium-win-vista/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-001-expected.txt: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-002-expected.txt: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/chromium-win/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-height-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-height-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-width-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-width-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-width-height-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-no-width-height-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-no-width-height-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed.
- platform/chromium-win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/chromium-win/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/chromium-win/svg/hixie/intrinsic/001-expected.txt: Removed.
- platform/chromium-win/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/chromium-win/svg/hixie/intrinsic/002-expected.txt: Removed.
- platform/chromium-win/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/chromium-win/svg/hixie/intrinsic/003-expected.txt: Removed.
- platform/chromium-win/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/chromium-win/svg/wicd/rightsizing-grid-expected.txt: Removed.
- platform/chromium-win/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/chromium-win/svg/wicd/test-rightsizing-a-expected.txt: Removed.
- platform/chromium-win/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/chromium-win/svg/wicd/test-rightsizing-b-expected.txt: Removed.
- platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-001-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-002-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-height-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-height-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-width-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-width-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-width-height-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-no-width-height-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-no-width-height-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/gtk/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed.
- platform/gtk/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/gtk/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/gtk/svg/hixie/intrinsic/001-expected.txt: Removed.
- platform/gtk/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/gtk/svg/hixie/intrinsic/002-expected.txt: Removed.
- platform/gtk/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/gtk/svg/hixie/intrinsic/003-expected.txt: Removed.
- platform/gtk/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/gtk/svg/wicd/rightsizing-grid-expected.txt: Removed.
- platform/gtk/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/gtk/svg/wicd/test-rightsizing-a-expected.txt: Removed.
- platform/gtk/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/gtk/svg/wicd/test-rightsizing-b-expected.txt: Removed.
- platform/mac-wk2/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-001-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-002-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/mac/fast/block/positioning/rtl-fixed-positioning-expected.png:
- platform/mac/fast/block/positioning/vertical-rl/fixed-positioning-expected.png:
- platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Removed.
- platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Removed.
- platform/mac/svg/custom/object-no-size-attributes-expected.png: Removed.
- platform/mac/svg/custom/object-no-size-attributes-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-explicit-height-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-explicit-height-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-explicit-width-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-explicit-width-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-explicit-width-height-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-no-width-height-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-no-width-height-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed.
- platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/mac/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/mac/svg/hixie/intrinsic/001-expected.txt: Removed.
- platform/mac/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/mac/svg/hixie/intrinsic/002-expected.txt: Removed.
- platform/mac/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/mac/svg/hixie/intrinsic/003-expected.txt: Removed.
- platform/mac/svg/hixie/text/003-expected.png: Removed.
- platform/mac/svg/hixie/text/003-expected.txt:
- platform/mac/svg/in-html/by-reference-expected.txt:
- platform/mac/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/mac/svg/wicd/rightsizing-grid-expected.txt: Removed.
- platform/mac/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/mac/svg/wicd/test-rightsizing-a-expected.txt: Removed.
- platform/mac/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/mac/svg/wicd/test-rightsizing-b-expected.txt: Removed.
- platform/mac/svg/zoom/page/relative-sized-document-scrollbars-expected.txt:
- platform/mac/svg/zoom/page/zoom-foreignObject-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-foreignObject-expected.txt:
- platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.txt: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-no-width-height-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-no-width-height-expected.txt: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.txt: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: Removed.
- platform/mac/svg/zoom/page/zoom-svg-through-object-with-text-expected.png: Removed.
- platform/qt-4.8/svg/custom/object-sizing-expected.png: Removed.
- platform/qt-4.8/svg/custom/object-sizing-expected.txt: Removed.
- platform/qt-4.8/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/qt-4.8/svg/wicd/test-rightsizing-a-expected.txt: Removed.
- platform/qt-4.8/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/qt-4.8/svg/wicd/test-rightsizing-b-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-001-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-001-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-002-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-002-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-003-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-003-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-004-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-004-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-005-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-005-expected.txt: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-explicit-width-height-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-no-width-height-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-no-width-height-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed.
- platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/qt/svg/hixie/intrinsic/001-expected.png: Removed.
- platform/qt/svg/hixie/intrinsic/001-expected.txt: Removed.
- platform/qt/svg/hixie/intrinsic/002-expected.png: Removed.
- platform/qt/svg/hixie/intrinsic/002-expected.txt: Removed.
- platform/qt/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/qt/svg/hixie/intrinsic/003-expected.txt: Removed.
- platform/qt/svg/wicd/rightsizing-grid-expected.png: Removed.
- platform/qt/svg/wicd/rightsizing-grid-expected.txt: Removed.
- platform/qt/svg/wicd/test-rightsizing-a-expected.png: Removed.
- platform/qt/svg/wicd/test-rightsizing-a-expected.txt: Removed.
- platform/qt/svg/wicd/test-rightsizing-b-expected.png: Removed.
- platform/qt/svg/wicd/test-rightsizing-b-expected.txt: Removed.
- platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Removed.
- platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Removed.
- platform/win/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed.
- platform/win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed.
- platform/win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed.
- platform/win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed.
- platform/win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed.
- platform/win/svg/hixie/intrinsic/003-expected.png: Removed.
- platform/win/svg/hixie/intrinsic/003-expected.txt: Removed.
- svg/custom/object-no-size-attributes.xhtml: Removed.
- svg/custom/object-sizing-explicit-height.xhtml: Removed.
- svg/custom/object-sizing-explicit-width-height.xhtml: Removed.
- svg/custom/object-sizing-explicit-width.xhtml: Removed.
- svg/custom/object-sizing-height-50p-on-target-svg-absolute.xhtml: Removed.
- svg/custom/object-sizing-height-50p-on-target-svg.xhtml: Removed.
- svg/custom/object-sizing-no-width-height-change-content-box-size.xhtml: Removed.
- svg/custom/object-sizing-no-width-height.xhtml: Removed.
- svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute.xhtml: Removed.
- svg/custom/object-sizing-width-50p-height-50p-on-target-svg.xhtml: Removed.
- svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute.xhtml: Removed.
- svg/custom/object-sizing-width-50p-height-75p-on-target-svg.xhtml: Removed.
- svg/custom/object-sizing-width-50p-on-target-svg-absolute.xhtml: Removed.
- svg/custom/object-sizing-width-50p-on-target-svg.xhtml: Removed.
- svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute.xhtml: Removed.
- svg/custom/object-sizing-width-75p-height-50p-on-target-svg.xhtml: Removed.
- svg/custom/object-sizing.xhtml: Removed.
- svg/custom/resources/embedded.svg: Removed.
- svg/custom/resources/red-circle.svg: Removed.
- svg/hixie/intrinsic/001.html: Removed.
- svg/hixie/intrinsic/002.html: Removed.
- svg/hixie/intrinsic/003.html: Removed.
- svg/hixie/intrinsic/resources: Removed.
- svg/hixie/intrinsic/resources/001.svg: Removed.
- svg/hixie/intrinsic/resources/002.svg: Removed.
- svg/hixie/intrinsic/resources/003.svg: Removed.
- svg/hixie/intrinsic/resources/test-bl: Removed.
- svg/hixie/intrinsic/resources/test-br: Removed.
- svg/hixie/intrinsic/resources/test-tl: Removed.
- svg/hixie/intrinsic/resources/test-tr: Removed.
- svg/in-html/by-reference-expected.png: Removed.
- svg/wicd/rightsizing-grid.xhtml: Removed.
- svg/wicd/test-rightsizing-a.xhtml: Removed.
- svg/wicd/test-rightsizing-b.xhtml: Removed.
- svg/zoom/page/resources/intrinsic-ratio.svg: Removed.
- svg/zoom/page/zoom-replaced-intrinsic-ratio-001.htm: Removed.
- svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml-disabled: Removed.
- svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml-disabled: Removed.
- svg/zoom/page/zoom-svg-through-object-with-huge-size.xhtml-disabled: Removed.
- svg/zoom/page/zoom-svg-through-object-with-override-size.html-disabled: Removed.
- svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml-disabled: Removed.
- svg/zoom/page/zoom-svg-through-object-with-text.xhtml-disabled: Removed.
- 10:41 AM Changeset in webkit [92292] by
-
- 2 edits in trunk/Source/WebKit2
Fix API tests.
Initialize threading before trying to allocate the WebContext.
- UIProcess/WebContext.cpp:
(WebKit::WebContext::sharedProcessContext):
(WebKit::WebContext::create):
- 10:22 AM Changeset in webkit [92291] by
-
- 2 edits in trunk/Source/WebKit/win
Windows nightly build fix after r91777
- Interfaces/IWebPreferences.idl: Moved [set]PictographFontFamily to the end of the
interface to maintain binary compatibility with Safari 5.1.
- 10:06 AM Changeset in webkit [92290] by
-
- 1 edit2 adds in trunk/LayoutTests
Add a Mac Lion skipped list.
- platform/mac-lion: Added.
- platform/mac-lion/Skipped: Added.
- 9:48 AM Changeset in webkit [92289] by
-
- 2 edits in trunk/Source/WebCore
Use appropriate macro for CSSPropertyImageRendering.
https://bugs.webkit.org/show_bug.cgi?id=65594
Reviewed by Simon Fraser.
No new tests / trivial code cleanup only.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
Use HANDLE_INHERIT_AND_INITIAL_AND_PRIMITIVE macro.
- 9:48 AM Changeset in webkit [92288] by
-
- 1 edit2 copies in branches/chromium/835
Merge 92167 - Web Inspector: button + "New style rule"
https://bugs.webkit.org/show_bug.cgi?id=65409
Reviewed by Yury Semikhatsky.
Source/WebCore:
Test: inspector/styles/styles-add-new-rule.html
- inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane):
(WebInspector.BlankStylePropertiesSection.prototype.editingSelectorCommitted):
LayoutTests:
- inspector/styles/styles-add-new-rule-expected.txt: Added.
- inspector/styles/styles-add-new-rule.html: Added.
TBR=pfeldman@chromium.org
BUG=91217
Review URL: http://codereview.chromium.org/7566008
- 9:46 AM Changeset in webkit [92287] by
-
- 2 edits in trunk/Source/WebCore
FontCache::getFontData() does not set the familyIndex to cAllFamiliesScanned if the last font is a custom font
https://bugs.webkit.org/show_bug.cgi?id=65597
Reviewed by Simon Fraser.
No test added because behavior is unchanged, but this saves a call to getFontData().
- platform/graphics/FontCache.cpp:
(WebCore::FontCache::getFontData): Eliminated early return inside the loop, allowing execution
to continue and familyIndex to be set.
- 9:27 AM Changeset in webkit [92286] by
-
- 9 edits2 adds in trunk/Source/WebCore
Add RenderedPosition
https://bugs.webkit.org/show_bug.cgi?id=65221
Reviewed by Hajime Morita.
Add the skeleton for RenderedPosition and use it in rootBoxForLine.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- editing/EditingAllInOne.cpp:
- editing/RenderedPosition.cpp: Added.
(WebCore::RenderedPosition::RenderedPosition):
- editing/RenderedPosition.h: Added.
(WebCore::RenderedPosition::isNull):
(WebCore::RenderedPosition::rootBox):
(WebCore::RenderedPosition::RenderedPosition):
- editing/visible_units.cpp:
(WebCore::startPositionForLine):
(WebCore::endPositionForLine):
(WebCore::logicalStartPositionForLine):
(WebCore::logicalEndPositionForLine):
- 9:15 AM Changeset in webkit [92285] by
-
- 2 edits in trunk/Source/WebCore
[V8] V8CSSRuleCustom.cpp: not all enum values are listed in switch statement
https://bugs.webkit.org/show_bug.cgi?id=65598
Reviewed by Dimitri Glazkov.
Added UNKNOWN_RULE to the switch statement.
No new tests. (No semantic change)
- bindings/v8/custom/V8CSSRuleCustom.cpp:
(WebCore::toV8):
- 9:11 AM Changeset in webkit [92284] by
-
- 26 edits in trunk/Source
Web Inspector: [Timeline] Hover on paint events and see rect outline around that area.
https://bugs.webkit.org/show_bug.cgi?id=65510
Reviewed by Yury Semikhatsky.
Source/WebCore:
- WebCore.exp.in:
- WebCore.order:
- inspector/DOMNodeHighlighter.cpp:
(WebCore::DOMNodeHighlighter::drawRectHighlight):
- inspector/DOMNodeHighlighter.h:
- inspector/Inspector.json:
- inspector/InspectorController.cpp:
(WebCore::InspectorController::drawHighlight):
- inspector/InspectorController.h:
- inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::highlightRect):
(WebCore::InspectorDOMAgent::hideHighlight):
(WebCore::InspectorDOMAgent::drawHighlight):
- inspector/InspectorDOMAgent.h:
- inspector/front-end/ResourcesPanel.js:
(WebInspector.FrameTreeElement.prototype.onselect):
(WebInspector.FrameTreeElement.prototype.set hovered):
- inspector/front-end/TimelinePanel.js:
(WebInspector.TimelinePanel):
(WebInspector.TimelinePanel.prototype._mouseOut):
(WebInspector.TimelinePanel.prototype._mouseMove):
(WebInspector.TimelinePanel.prototype._highlightRect):
(WebInspector.TimelinePanel.prototype._hideRectHighlight):
- inspector/front-end/inspector.js:
(WebInspector.highlightDOMNode):
Source/WebKit/chromium:
- src/WebDevToolsAgentImpl.cpp:
(WebKit::WebDevToolsAgentImpl::paintPageOverlay):
Source/WebKit/gtk:
- webkit/webkitwebview.cpp:
(paintWebView):
Source/WebKit/mac:
- WebInspector/WebNodeHighlightView.mm:
(-[WebNodeHighlightView drawRect:]):
Source/WebKit/qt:
- Api/qwebframe.cpp:
(QWebFramePrivate::renderRelativeCoords):
Source/WebKit/win:
- WebNodeHighlight.cpp:
(WebNodeHighlight::update):
Source/WebKit2:
- WebProcess/WebCoreSupport/WebInspectorClient.cpp:
(WebKit::WebInspectorClient::drawRect):
- 8:56 AM QtWebKitBuildBots edited by
- Update Qt and Mobility version on 4.7.x QtWebKit2.2 bot (diff)
- 8:49 AM Changeset in webkit [92283] by
-
- 2 edits in trunk/Tools
[Qt] Fix running qmltests for WK2 in the bot
https://bugs.webkit.org/show_bug.cgi?id=65621
Reviewed by Csaba Osztrogonác.
The path for QML_IMPORT_PATH was assuming we were running the WK1 tests,
but now there's the case for WK2 UIProcess tests as well.
- Scripts/run-qtwebkit-tests: add both possible paths to the QML_IMPORT_PATH.
- 8:33 AM Changeset in webkit [92282] by
-
- 3 edits in trunk/Tools
Add a way to edit test expectations.
https://bugs.webkit.org/show_bug.cgi?id=64922
Implements a TestExpectationsEditor, which provides a standard way to
update and remove test expectations.
Reviewed by Adam Barth.
- Scripts/webkitpy/layout_tests/models/test_expectations.py: Changed TestExpectationSerializer to skip lines that match no test configurations,
added TestExpectationLine.is_flaky, added BugManager, a simple interface to be fleshed out later, and a TestExpectationsEditor, the big
enchilada.
- Scripts/webkitpy/layout_tests/models/test_expectations_unittest.py: Loads of tests to capture desired behavior.
- 8:30 AM Changeset in webkit [92281] by
-
- 2 edits in trunk/LayoutTests
[chromium] Added two compositing tests whose pixel results on the
Mesa bots are different following
http://trac.webkit.org/changeset/92255.
Unreviewed.
- platform/chromium/test_expectations.txt:
- 8:09 AM Changeset in webkit [92280] by
-
- 3 edits in trunk/Source/WebCore
Web Inspector: make text in popover selectable + make popover re-appear faster.
https://bugs.webkit.org/show_bug.cgi?id=65603
Reviewed by Yury Semikhatsky.
- inspector/front-end/Popover.js:
(WebInspector.PopoverHelper.prototype.setTimeout):
(WebInspector.PopoverHelper.prototype._mouseMove):
(WebInspector.PopoverHelper.prototype._handleMouseAction):
- inspector/front-end/popover.css:
(.popover .content):
- 7:40 AM Changeset in webkit [92279] by
-
- 1 edit2 adds in trunk/LayoutTests
Unreviewed, GTK baselines for media/media-controls-clone.html.
- platform/gtk/media/media-controls-clone-expected.png: Added.
- platform/gtk/media/media-controls-clone-expected.txt: Added.
- 7:33 AM Changeset in webkit [92278] by
-
- 3 edits in trunk/Source/WebCore
Web Inspector: Console scroll position should be saved when switching panels.
https://bugs.webkit.org/show_bug.cgi?id=65607
Reviewed by Pavel Feldman.
- inspector/front-end/ConsoleView.js:
(WebInspector.ConsoleView.prototype._formatAsArrayEntry):
(WebInspector.ConsoleView.prototype.get scrollLeft):
(WebInspector.ConsoleView.prototype.set scrollLeft):
(WebInspector.ConsoleView.prototype.get scrollTop):
(WebInspector.ConsoleView.prototype.set scrollTop):
- inspector/front-end/Drawer.js:
(WebInspector.Drawer.prototype.show):
(WebInspector.Drawer.prototype._endStatusBarDragging):
(WebInspector.Drawer.prototype.get scrollLeft):
(WebInspector.Drawer.prototype.set scrollLeft):
(WebInspector.Drawer.prototype.get scrollTop):
(WebInspector.Drawer.prototype.set scrollTop):
- 7:25 AM Changeset in webkit [92277] by
-
- 6 edits13 adds in trunk
[Qt] [WK2] Expose web view classes to QML
https://bugs.webkit.org/show_bug.cgi?id=65339
Reviewed by Benjamin Poulain.
.:
- Source/WebKit.pro: Include QML plugin subdir in the build system for WK2.
Source/WebKit2:
This patch also uses QuickTest from QtDeclarative to provide the basic autotest
infrastructure for the exposed elements.
- UIProcess/API/qt/qmlplugin/plugin.cpp: Added.
(WebKit2QmlPlugin::registerTypes):
- UIProcess/API/qt/qmlplugin/qmldir: Added.
- UIProcess/API/qt/qmlplugin/qmlplugin.pro: Added.
- UIProcess/API/qt/qtouchwebpage.h: Expose load() to QML environment.
- UIProcess/API/qt/qtouchwebview.h: Since QTouchWebPage* doesn't change once set
in the constructor, we mark the page property as CONSTANT. This avoid QML
warnings for not having a NOTIFY signal for the property change.
- UIProcess/API/qt/tests/tests.pro:
- UIProcess/API/qt/tests/qmltests/DesktopWebView/tst_properties.qml: Added.
- UIProcess/API/qt/tests/qmltests/TouchWebView/tst_properties.qml: Added.
- UIProcess/API/qt/tests/qmltests/common/test1.html: Added.
- UIProcess/API/qt/tests/qmltests/qmltests.pro: Added.
- UIProcess/API/qt/tests/qmltests/tst_qmltests.cpp: Added.
- 6:15 AM Changeset in webkit [92276] by
-
- 3 edits in trunk/Tools
[Qt] MiniBrowser: Unbreak load progress indication.
https://bugs.webkit.org/show_bug.cgi?id=65614
Reviewed by Kenneth Rohde Christiansen.
loadProgress() was renamed to loadProgressChanged().
- MiniBrowser/qt/BrowserWindow.cpp:
(BrowserWindow::BrowserWindow):
(BrowserWindow::onLoadProgressChanged):
- MiniBrowser/qt/BrowserWindow.h:
- 6:05 AM Changeset in webkit [92275] by
-
- 2 edits in trunk/LayoutTests
[Chromium] Remove flaky failures of fast/speech/input-appearance-*.html.
- platform/chromium/test_expectations.txt:
- 5:29 AM Changeset in webkit [92274] by
-
- 2 edits in trunk/Tools
Build fix for WebKit2GTK+.
- WebKitTestRunner/GNUmakefile.am: Include libInternals as one of
of the library dependencies of the injected bundle.
- 5:20 AM Changeset in webkit [92273] by
-
- 10 edits in trunk
[GTK] Install web and plugin processes in libexecdir instead of bindir
https://bugs.webkit.org/show_bug.cgi?id=65600
Reviewed by Martin Robinson.
.:
- GNUmakefile.am: Initialize libexec_PROGRAMS, only used by
WebKit2 in this moment.
Source/WebKit2:
Launch processes from libexecdir or WEBKIT_EXEC_PATH
environment variable when it's set. This variable will be used by
MiniBrowser and unit tests to find processes without having to
install them.
- GNUmakefile.am:
- UIProcess/Launcher/gtk/ProcessLauncherGtk.cpp:
(WebKit::ProcessLauncher::launchProcess):
Tools:
Set WEBKIT_EXEC_PATH environment variable to use web and plugin
process from current directory instead of the intalled ones.
- MiniBrowser/gtk/GNUmakefile.am:
- MiniBrowser/gtk/main.c:
(main):
- WebKitTestRunner/GNUmakefile.am:
- WebKitTestRunner/gtk/main.cpp:
(main):
- 4:55 AM Changeset in webkit [92272] by
-
- 2 edits in trunk/LayoutTests
[Qt]REGRESSION(r92254): It made 2 tests timeout
https://bugs.webkit.org/show_bug.cgi?id=65609
[Qt]REGRESSION(r92224): It made editing/text-iterator/basic-iteration.html timeout
https://bugs.webkit.org/show_bug.cgi?id=65605
- platform/qt/Skipped: Skip failing tests:
- fast/frames/lots-of-objects.html
- fast/frames/lots-of-iframes.html
- editing/text-iterator/basic-iteration.html
- 4:14 AM Changeset in webkit [92271] by
-
- 3 edits in trunk/Source/WebCore
libsoup-CRITICAL : soup_message_io_pause: assertion `io != NULL' failed
https://bugs.webkit.org/show_bug.cgi?id=64263
Reviewed by Martin Robinson.
Avoid any operation on not yet started messages and completed messages.
- platform/network/ResourceHandleInternal.h: (WebCore::ResourceHandleInternal::ResourceHandleInternal):
- platform/network/soup/ResourceHandleSoup.cpp: (WebCore::finishedCallback): (WebCore::startHTTPRequest): (WebCore::ResourceHandle::platformSetDefersLoading):
- 3:50 AM Changeset in webkit [92270] by
-
- 8 edits1 copy in branches/chromium/835
Merge 91858 - Web Inspector: Disable cache option should only clear memory cache, not disable it.
https://bugs.webkit.org/show_bug.cgi?id=65184
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/InspectorClient.h:
- inspector/InspectorResourceAgent.cpp:
(WebCore::InspectorResourceAgent::enable):
(WebCore::InspectorResourceAgent::disable):
(WebCore::InspectorResourceAgent::setCacheDisabled):
(WebCore::InspectorResourceAgent::mainFrameNavigated):
Source/WebKit/chromium:
- src/InspectorClientImpl.cpp:
- src/InspectorClientImpl.h:
- src/WebDevToolsAgentImpl.cpp:
- src/WebDevToolsAgentImpl.h:
LayoutTests:
- http/tests/inspector/network/network-disable-cache-memory-expected.txt:
- http/tests/inspector/network/network-disable-cache-memory.html:
- http/tests/inspector/network/resources/random-script.php: Added.
TBR=pfeldman@chromium.org
BUG=90757
Review URL: http://codereview.chromium.org/7563005
- 3:48 AM Changeset in webkit [92269] by
-
- 7 edits in trunk/Source
[Chromium] Fix OOP font loading to work on 10.6.6 and above.
https://bugs.webkit.org/show_bug.cgi?id=65543
In 10.6.6 the function used to get the unique ID for an NSFont in the
renderer was changed so it fails in the sandbox (it now tries to access
the on-disk font file). In order to work around this, we get the font
ID from the browser process.
To speed things up, we introduce 2 levels of caching in WebKit. A font
name cache where we can perform a quick lookup without the need for the
font id and a font id cache which we can only lookup in after getting
the unique ID from the browser process.
Reviewed by Kenneth Russell.
No new tests since this is not readily testable.
Source/WebCore:
- platform/chromium/PlatformBridge.h:
- platform/graphics/chromium/CrossProcessFontLoading.h:
- platform/graphics/chromium/CrossProcessFontLoading.mm:
(WebCore::MemoryActivatedFont::create):
(WebCore::MemoryActivatedFont::MemoryActivatedFont):
(WebCore::MemoryActivatedFont::~MemoryActivatedFont):
Source/WebKit/chromium:
- public/mac/WebSandboxSupport.h: Plumb font ID parameter through.
- src/PlatformBridge.cpp:
(WebCore::PlatformBridge::loadFont): ditto.
- 3:46 AM Changeset in webkit [92268] by
-
- 31 edits3 adds in trunk/LayoutTests
Unreviewed, GTK svg rebaseline after r92047.
- platform/gtk/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
- platform/gtk/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt:
- platform/gtk/svg/batik/filters/feTile-expected.txt:
- platform/gtk/svg/batik/paints/patternPreserveAspectRatioA-expected.txt:
- platform/gtk/svg/batik/paints/patternRegionA-expected.txt:
- platform/gtk/svg/batik/paints/patternRegions-expected.txt:
- platform/gtk/svg/batik/paints/patternRegions-positioned-objects-expected.txt:
- platform/gtk/svg/batik/text/longTextOnPath-expected.txt:
- platform/gtk/svg/batik/text/smallFonts-expected.txt:
- platform/gtk/svg/batik/text/textAnchor-expected.txt:
- platform/gtk/svg/batik/text/textDecoration-expected.txt:
- platform/gtk/svg/batik/text/textEffect-expected.txt:
- platform/gtk/svg/batik/text/textEffect2-expected.txt:
- platform/gtk/svg/batik/text/textEffect3-expected.txt:
- platform/gtk/svg/batik/text/textFeatures-expected.txt:
- platform/gtk/svg/batik/text/textLayout-expected.txt:
- platform/gtk/svg/batik/text/textLayout2-expected.txt:
- platform/gtk/svg/batik/text/textLength-expected.txt:
- platform/gtk/svg/batik/text/textOnPath-expected.txt:
- platform/gtk/svg/batik/text/textOnPathSpaces-expected.txt:
- platform/gtk/svg/batik/text/textPosition-expected.txt:
- platform/gtk/svg/batik/text/textPosition2-expected.txt:
- platform/gtk/svg/batik/text/textProperties-expected.txt:
- platform/gtk/svg/batik/text/textProperties2-expected.txt:
- platform/gtk/svg/batik/text/textStyles-expected.txt:
- platform/gtk/svg/batik/text/verticalText-expected.txt:
- platform/gtk/svg/batik/text/verticalTextOnPath-expected.txt:
- platform/gtk/svg/custom/external-paintserver-reference-expected.txt: Added.
- platform/gtk/svg/custom/linking-base-external-reference-expected.txt: Added.
- platform/gtk/svg/custom/text-linking-expected.txt:
- platform/gtk/svg/custom/zero-path-square-cap-rendering2-expected.txt: Added.
- platform/gtk/svg/hixie/error/014-expected.txt:
- platform/gtk/svg/hixie/use/002-expected.txt:
- 3:18 AM Changeset in webkit [92267] by
-
- 1 edit in branches/chromium/835/Source/WebCore/inspector/InspectorPageAgent.cpp
Merge 91901 - Web Inspector: [REGRESSION] [Chromium] Opening link in new tab does not work properly.
https://bugs.webkit.org/show_bug.cgi?id=65279
Reviewed by Pavel Feldman.
- inspector/InspectorPageAgent.cpp:
(WebCore::InspectorPageAgent::open):
TBR=vsevik@chromium.org
BUG=87345
Review URL: http://codereview.chromium.org/7565004
- 3:17 AM Changeset in webkit [92266] by
-
- 12 edits in trunk/Source/WebCore
Make EventDispatchMediator RefCounted.
https://bugs.webkit.org/show_bug.cgi?id=65529
Reviewed by Hajime Morita.
Make EventDispatchMediator RefCounted so that it can be enqueued into a
ScopedEventQueue and called later.
A necessary change for ScopedEventQueue should be addressed in another patch.
This is a minor update of r92256, which failed on chromium win builds.
No changes to functionality so no new tests.
- dom/Event.cpp:
(WebCore::EventDispatchMediator::create):
- dom/Event.h:
- dom/EventDispatcher.cpp:
(WebCore::EventDispatcher::dispatchEvent):
- dom/EventDispatcher.h:
- dom/KeyboardEvent.cpp:
(WebCore::KeyboardEventDispatchMediator::create):
- dom/KeyboardEvent.h:
- dom/MouseEvent.cpp:
(WebCore::MouseEventDispatchMediator::create):
- dom/MouseEvent.h:
- dom/Node.cpp:
(WebCore::Node::dispatchEvent):
(WebCore::Node::dispatchKeyEvent):
(WebCore::Node::dispatchMouseEvent):
(WebCore::Node::dispatchWheelEvent):
- dom/WheelEvent.cpp:
(WebCore::WheelEventDispatchMediator::create):
- dom/WheelEvent.h:
- 1:28 AM Changeset in webkit [92265] by
-
- 38 edits in trunk/Source
Web Inspector: remove Node parameter from the InspectorClient::highlight
https://bugs.webkit.org/show_bug.cgi?id=65549
Patch by Pavel Feldman <pfeldman@chromium.org> on 2011-08-03
Reviewed by Yury Semikhatsky.
Source/WebCore:
- inspector/InspectorClient.h:
- inspector/InspectorDOMAgent.cpp:
(WebCore::InspectorDOMAgent::highlight):
- loader/EmptyClients.h:
(WebCore::EmptyInspectorClient::highlight):
Source/WebKit/chromium:
- src/InspectorClientImpl.cpp:
(WebKit::InspectorClientImpl::highlight):
- src/InspectorClientImpl.h:
- src/WebDevToolsAgentImpl.cpp:
(WebKit::WebDevToolsAgentImpl::highlight):
- src/WebDevToolsAgentImpl.h:
Source/WebKit/efl:
- WebCoreSupport/InspectorClientEfl.cpp:
(WebCore::InspectorClientEfl::highlight):
- WebCoreSupport/InspectorClientEfl.h:
Source/WebKit/gtk:
- WebCoreSupport/InspectorClientGtk.cpp:
(WebKit::InspectorClient::highlight):
- WebCoreSupport/InspectorClientGtk.h:
Source/WebKit/haiku:
- WebCoreSupport/InspectorClientHaiku.cpp:
(WebCore::InspectorClientHaiku::highlight):
- WebCoreSupport/InspectorClientHaiku.h:
Source/WebKit/mac:
- WebCoreSupport/WebInspectorClient.h:
- WebCoreSupport/WebInspectorClient.mm:
(WebInspectorClient::highlight):
- WebInspector/WebNodeHighlighter.h:
- WebInspector/WebNodeHighlighter.mm:
(-[WebNodeHighlighter highlight]):
Source/WebKit/qt:
- WebCoreSupport/InspectorClientQt.cpp:
(WebCore::InspectorClientQt::highlight):
- WebCoreSupport/InspectorClientQt.h:
Source/WebKit/win:
- WebCoreSupport/WebInspectorClient.cpp:
(WebInspectorClient::highlight):
- WebCoreSupport/WebInspectorClient.h:
Source/WebKit/wince:
- WebCoreSupport/InspectorClientWinCE.cpp:
(WebKit::InspectorClientWinCE::highlight):
- WebCoreSupport/InspectorClientWinCE.h:
Source/WebKit/wx:
- WebKitSupport/InspectorClientWx.cpp:
(WebCore::InspectorClientWx::highlight):
- WebKitSupport/InspectorClientWx.h:
Source/WebKit2:
- WebProcess/WebCoreSupport/WebInspectorClient.cpp:
(WebKit::WebInspectorClient::highlight):
- WebProcess/WebCoreSupport/WebInspectorClient.h:
- 1:20 AM Changeset in webkit [92264] by
-
- 2 edits in trunk/Source/WebCore
https://bugs.webkit.org/show_bug.cgi?id=65599
Image loads should trigger didFirstVisuallyNonEmptyLayout more easily
Reviewed by Dan Bernstein.
Tweak the heuristic pixel count so logo-sized images trigger didFirstVisuallyNonEmptyLayout.
- page/FrameView.h:
(WebCore::FrameView::incrementVisuallyNonEmptyPixelCount):
- 12:43 AM Changeset in webkit [92263] by
-
- 9 edits2 moves in trunk
[GTK] Reorganize pkg-config files
https://bugs.webkit.org/show_bug.cgi?id=65548
Reviewed by Martin Robinson.
.:
- GNUmakefile.am: Initialize pkgconfigdir and pkgconfig_DATA which
are common to all libraries.
- configure.ac: Update pkg-config files.
Source/JavaScriptCore:
- GNUmakefile.am:
- javascriptcoregtk.pc.in: Renamed from Source/WebKit/gtk/javascriptcoregtk.pc.in.
Source/WebKit/gtk:
- GNUmakefile.am: Remove javascriptcore pc file references.
Source/WebKit2:
- GNUmakefile.am: Rename pc file as webkit2gtk.pc.in. WebKit2
depends on gtk3 unconditionally so we don't need to use
WEBKITGTK_PC_NAME.
- webkit2gtk.pc.in: Renamed from Source/WebKit2/gtk/webkit2.pc.in.
- 12:06 AM Changeset in webkit [92262] by
-
- 3 edits3 adds in trunk
WebSocket: Could not handle zero length text frame.
https://bugs.webkit.org/show_bug.cgi?id=65592
Patch by Takashi Toyoshima <toyoshim@chromium.org> on 2011-08-03
Reviewed by Kent Tamura.
Source/WebCore:
Test: http/tests/websocket/tests/hybi/zero-length-text.html
- websockets/WebSocketChannel.cpp:
(WebCore::WebSocketChannel::processFrame):
LayoutTests:
- http/tests/websocket/tests/hybi/zero-length-text-expected.txt: Added.
- http/tests/websocket/tests/hybi/zero-length-text.html: Added.
- http/tests/websocket/tests/hybi/zero-length-text_wsh.py: Added.