Timeline
Aug 29, 2011:
- 11:40 PM Changeset in webkit [94053] by
-
- 2 edits in trunk/Source/WebCore
Touch Internals.cpp in an attempt to fix GTK+ build.
- testing/Internals.cpp:
- 11:37 PM Changeset in webkit [94052] by
-
- 9 edits2 deletes in trunk/LayoutTests
Fix two layout tests which fails on Qt port with latest pywebsocket.
https://bugs.webkit.org/show_bug.cgi?id=66929
Patch by Takashi Toyoshima <toyoshim@chromium.org> on 2011-08-29
Reviewed by Kent Tamura.
hanging-handshake_wsh.py read socket to hang in opening handshake.
Then client initiated closing handshakes or abnormal closures caused
exception or resulted in http error response on hybi-10 compliant new
pywebsocket. Because tests finished at closure, it depends on timing
whether tests detects the error response. Actually, two tests failed on
Qt port by chance.
Essentially, hangings is unnecessary because open event must be queued
and WebSocket's readyState could not be changed to OPEN until the next
event loop is executed. That's why we can use echo_wsh.py instead of
hanging-handshake_wsh.py safely.
close-unref-websocket tests call close() before GC. These tests expect
GC cause close event. But close() itself also queues close event.
These close() are redandant. If GC doesn't cause close event, these
tests can pass by close event that close() queues. This change also
remove these redandant close() calls.
- http/tests/websocket/tests/hixie76/close-before-open.html:
Use echo_wsh.py instead of hanging-handshake_wsh.py.
- http/tests/websocket/tests/hixie76/close-unref-websocket-expected.txt:
- http/tests/websocket/tests/hixie76/close-unref-websocket.html:
Used echo_wsh.py, remove ws.close() and fix expectation.
- http/tests/websocket/tests/hixie76/hanging-handshake_wsh.py: Removed.
- http/tests/websocket/tests/hybi/close-before-open.html:
Use echo_wsh.py instead of hanging-handshake_wsh.py.
- http/tests/websocket/tests/hybi/close-unref-websocket-expected.txt:
- http/tests/websocket/tests/hybi/close-unref-websocket.html:
Used echo_wsh.py, remove ws.close() and fix expectation.
- http/tests/websocket/tests/hybi/hanging-handshake_wsh.py: Removed.
- http/tests/websocket/tests/hybi/close-code-and-reason.html:
- http/tests/websocket/tests/hybi/workers/resources/close-code-and-reason.js:
Use echo_wsh.py instead of hanging-handshake_wsh.py.
- 11:29 PM Changeset in webkit [94051] by
-
- 3 edits in trunk/Source/WebKit2
Another Windows build fix after r94047.
- win/WebKit2.def:
- win/WebKit2CFLite.def:
- 11:19 PM Changeset in webkit [94050] by
-
- 2 edits in trunk
Build fix attempt after r94038.
- Source/autotools/symbols.filter:
- 11:07 PM Changeset in webkit [94049] by
-
- 2 edits in trunk/Source/WebKit/win
Move setInnerTextValue from RenderTextControl to HTMLTextFormControlElement
https://bugs.webkit.org/show_bug.cgi?id=67152
Reviewed by Darin Adler.
Updated call sites of lastChangeWasUserEdit since it's moved from RenderTextControl
to HTMLTextFormControlElement.
- DOMHTMLClasses.cpp:
(DOMHTMLInputElement::isUserEdited):
(DOMHTMLTextAreaElement::isUserEdited):
- 10:55 PM Changeset in webkit [94048] by
-
- 2 edits in trunk/LayoutTests
[chromium] Add exception due to missing results for r94037.
- platform/chromium/test_expectations.txt:
- 10:51 PM Changeset in webkit [94047] by
-
- 12 edits in trunk/Source/WebCore
Move setInnerTextValue from RenderTextControl to HTMLTextFormControlElement
https://bugs.webkit.org/show_bug.cgi?id=67152
Reviewed by Darin Adler.
Moved setInnerTextValue from RenderTextControl to HTMLTextFormControlElement.
Also moved m_lastChangeWasUserEdit from RenderTextControl to HTMLTextFormControlElement
and related inline functions from RenderTextControl to HTMLTextFormControlElement.
Because m_lastChangeWasUserEdit is no longer reset when RenderTextControl is recreated,
added explicit calls to setLastChangeWasNotUserEdit in setValue functions of HTMLInputElement
and HTMLTextAreaElement.
This patch also fixes the bug that lastChangeWasUserEdit() incorrectly returns false
when input or textarea don't have renderer (e.g. invisible).
Unfortunately, there is no way to test this behavioral change from layout tests.
- WebCore.exp.in: Exports lastChangeWasUserEdit in HTMLTextFormControlElement instead of
that of HTMLInputElement and HTMLTextAreaElement.
- html/HTMLInputElement.cpp:
(WebCore::HTMLInputElement::setValue): Explicitly calls setLastChangeWasNotUserEdit.
- html/HTMLInputElement.h:
- html/HTMLTextAreaElement.cpp:
(WebCore::HTMLTextAreaElement::setValueCommon): Ditto.
- html/HTMLTextAreaElement.h:
- html/HTMLTextFormControlElement.cpp:
(WebCore::HTMLTextFormControlElement::HTMLTextFormControlElement):
(WebCore::HTMLTextFormControlElement::subtreeHasChanged): Sets m_lastChangeWasUserEdit true
as it used to do via respondToChangeByUser.
(WebCore::HTMLTextFormControlElement::lastChangeWasUserEdit): Moved from HTMLInputElement
and HTMLTextAreaElement.
(WebCore::HTMLTextFormControlElement::setInnerTextValue): Moved from RenderTextControl.
- html/HTMLTextFormControlElement.h:
(WebCore::HTMLTextFormControlElement::setLastChangeWasNotUserEdit): Added.
- rendering/RenderTextControl.cpp:
(WebCore::RenderTextControl::RenderTextControl): No longer initializes m_lastChangeWasUserEdit.
- rendering/RenderTextControl.h:
- rendering/RenderTextControlSingleLine.cpp:
(WebCore::RenderTextControlSingleLine::updateFromElement): Calls setInnerTextValue.
- rendering/RenderTextControlMultiLine.cpp:
(WebCore::RenderTextControlMultiLine::updateFromElement): Ditto.
- 10:27 PM Changeset in webkit [94046] by
-
- 2 edits in trunk/LayoutTests
Unreviewed marking skip.
- platform/win/Skipped: Skipped editing/spelling/spelling-insert-html.html
- 10:22 PM Changeset in webkit [94045] by
-
- 3 edits3 adds in trunk
REGRESSION(r88115): Disabling a file upload control causes an endless busyloop.
https://bugs.webkit.org/show_bug.cgi?id=66659
Reviewed by Darin Adler.
Source/WebCore:
Test: fast/forms/file/disabling-file-busy-loop.html
- rendering/RenderFileUploadControl.cpp:
(WebCore::RenderFileUploadControl::updateFromElement):
Don't call setDisabled() if the disabled status is not changed.
setDisabled() causes styleRecalc(), and
HTMLFormControlElement::styleRecalc() causes
updateFromElement(). updateFromElement() should not call
setDisabled() again.
LayoutTests:
- fast/forms/file/disabling-file-busy-loop-expected.txt: Added.
- fast/forms/file/disabling-file-busy-loop.html: Added.
- 10:01 PM Changeset in webkit [94044] by
-
- 4 edits in trunk/Source
Add HAVE(VASPRINTF) macro to test for vasprintf() support
https://bugs.webkit.org/show_bug.cgi?id=67156
Reviewed by Darin Adler.
Source/JavaScriptCore:
Encapsulate testing of vasprintf() support in a HAVE macro
instead of hardcoding the list of supported/unsupported
compilers at the call site.
- wtf/Platform.h:
Source/WebCore:
- xml/parser/XMLDocumentParserLibxml2.cpp:
(WebCore::XMLDocumentParser::error): Modified to use HAVE(VASPRINTF).
- 9:57 PM Changeset in webkit [94043] by
-
- 2 edits in trunk/LayoutTests
[chromium] Minor update for test that is timing out.
- platform/chromium/test_expectations.txt:
- 9:51 PM Changeset in webkit [94042] by
-
- 2 edits1 copy1 move2 adds in trunk/LayoutTests
[chromium] Misc test expectations updates.
- platform/chromium-mac/fast/files/create-blob-url-crash-expected.txt: Copied from LayoutTests/platform/qt/fast/files/create-blob-url-crash-expected.txt.
- platform/chromium/fast/files/create-blob-url-crash-expected.txt: Renamed from LayoutTests/platform/qt/fast/files/create-blob-url-crash-expected.txt.
Added due to it being different from normal OSX result.
- platform/chromium/test_expectations.txt: Changes due to expectation update for media-document-audio-repaint.html leading to only an image mismatch and a test that is a slow on OS X as well as Linux and Windows.
- 8:38 PM Changeset in webkit [94041] by
-
- 14 edits10 adds in trunk
WebSocket: Receive binary message as Blob
https://bugs.webkit.org/show_bug.cgi?id=67115
Reviewed by Kent Tamura.
Source/WebCore:
Make WebSocketChannel be able to receive WebSocket binary messages and deliver them via
didReceiveBinaryData() callback of WebSocketChannelClient.
Tests: http/tests/websocket/tests/hybi/fragmented-binary-frames.html
http/tests/websocket/tests/hybi/receive-blob.html
http/tests/websocket/tests/hybi/workers/receive-blob.html
- bindings/js/JSMessageEventCustom.cpp:
(WebCore::JSMessageEvent::data): Convert Blob to JSValue.
- bindings/v8/custom/V8MessageEventCustom.cpp:
(WebCore::V8MessageEvent::dataAccessorGetter): Convert Blob to v8::Value.
- dom/MessageEvent.cpp:
(WebCore::MessageEvent::MessageEvent):
- dom/MessageEvent.h:
Added DataTypeBlob and Blob-related functions.
(WebCore::MessageEvent::create):
(WebCore::MessageEvent::dataAsBlob):
- websockets/ThreadableWebSocketChannelClientWrapper.cpp:
(WebCore::ThreadableWebSocketChannelClientWrapper::didReceiveBinaryData):
(WebCore::ThreadableWebSocketChannelClientWrapper::didReceiveBinaryDataCallback):
- websockets/ThreadableWebSocketChannelClientWrapper.h:
- websockets/WebSocket.cpp:
(WebCore::WebSocket::didReceiveBinaryData):
If binaryType attribute is "blob", construct a Blob using BlobData filled with the given
binary message.
- websockets/WebSocket.h:
- websockets/WebSocketChannel.cpp:
(WebCore::WebSocketChannel::processFrame):
Create continuousFrameData as OwnPtr<> rather than stack-allocated value so we can easily
pass it to didReceiveBinaryData() callback.
Save the content of a fragmented message even if it is a binary opcode.
- websockets/WebSocketChannelClient.h:
(WebCore::WebSocketChannelClient::didReceiveBinaryData):
- websockets/WorkerThreadableWebSocketChannel.cpp:
(WebCore::workerContextDidReceiveBinaryData):
(WebCore::WorkerThreadableWebSocketChannel::Peer::didReceiveBinaryData):
Pass binaryData as PassOwnPtr<Vector<char> > to deliver the value efficiently (without
copying the content) across threads.
- websockets/WorkerThreadableWebSocketChannel.h:
LayoutTests:
- http/tests/websocket/tests/hybi/binary-frames_wsh.py: Added. Used from receive-blob.html.
- http/tests/websocket/tests/hybi/fragmented-binary-frames-expected.txt: Added.
- http/tests/websocket/tests/hybi/fragmented-binary-frames.html:
Added. The content of this test is almost identical to receive-blob.html.
- http/tests/websocket/tests/hybi/fragmented-binary-frames_wsh.py: Added.
- http/tests/websocket/tests/hybi/receive-blob-expected.txt: Added.
- http/tests/websocket/tests/hybi/receive-blob.html:
Added. It is a bit complicated to validate the content of a Blob, because a Blob must be read
asynchronously. FileReader is used to read a blob as an ArrayBuffer, each byte of which is
compared with the expected result.
- http/tests/websocket/tests/hybi/workers/receive-blob-expected.txt: Added.
- http/tests/websocket/tests/hybi/workers/receive-blob.html: Added.
- http/tests/websocket/tests/hybi/workers/resources/binary-frames_wsh.py:
Added. Same as above binary-frames_wsh.py.
- http/tests/websocket/tests/hybi/workers/resources/receive-blob.js: Added.
- 7:29 PM Changeset in webkit [94040] by
-
- 3 edits in trunk/Source/WebKit2
Export more symbols for r94038.
- win/WebKit2.def:
- win/WebKit2CFLite.def:
- 7:19 PM Changeset in webkit [94039] by
-
- 3 edits in trunk/Source/WebKit2
Windows build fix for r94038.
- win/WebKit2.def:
- win/WebKit2CFLite.def:
- 7:03 PM Changeset in webkit [94038] by
-
- 5 edits2 adds in trunk
Add a test for lastChangeWasUserEdit in HTMLInputElement and HTMLTextAreaElement
https://bugs.webkit.org/show_bug.cgi?id=67173
Reviewed by Darin Adler.
Source/WebCore:
Exposed HTMLInputElement::lastChangeWasUserEdit and HTMLTextAreaElement::lastChangeWasUserEdit
via internals.wasLastChangeUserEdit(Element*, ExceptionCode&). The first argument must be
an input element or a textarea element lastChangeWasUserEdit is called upon.
Test: fast/forms/textfield-lastchange-was-useredit.html
- testing/Internals.cpp:
(WebCore::Internals::wasLastChangeUserEdit):
- testing/Internals.h:
- testing/Internals.idl:
LayoutTests:
Added some basic test for HTMLInputElement::lastChangeWasUserEdit and
HTMLTextAreaElement::lastChangeWasUserEdit.
- fast/forms/textfield-lastchange-was-useredit-expected.txt: Added.
- fast/forms/textfield-lastchange-was-useredit.html: Added.
- 6:49 PM Changeset in webkit [94037] by
-
- 3 edits4 adds in trunk
Implement CSSPropertyWebkitColumns in CSSStyleApplyProperty.
https://bugs.webkit.org/show_bug.cgi?id=67106
Reviewed by Darin Adler.
Tests:
LayoutTests/fast/multicol/inherit-column-values.html
LayoutTests/fast/multicol/initial-column-values.html
- css/CSSStyleApplyProperty.cpp:
(WebCore::CSSStyleApplyProperty::CSSStyleApplyProperty):
Initialize handler for CSSPropertyWebkitColumns.
- css/CSSStyleSelector.cpp:
(WebCore::CSSStyleSelector::applyProperty):
Remove existing implementation for CSSPropertyWebkitColumns.
- 6:43 PM Changeset in webkit [94036] by
-
- 4 edits in trunk/Tools
sheriffbot "usage" help statements are wrong
https://bugs.webkit.org/show_bug.cgi?id=67170
Patch by Tom Zakrajsek <tomz@codeaurora.org> on 2011-08-29
Reviewed by Adam Barth.
- Scripts/webkitpy/tool/bot/irc_command.py:
- Scripts/webkitpy/tool/bot/irc_command_unittest.py:
- Scripts/webkitpy/tool/bot/sheriffircbot_unittest.py:
- 6:43 PM Changeset in webkit [94035] by
-
- 27 edits in trunk/Source
Unzip initialization lists and constructors in JSCell hierarchy (3/7)
https://bugs.webkit.org/show_bug.cgi?id=67064
Patch by Mark Hahnenberg <mhahnenberg@apple.com> on 2011-08-29
Reviewed by Darin Adler.
Source/JavaScriptCore:
Completed the third level of the refactoring to add finishCreation()
methods to all classes within the JSCell hierarchy with non-trivial
constructor bodies.
This primarily consists of pushing the calls to finishCreation() down
into the constructors of the subclasses of the second level of the hierarchy
as well as pulling the finishCreation() calls out into the class's corresponding
create() method if it has one. Doing both simultaneously allows us to
maintain the invariant that the finishCreation() method chain is called exactly
once during the creation of an object, since calling it any other number of
times (0, 2, or more) will cause an assertion failure.
- debugger/DebuggerActivation.cpp:
(JSC::DebuggerActivation::DebuggerActivation):
(JSC::DebuggerActivation::finishCreation):
- debugger/DebuggerActivation.h:
(JSC::DebuggerActivation::create):
- runtime/Arguments.h:
(JSC::Arguments::create):
(JSC::Arguments::createNoParameters):
(JSC::Arguments::Arguments):
(JSC::Arguments::finishCreation):
- runtime/ErrorInstance.cpp:
(JSC::ErrorInstance::ErrorInstance):
- runtime/ErrorInstance.h:
(JSC::ErrorInstance::finishCreation):
- runtime/ExceptionHelpers.cpp:
(JSC::InterruptedExecutionError::InterruptedExecutionError):
(JSC::TerminatedExecutionError::TerminatedExecutionError):
- runtime/Executable.cpp:
(JSC::EvalExecutable::EvalExecutable):
(JSC::ProgramExecutable::ProgramExecutable):
(JSC::FunctionExecutable::FunctionExecutable):
Moved the assignment of m_firstLine and m_lastLine into the
FunctionExecutable::finishCreation() method in Executable.h
- runtime/Executable.h:
(JSC::ScriptExecutable::ScriptExecutable):
(JSC::EvalExecutable::create):
(JSC::ProgramExecutable::create):
(JSC::FunctionExecutable::create):
(JSC::FunctionExecutable::finishCreation):
- runtime/JSArray.cpp:
(JSC::JSArray::JSArray):
(JSC::JSArray::finishCreation):
- runtime/JSArray.h:
- runtime/JSByteArray.cpp:
(JSC::JSByteArray::JSByteArray):
- runtime/JSByteArray.h:
(JSC::JSByteArray::finishCreation):
- runtime/JSNotAnObject.h:
(JSC::JSNotAnObject::JSNotAnObject):
- runtime/JSObject.h:
(JSC::JSNonFinalObject::JSNonFinalObject):
- runtime/JSObjectWithGlobalObject.cpp:
(JSC::JSObjectWithGlobalObject::JSObjectWithGlobalObject):
(JSC::JSObjectWithGlobalObject::finishCreation):
- runtime/JSObjectWithGlobalObject.h:
- runtime/JSVariableObject.h:
(JSC::JSVariableObject::JSVariableObject):
(JSC::JSVariableObject::finishCreation):
- runtime/JSWrapperObject.h:
(JSC::JSWrapperObject::JSWrapperObject):
- runtime/ObjectPrototype.cpp:
(JSC::ObjectPrototype::ObjectPrototype):
(JSC::ObjectPrototype::finishCreation):
- runtime/ObjectPrototype.h:
- runtime/StrictEvalActivation.cpp:
(JSC::StrictEvalActivation::StrictEvalActivation):
Source/JavaScriptGlue:
Completed the third level of the refactoring to add finishCreation()
methods to all classes within the JSCell hierarchy with non-trivial
constructor bodies.
This primarily consists of pushing the calls to finishCreation() down
into the constructors of the subclasses of the second level of the hierarchy
as well as pulling the finishCreation() calls out into the class's corresponding
create() method if it has one. Doing both simultaneously allows us to
maintain the invariant that the finishCreation() method chain is called exactly
once during the creation of an object, since calling it any other number of
times (0, 2, or more) will cause an assertion failure.
- UserObjectImp.cpp:
(UserObjectImp::UserObjectImp):
Source/WebCore:
No new tests.
Completed the third level of the refactoring to add finishCreation()
methods to all classes within the JSCell hierarchy with non-trivial
constructor bodies.
This primarily consists of pushing the calls to finishCreation() down
into the constructors of the subclasses of the second level of the hierarchy
as well as pulling the finishCreation() calls out into the class's corresponding
create() method if it has one. Doing both simultaneously allows us to
maintain the invariant that the finishCreation() method chain is called exactly
once during the creation of an object, since calling it any other number of
times (0, 2, or more) will cause an assertion failure.
- bindings/js/JSDOMWindowShell.cpp:
(WebCore::JSDOMWindowShell::JSDOMWindowShell):
(WebCore::JSDOMWindowShell::finishCreation):
- bindings/js/JSDOMWindowShell.h:
- 6:29 PM Changeset in webkit [94034] by
-
- 7 edits in trunk/Source/WebKit/efl
[EFL] Add missing API documentation.
https://bugs.webkit.org/show_bug.cgi?id=66927
Patch by Grzegorz Czajkowski <g.czajkowski@samsung.com> on 2011-08-29
Reviewed by Kent Tamura.
Adds missing documentation for ewk_context_menu_item_checked_get/set.
Moves API documentation from cpp to the headers.
Adds brief and file commands for ewk_js.h.
- ewk/ewk_contextmenu.h:
- ewk/ewk_cookies.cpp:
- ewk/ewk_cookies.h:
- ewk/ewk_frame.cpp:
- ewk/ewk_frame.h:
- ewk/ewk_js.h:
- 4:47 PM Changeset in webkit [94033] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] QTouchWebView url property test missing
https://bugs.webkit.org/show_bug.cgi?id=67159
Patch by Gopal Raghavan <gopal.1.raghavan@nokia.com> on 2011-08-29
Reviewed by Noam Rosenthal.
Added qml test case to check url property of QTouchWebView. Since url is a readonly property, we make sure that it's set after load() is called.
- UIProcess/API/qt/tests/qmltests/TouchWebView/tst_properties.qml:
- 4:42 PM Changeset in webkit [94032] by
-
- 1 edit2 copies in branches/chromium/835
Merge 94001
BUG=91911
Review URL: http://codereview.chromium.org/7795013
- 4:39 PM Changeset in webkit [94031] by
-
- 12 edits in trunk/Tools
Add support for chomium-mac (non-CoreGraphics) baselines
https://bugs.webkit.org/show_bug.cgi?id=67163
Reviewed by Eric Seidel.
This patch teaches the non-CG chromium-mac bots to look at non-CG
baselines. However, the patch still leaves CG as the default set of
baselines.
- Scripts/webkitpy/common/checkout/baselineoptimizer_unittest.py:
- Scripts/webkitpy/common/config/build.py:
- Scripts/webkitpy/common/config/build_unittest.py:
- Scripts/webkitpy/layout_tests/port/builders.py:
- Scripts/webkitpy/layout_tests/port/chromium.py:
- Scripts/webkitpy/layout_tests/port/chromium_mac.py:
- Scripts/webkitpy/layout_tests/port/factory.py:
- Scripts/webkitpy/layout_tests/port/factory_unittest.py:
- Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests.py:
- Scripts/webkitpy/to_be_moved/rebaseline_chromium_webkit_tests_unittest.py:
- Scripts/webkitpy/tool/commands/rebaseline_unittest.py:
- 4:37 PM Changeset in webkit [94030] by
-
- 2 edits in trunk/Websites/webkit.org
Updating forms survey with non-standard wrap for textarea and more data-list driven text fields.
- projects/forms/survey.html:
- 4:35 PM Changeset in webkit [94029] by
-
- 2 edits in branches/chromium/835/Source/WebCore/webaudio
Merge 94002
BUG=93978
Review URL: http://codereview.chromium.org/7793016
- 4:21 PM Changeset in webkit [94028] by
-
- 6 edits5 adds in trunk/LayoutTests
[Chromium] Added new rebaselines for media/media-document-audio-repaint.
These are obtained by the rebaseline tool.
https://bugs.webkit.org/show_bug.cgi?id=67070
Reviewed by David Levin.
- platform/chromium-cg-mac-leopard/media/media-document-audio-repaint-expected.png: Added.
- platform/chromium-cg-mac/media/media-document-audio-repaint-expected.png:
- platform/chromium-cg-mac/media/media-document-audio-repaint-expected.txt:
- platform/chromium-gpu-cg-mac/media/media-document-audio-repaint-expected.png: Added.
- platform/chromium-gpu-cg-mac/media/media-document-audio-repaint-expected.txt: Added.
- platform/chromium-gpu-win/media/media-document-audio-repaint-expected.png: Added.
- platform/chromium-gpu-win/media/media-document-audio-repaint-expected.txt: Added.
- platform/chromium-linux/media/media-document-audio-repaint-expected.png:
- platform/chromium-win/media/media-document-audio-repaint-expected.png:
- platform/chromium-win/media/media-document-audio-repaint-expected.txt:
- 4:19 PM Changeset in webkit [94027] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] QDesktopWebView url property test missing
https://bugs.webkit.org/show_bug.cgi?id=67155
Patch by Gopal Raghavan <gopal.1.raghavan@nokia.com> on 2011-08-29
Reviewed by Noam Rosenthal.
Added qml test case to check url property. Since url is a readonly property, we make sure that it's set after load() is called.
- UIProcess/API/qt/tests/qmltests/DesktopWebView/tst_properties.qml:
- 3:54 PM Changeset in webkit [94026] by
-
- 2 edits in trunk/Source/WebCore
Speed up texImage from BGRA
https://bugs.webkit.org/show_bug.cgi?id=66884
Patch by John Bauman <jbauman@chromium.org> on 2011-08-29
Reviewed by Kenneth Russell.
BGRA input is common coming from skia, so optimize BGRA->RGBA
conversion and also avoid the pointless RGBA to RGBA conversion.
- platform/graphics/GraphicsContext3D.cpp:
(WebCore::doUnpackingAndPacking):
- 3:53 PM Changeset in webkit [94025] by
-
- 2 edits in trunk/LayoutTests
Fix path to style sheet in fast/events/constructors/event-constructors.html.
Reviewed by Gavin Barraclough.
- fast/events/constructors/event-constructors.html:
- 3:52 PM Changeset in webkit [94024] by
-
- 2 edits in trunk/Source/WebCore
[CG] ImageBufferCG should handle IOSurface allocation failure gracefully
https://bugs.webkit.org/show_bug.cgi?id=67099
Reviewed by Simon Fraser.
No new tests. Testing the "fallback to old path" behavior is not easily testable.
- platform/graphics/cg/ImageBufferCG.cpp: Rearranged backing store creation to fall back to old path if IOSurface creation path fails.
(WebCore::ImageBuffer::ImageBuffer):
- 3:51 PM Changeset in webkit [94023] by
-
- 2 edits in trunk/LayoutTests
Update results for fast/files/create-blob-url-crash.html to match
exception text.
- fast/files/create-blob-url-crash-expected.txt:
- 3:43 PM Changeset in webkit [94022] by
-
- 2 edits in branches/safari-534.51-branch/Source/WebCore
Merge r93793.
- 3:41 PM Changeset in webkit [94021] by
-
- 2 edits in branches/safari-534.51-branch/Source/WebCore
Merge r93717.
- 3:30 PM Changeset in webkit [94020] by
-
- 4 edits in releases/WebKitGTK/webkit-1.4
2011-08-29 Martin Robinson <mrobinson@igalia.com>
Update NEWS and library versioning for the 1.4.3 release.
Reviewed by Gustavo Noronha.
- configure.ac: Update library version.
2011-08-29 Martin Robinson <mrobinson@igalia.com>
Update NEWS and library versioning for the 1.4.3 release.
Reviewed by Gustavo Noronha.
- NEWS: Update the news.
- 2:57 PM Changeset in webkit [94019] by
-
- 2 edits in trunk/Source/WebCore
Only enable font smoothing as requested (Skia on Mac)
https://bugs.webkit.org/show_bug.cgi?id=67143
This adjusts LayoutTest pixel output to more closely
match other platforms.
Reviewed by Kenneth Russell.
No new tests. This platform is not yet enabled.
- platform/graphics/skia/FontSkia.cpp:
(WebCore::setupPaint):
LCD text was always enabled to test the code path. With this change,
it is only enabled when instructed by the font state.
- 2:47 PM Changeset in webkit [94018] by
-
- 2 edits in trunk/LayoutTests
Fix test_expectation.txt typo.
- platform/chromium/test_expectations.txt:
- 2:36 PM Changeset in webkit [94017] by
-
- 3 edits in trunk/LayoutTests
- 2:32 PM Changeset in webkit [94016] by
-
- 3 edits5 adds in trunk
Assertion failure in RenderLayer::computeRepaintRects when scrolling
https://bugs.webkit.org/show_bug.cgi?id=67140
Reviewed by David Hyatt.
Source/WebCore:
Test: fast/repaint/scroll-fixed-layer-with-no-visible-content.html
- rendering/RenderLayer.cpp:
(WebCore::RenderLayer::computeRepaintRects): Fixed style after r93837.
(WebCore::RenderLayer::updateLayerPositionsAfterScroll): Tweaked the code
to bail early if our layer has no visible content. This avoids the ASSERT
and also makes sense as we shouldn't repaint / update empty layers.
LayoutTests:
This test checks that a fixed element with no visible content does not ASSERT and
renders properly.
- fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.txt: Added.
- fast/repaint/scroll-fixed-layer-with-no-visible-content.html: Added.
- platform/chromium-cg-mac/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: Added.
- platform/chromium-win/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: Added.
- platform/mac/fast/repaint/scroll-fixed-layer-with-no-visible-content-expected.png: Added.
- 2:12 PM Changeset in webkit [94015] by
-
- 2 edits in releases/WebKitGTK/webkit-1.4/Source/WebCore
Merging r90368
- 1:59 PM Changeset in webkit [94014] by
-
- 2 edits in releases/WebKitGTK/webkit-1.4/Source/WebKit/gtk
Merging r86118
- 1:58 PM Changeset in webkit [94013] by
-
- 2 edits in releases/WebKitGTK/webkit-1.4/Source/WebKit/gtk
Merging r86116
- 1:56 PM Changeset in webkit [94012] by
-
- 14 edits2 adds in releases/WebKitGTK/webkit-1.4/Source
Merging r86102
- 1:47 PM Changeset in webkit [94011] by
-
- 12 edits1 copy2 adds in trunk/Source/WebCore
Implement WebVTT Cue Text Parsing rules and DOM construction
https://bugs.webkit.org/show_bug.cgi?id=64132
Patch by Anna Cavender <annacc@chromium.org> on 2011-08-29
Reviewed by Adam Barth.
Tests in media/track, particularly track-webvtt-tc[022 - 028]*.
- CMakeLists.txt:
- GNUmakefile.list.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.xcodeproj/project.pbxproj:
- html/TextTrackCue.cpp:
- html/TextTrackCue.h:
- platform/track/CueParser.cpp:
- platform/track/CueParser.h:
- platform/track/WebVTTParser.cpp:
- platform/track/WebVTTParser.h:
- platform/track/WebVTTToken.h: Added.
- platform/track/WebVTTTokenizer.cpp: Added.
- platform/track/WebVTTTokenizer.h: Added.
- 1:32 PM Changeset in webkit [94010] by
-
- 3 edits in trunk/Source/WebCore
Add parsing support for extended attributes on IDL constants
https://bugs.webkit.org/show_bug.cgi?id=65046
Reviewed by Brent Fulgham.
With support for extended attributes on constants we can
replace some preprocessor lines from the IDL files with
the corresponding [Conditional=XXX] later.
Using the preprocessor causes much pain on native windows.
CodeGenerator support will be added in separate patches.
- bindings/scripts/IDLParser.pm:
- bindings/scripts/IDLStructure.pm:
- 1:18 PM Changeset in webkit [94009] by
-
- 9 edits in trunk/Source/WebCore
Cleanup: notifyFormStateChanged, formControlValueMatchesRenderer, and setFormControlValueMatchesRenderer
https://bugs.webkit.org/show_bug.cgi?id=67141
Reviewed by Eric Seidel.
No new tests since this is a refactoring.
- dom/Element.h: Removed formControlValueMatchesRenderer and setFormControlValueMatchesRenderer.
- html/HTMLInputElement.cpp: Removed notifyFormStateChanged.
- html/HTMLInputElement.h:
- html/HTMLTextAreaElement.cpp:
(WebCore::HTMLTextAreaElement::updateValue): Calls notifyFormStateChanged; modifies m_wasModifiedByUser.
(WebCore::HTMLTextAreaElement::setValueCommon): Calls notifyFormStateChanged; also renamed value to newValue
to avoid the conflict with value().
- html/HTMLTextAreaElement.h: Made m_wasModifiedByUser mutable.
- html/HTMLTextFormControlElement.cpp:
(WebCore::HTMLTextFormControlElement::notifyFormStateChanged): Extracted from notifyFormStateChanged in
HTMLInputElement.cpp and HTMLTextAreaElement.cpp.
- html/HTMLTextFormControlElement.h:
- rendering/RenderTextControl.cpp:
(WebCore::RenderTextControl::setInnerTextValue): Calls setFormControlValueMatchesRenderer.
- 1:16 PM Changeset in webkit [94008] by
-
- 2 edits in trunk/Tools
Small fix in chromium port of new-run-webkit-tests.
https://bugs.webkit.org/show_bug.cgi?id=67078
Patch by Shawn Singh <shawnsingh@chromium.org> on 2011-08-29
Reviewed by Dirk Pranke.
- Scripts/webkitpy/layout_tests/port/chromium.py:
- 1:09 PM Changeset in webkit [94007] by
-
- 28 edits in trunk
Unreviewed, rolling out r93987, r93992, r93995, r93998, and
r93999.
http://trac.webkit.org/changeset/93987
http://trac.webkit.org/changeset/93992
http://trac.webkit.org/changeset/93995
http://trac.webkit.org/changeset/93998
http://trac.webkit.org/changeset/93999
https://bugs.webkit.org/show_bug.cgi?id=67147
Many failing tests (Requested by ap on #webkit).
Patch by Sheriff Bot <webkit.review.bot@gmail.com> on 2011-08-29
Source/WebCore:
- WebCore.exp.in:
- platform/mac/CookieJar.mm:
(WebCore::cookies):
(WebCore::cookieRequestHeaderFieldValue):
(WebCore::setCookies):
(WebCore::cookiesEnabled):
(WebCore::getRawCookies):
(WebCore::deleteCookie):
- platform/network/CookieStorage.h:
- platform/network/ResourceHandle.cpp:
(WebCore::privateStorageSession):
(WebCore::privateBrowsingStorageSessionIdentifierBase):
(WebCore::ResourceHandle::setPrivateBrowsingEnabled):
(WebCore::ResourceHandle::privateBrowsingStorageSession):
(WebCore::ResourceHandle::setPrivateBrowsingStorageSessionIdentifierBase):
- platform/network/ResourceHandle.h:
- platform/network/cf/CookieJarCFNet.cpp:
(WebCore::setCookies):
(WebCore::cookies):
(WebCore::cookieRequestHeaderFieldValue):
(WebCore::cookiesEnabled):
(WebCore::getRawCookies):
(WebCore::deleteCookie):
(WebCore::getHostnamesWithCookies):
(WebCore::deleteCookiesForHostname):
(WebCore::deleteAllCookies):
- platform/network/cf/CookieStorageCFNet.cpp:
(WebCore::privateBrowsingCookieStorage):
(WebCore::defaultSessionCookieStorage):
(WebCore::defaultCookieStorage):
(WebCore::currentCookieStorage):
(WebCore::setCurrentCookieStorage):
(WebCore::setCookieStoragePrivateBrowsingEnabled):
(WebCore::startObservingCookieChanges):
(WebCore::stopObservingCookieChanges):
- platform/network/cf/CookieStorageCFNet.h:
- platform/network/cf/ResourceHandleCFNet.cpp:
(WebCore::makeFinalRequest):
(WebCore::ResourceHandle::createPrivateBrowsingStorageSession):
(WebCore::ResourceHandle::privateBrowsingStorageSessionIdentifierDefaultBase):
(WebCore::ResourceHandle::currentStorageSession):
(WebCore::defaultCFURLStorageSession):
(WebCore::ResourceHandle::setDefaultStorageSession):
(WebCore::ResourceHandle::defaultStorageSession):
- platform/network/mac/CookieStorageMac.mm:
(WebCore::setCookieStoragePrivateBrowsingEnabled):
- platform/network/mac/ResourceHandleMac.mm:
(WebCore::shouldRelaxThirdPartyCookiePolicy):
(WebCore::ResourceHandle::createPrivateBrowsingStorageSession):
Source/WebKit/mac:
- WebView/WebPreferences.mm:
(+[WebPreferences initialize]):
- WebView/WebPreferencesPrivate.h:
Source/WebKit/win:
- WebCookieManagerCFNet.cpp:
(WebCookieManager::cookieStorage):
(WebCookieManager::setCookieStorage):
- WebView.cpp:
(updateSharedSettingsFromPreferencesIfNeeded):
Source/WebKit2:
- WebProcess/Cookies/cf/WebCookieManagerCFNet.cpp:
(WebKit::WebCookieManager::platformSetHTTPCookieAcceptPolicy):
(WebKit::WebCookieManager::platformGetHTTPCookieAcceptPolicy):
- WebProcess/InjectedBundle/API/c/WKBundle.cpp:
- WebProcess/InjectedBundle/API/c/WKBundlePrivate.h:
- WebProcess/InjectedBundle/InjectedBundle.cpp:
- WebProcess/InjectedBundle/InjectedBundle.h:
- WebProcess/win/WebProcessWin.cpp:
(WebKit::WebProcess::platformInitializeWebProcess):
Tools:
- DumpRenderTree/mac/DumpRenderTree.mm:
(setDefaultsToConsistentValuesForTesting):
- WebKitTestRunner/InjectedBundle/InjectedBundle.cpp:
(WTR::InjectedBundle::beginTesting):
- 1:06 PM Changeset in webkit [94006] by
-
- 3 edits2 adds in trunk
As per HTML specification, default font style of dfn tag should be italic.
https://bugs.webkit.org/show_bug.cgi?id=56670
Patch by Nayan Kumar K <nayankk@motorola.com> on 2011-08-29
Reviewed by Adam Barth.
Source/WebCore:
Test: fast/css/dfn-default-font-style.html
- css/html.css:
(i, cite, em, var, address, dfn):
LayoutTests:
- fast/css/dfn-default-font-style-expected.txt: Added.
- fast/css/dfn-default-font-style.html: Added.
- 1:03 PM Changeset in webkit [94005] by
-
- 2 edits in trunk/Source/WebCore
Consider Conditional attribute in CodeGeneratorJS' JSValueToNative and NativeToJSValue function
https://bugs.webkit.org/show_bug.cgi?id=65040
Reviewed by Brent Fulgham.
JSValueToNative and NativeToJSValue add additional include statements
to the implementation and need to handle the Conditional attribute from
the IDL file. The Conditional attribute adds appropriate #if ENABLE()
lines for the preprocessor around the include statements to remove
some unneeded build dependencies.
- bindings/scripts/CodeGeneratorJS.pm:
- 12:35 PM Changeset in webkit [94004] by
-
- 3 edits in trunk/Source/WebKit/chromium
[Chromium] Add ability to do static SerializedScriptValue deserialization
https://bugs.webkit.org/show_bug.cgi?id=66877
Patch by Greg Billock <gbillock@google.com> on 2011-08-29
Reviewed by Darin Fisher.
- public/WebSerializedScriptValue.h:
- src/WebSerializedScriptValue.cpp:
(WebKit::WebSerializedScriptValue::deserialize):
(WebKit::WebSerializedScriptValue::serialize):
- 12:26 PM Changeset in webkit [94003] by
-
- 8 edits in trunk/Source/WebCore
Plumb ResourceLoaderOptions out to CachedResourceLoader::requestResource().
This will be needed in order for DocumentThreadableLoader to become a CachedResourceClient.
https://bugs.webkit.org/show_bug.cgi?id=66018
Reviewed by Antti Koivisto.
No new tests, refactor only.
- loader/cache/CachedImage.cpp:
(WebCore::CachedImage::load):
- loader/cache/CachedResource.cpp:
(WebCore::CachedResource::CachedResource):
(WebCore::CachedResource::load):
- loader/cache/CachedResource.h:
(WebCore::CachedResource::load):
(WebCore::CachedResource::setResourceLoaderOptions):
(WebCore::CachedResource::sendResourceLoadCallbacks):
- loader/cache/CachedResourceLoader.cpp:
(WebCore::CachedResourceLoader::requestUserCSSStyleSheet):
(WebCore::CachedResourceLoader::requestResource):
(WebCore::CachedResourceLoader::loadResource):
- loader/cache/CachedResourceLoader.h:
- loader/cache/CachedResourceRequest.cpp:
(WebCore::CachedResourceRequest::load):
- loader/cache/CachedResourceRequest.h:
- 12:23 PM Changeset in webkit [94002] by
-
- 4 edits2 adds in trunk
Source/WebCore: Fix failures when FFT size is changed.
https://bugs.webkit.org/show_bug.cgi?id=66916
Patch by Chris Palmer <palmer@google.com> on 2011-08-29
Reviewed by Kenneth Russell.
Test: webaudio/fft-sizing.html
- webaudio/RealtimeAnalyser.cpp:
(WebCore::RealtimeAnalyser::setFftSize): Assert size sanity.
(WebCore::RealtimeAnalyser::doFFTAnalysis): Iterate the correct number of times over magnitudeBuffer.
- webaudio/RealtimeAnalyser.h: Put member fields in the correct order (Min before Max).
LayoutTests: Fix failures when FFT array size is changed.
https://bugs.webkit.org/show_bug.cgi?id=66916
Patch by Chris Palmer <palmer@google.com> on 2011-08-29
Reviewed by Kenneth Russell.
- webaudio/realtimeanalyser-fft-sizing-expected.txt: Added.
- webaudio/realtimeanalyser-fft-sizing.html: Added.
- 12:19 PM Changeset in webkit [94001] by
-
- 3 edits2 adds in trunk
Crash in InlineBox::deleteLine due to accessing removed
renderer.
https://bugs.webkit.org/show_bug.cgi?id=66015
Reviewed by Simon Fraser.
Source/WebCore:
Test: fast/block/line-layout/inline-box-wrapper-crash.html
- rendering/RenderBox.cpp:
(WebCore::RenderBox::positionLineBox): Make sure that the
previous inline box wrapper is destroyed properly, before
setting a new one.
LayoutTests:
- fast/block/line-layout/inline-box-wrapper-crash-expected.txt: Added.
- fast/block/line-layout/inline-box-wrapper-crash.html: Added.
- 12:19 PM Changeset in webkit [94000] by
-
- 3 edits in trunk
Reviewed by Xan Lopez.
[GTK] Build WebKit2 unconditionally
https://bugs.webkit.org/show_bug.cgi?id=62749
Build WebKit2 by default. This will make the bots build it and catch
build errors when they occur.
- GNUmakefile.am: Enable WebKit2 by default, but remove references to the WebKit2
PC file, which should not be shipped until WebKit2 is actually shipped officially.
- 12:07 PM Changeset in webkit [93999] by
-
- 4 edits in trunk/Source
Windows build fix.
WebKit/win:
- WebView.cpp: (updateSharedSettingsFromPreferencesIfNeeded): Updated for new function name and signature: currentCFHTTPCookieStorage().
WebKit2:
- WebProcess/Cookies/cf/WebCookieManagerCFNet.cpp: (WebKit::WebCookieManager::platformSetHTTPCookieAcceptPolicy): (WebKit::WebCookieManager::platformGetHTTPCookieAcceptPolicy): Updated for new function name and signature: currentCFHTTPCookieStorage().
- 11:59 AM Changeset in webkit [93998] by
-
- 2 edits in trunk/Source/WebCore
Lion build fix.
- WebCore.exp.in: We have different definitions of CFURLStorageSessionRef on different versions of Mac OS X, and need separate exports.
- 11:54 AM Changeset in webkit [93997] by
-
- 1 edit3 adds in trunk/LayoutTests
2011-08-29 Chris Marrin <cmarrin@apple.com>
Fixing LayoutTests broken by http://trac.webkit.org/changeset/93980
Unreviewed.
Add Mac specific tests to take into account new requestAnimationFrame functionality
- platform/mac/fast/dom/Window/window-properties-expected.txt: Added.
- platform/mac/fast/dom/Window/window-property-descriptors-expected.txt: Added.
- platform/mac/fast/dom/prototype-inheritance-expected.txt: Added.
- 11:53 AM Changeset in webkit [93996] by
-
- 3 edits2 adds in trunk
Implement -webkit-flex-pack for horizontal flexboxen
https://bugs.webkit.org/show_bug.cgi?id=66898
Reviewed by Ojan Vafai.
Source/WebCore:
Test: css3/flexbox/004.html
- rendering/RenderFlexibleBox.cpp:
(WebCore::RenderFlexibleBox::layoutHorizontalBlock):
(WebCore::hasPackingSpace):
(WebCore::RenderFlexibleBox::runFreeSpaceAllocationAlgorithmHorizontal):
LayoutTests:
- css3/flexbox/004-expected.txt: Added.
- css3/flexbox/004.html: Added.
- 11:46 AM Changeset in webkit [93995] by
-
- 2 edits in trunk/Source/WebCore
Windows build fix.
- platform/network/cf/CookieJarCFNet.cpp: (WebCore::setCookies): (WebCore::cookies): (WebCore::cookieRequestHeaderFieldValue): (WebCore::cookiesEnabled): (WebCore::getRawCookies): (WebCore::deleteCookie): (WebCore::getHostnamesWithCookies): (WebCore::deleteCookiesForHostname): (WebCore::deleteAllCookies): Updated for new function name and signature: currentCFHTTPCookieStorage().
- 11:46 AM Changeset in webkit [93994] by
-
- 4 edits in trunk/LayoutTests
Update tests after landing Event constructors.
Reviewed by Anders Carlsson.
- fast/dom/constructed-objects-prototypes-expected.txt:
- fast/dom/dom-constructors-expected.txt:
- fast/dom/dom-constructors.html:
- 11:45 AM Changeset in webkit [93993] by
-
- 2 edits in trunk/LayoutTests
Unreviewed gardening.
Mark test fast/canvas/setWidthResetAfterForcedRender.html as failing
after r93988.
- platform/chromium/test_expectations.txt:
- 11:34 AM Changeset in webkit [93992] by
-
- 2 edits in trunk/Source/WebCore
Mac build fix.
- platform/network/cf/CookieStorageCFNet.cpp: Move Windows specific includes into PLATFORM(WIN).
- 11:31 AM Changeset in webkit [93991] by
-
- 2 edits in trunk/Source/JavaScriptCore
Unreviewed build fix after r93990.
- wtf/HashTable.h:
- 11:24 AM Changeset in webkit [93990] by
-
- 6 edits in trunk/Source
Viewing a post on reddit.com wastes a lot of memory on event listeners.
https://bugs.webkit.org/show_bug.cgi?id=67133
Reviewed by Darin Adler.
Source/JavaScriptCore:
Add a minimum table size to the HashTraits, instead of having it hard coded.
The default value remains at 64, but can now be specialized.
- runtime/StructureTransitionTable.h:
- wtf/HashTable.h:
(WTF::HashTable::shouldShrink):
(WTF::::expand):
(WTF::::checkTableConsistencyExceptSize):
- wtf/HashTraits.h:
Source/WebCore:
Specialize the HashMap used to store registered listeners on an EventTarget
to have a minimum size of 32 (rather than the default 64.)
It's very rare for pages to register listeners for so many different events
and this cuts memory consumption in half for the common case.
As an example, for a typical post on the reddit.com front page,
this reduces memory used by ~700kB on 64-bit.
- dom/EventTarget.h:
- 11:22 AM Changeset in webkit [93989] by
-
- 2 edits in trunk/LayoutTests
Temporary suppression for new test added in r93982.
- platform/chromium/test_expectations.txt:
- 11:16 AM Changeset in webkit [93988] by
-
- 14 edits in trunk/Source/WebCore
Skia's accelerated canvas 2D implementation should use GrTexture, not DrawingBuffer
https://bugs.webkit.org/show_bug.cgi?id=67050
Reviewed by Kenneth Russell.
Covered by existing tests.
- platform/graphics/chromium/Canvas2DLayerChromium.cpp:
(WebCore::Canvas2DLayerChromium::create):
(WebCore::Canvas2DLayerChromium::Canvas2DLayerChromium):
(WebCore::Canvas2DLayerChromium::drawsContent):
Construct Canvas2DLayerChromium with a GraphicsContext3D, not a
DrawingBuffer.
(WebCore::Canvas2DLayerChromium::updateCompositorResources):
Flush the GrContext and GraphicsContext3D on compositor update.
- platform/graphics/chromium/Canvas2DLayerChromium.h:
- platform/graphics/chromium/CanvasLayerChromium.cpp:
(WebCore::CanvasLayerChromium::CanvasLayerChromium):
- platform/graphics/chromium/CanvasLayerChromium.h:
Put textureId() back on the base class (CanvasLayerChromium) and
de-virtualize it.
(WebCore::CanvasLayerChromium::textureId):
(WebCore::CanvasLayerChromium::setTextureId):
Move m_textureId from WebGLLayerChromium, since canvas2D now uses
it too. Provide getters and setters.
- platform/graphics/chromium/DrawingBufferChromium.cpp:
(WebCore::DrawingBuffer::DrawingBuffer):
(WebCore::DrawingBuffer::~DrawingBuffer):
Remove all Canvas2D-related calls from DrawingBuffer.
(WebCore::DrawingBuffer::publishToPlatformLayer):
Remove GrContext::flush call, since it's now handled by the platform layer.
(WebCore::DrawingBuffer::platformLayer):
Return NULL for now (WebGL may rescussitate this later).
- platform/graphics/chromium/GraphicsLayerChromium.cpp:
Remove a useless #include.
- platform/graphics/chromium/ImageBufferDataSkia.h:
Add ownership of the Canvas2DLayerChromium.
- platform/graphics/chromium/WebGLLayerChromium.cpp:
(WebCore::WebGLLayerChromium::WebGLLayerChromium):
- platform/graphics/chromium/WebGLLayerChromium.h:
Remove all texture ID stuff (now on base class).
- platform/graphics/gpu/DrawingBuffer.h:
Remove Canvas2DLayerChromium and all Ganesh datatypes from
DrawingBuffer, since it's no longer used by canvas2D.
- platform/graphics/skia/ImageBufferSkia.cpp:
(WebCore::ImageBuffer::ImageBuffer):
On accelerated ImageBuffer creation, create a GrTexture instead of a
DrawingBuffer. If all is cool, create and set the SkGpuDevice here,
and create a Canvas2DLayerChromium platform layer.
(WebCore::ImageBuffer::platformLayer):
- platform/graphics/skia/PlatformContextSkia.cpp:
(WebCore::PlatformContextSkia::setGraphicsContext3D):
- platform/graphics/skia/PlatformContextSkia.h:
Remove all GrContext creation and DrawingBuffer "scraping" from
PlatformContextSkia::setGraphicsContext3D(). This is handled in
the ImageBuffer constructor instead.
- 11:15 AM Changeset in webkit [93987] by
-
- 25 edits in trunk
DumpRenderTree should begin each test with an empty cookie store
https://bugs.webkit.org/show_bug.cgi?id=63545
<rdar://problem/5666907>
Reviewed by Darin Adler.
Use a clean CFURLStorageSession when this functionality is available.
- WebCore.exp.in: Added exports
- platform/mac/CookieJar.mm: (WebCore::cookies): (WebCore::cookieRequestHeaderFieldValue): (WebCore::setCookies): (WebCore::cookiesEnabled): (WebCore::getRawCookies): (WebCore::deleteCookie): Updated for privateBrowsingCookieStorage->currentCFHTTPCookieStorage change.
- platform/network/CookieStorage.h: Moved CFNetwork specific declarations to CookieStorageCFNet.h.
- platform/network/ResourceHandle.cpp: Moved CFNetwork specific code to ResourceHandleCFNet.cpp. This file contains cross platform functionality, and we no longer need to put code in it to share it between Mac and Windows.
- platform/network/ResourceHandle.h: Expose methods to manipulate default session on Mac, too.
- platform/network/cf/CookieStorageCFNet.cpp: (WebCore::cookieStorageOverride): Make it clear that this override is only for a Windows API. (WebCore::overrideCookieStorage): Ditto. (WebCore::currentCFHTTPCookieStorage): We no longer store a cookie storage in a static variable, unless it has been overridden on Windows. We can always get it from a session. (WebCore::setCookieStoragePrivateBrowsingEnabled): There is nothing to do here - we'll just use private session's storage. Note that Mac has a separate code path for OS versions that don't support sessions.
- platform/network/cf/CookieStorageCFNet.h: Changed exposed methods for more clarity.
- platform/network/cf/ResourceHandleCFNet.cpp: (WebCore::makeFinalRequest): Updated for currentCookieStorage->currentCFHTTPCookieStorage change. (WebCore::ResourceHandle::createPrivateBrowsingStorageSession): Moved out of USE(CFNETWORK), as this function is also used with NSURLConnection when sessions are enabled. (WebCore::ResourceHandle::currentStorageSession): Ditto. Removed an #if since default session is now supported on Mac, too. (WebCore::defaultCFURLStorageSession): Moved out of USE(CFNETWORK). (WebCore::ResourceHandle::setDefaultStorageSession): Moved out of USE(CFNETWORK). No longer adopt the session, because nothing in method name says that it will steal a reference from the caller. (WebCore::ResourceHandle::defaultStorageSession): Moved out of USE(CFNETWORK). (WebCore::privateStorageSession): Moved from ResourceHandle.cpp. (WebCore::privateBrowsingStorageSessionIdentifierBase): Moved from ResourceHandle.cpp. (WebCore::ResourceHandle::setPrivateBrowsingEnabled): Moved from ResourceHandle.cpp. (WebCore::ResourceHandle::privateBrowsingStorageSession): Moved from ResourceHandle.cpp. (WebCore::ResourceHandle::setPrivateBrowsingStorageSessionIdentifierBase): Moved from ResourceHandle.cpp. (WebCore::ResourceHandle::privateBrowsingStorageSessionIdentifierDefaultBase): Moved from ResourceHandle.cpp.
- platform/network/mac/CookieStorageMac.mm: (WebCore::setCookieStoragePrivateBrowsingEnabled): We no longer store a reference to cookie storage in a static variable, so nothing to do here. On older OS versiosn, we still need to enable legacy private browsing mode.
- platform/network/mac/ResourceHandleMac.mm: (WebCore::shouldRelaxThirdPartyCookiePolicy): Updated to use the new currentCFHTTPCookieStorage function.
- 10:57 AM Changeset in webkit [93986] by
-
- 12 edits in trunk
postMessage raises INVALID_STATE_ERR instead of DATA_CLONE_ERR in many cases.
https://bugs.webkit.org/show_bug.cgi?id=66713
Reviewed by Dmitry Titov.
Source/WebCore:
See http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#posting-messages for postMessage
- bindings/js/JSMessagePortCustom.cpp:
(WebCore::fillMessagePortArray):
- bindings/v8/custom/V8MessagePortCustom.cpp:
(WebCore::getMessagePortArray):
- dom/MessagePort.cpp:
(WebCore::MessagePort::postMessage):
(WebCore::MessagePort::disentanglePorts):
LayoutTests:
- fast/events/message-port-clone-expected.txt: Output changed from INVALID_STATE_ERR to DATA_CLONE_ERR.
- fast/events/message-port-multi-expected.txt: Ditto.
- fast/workers/worker-context-multi-port-expected.txt: Ditto.
- fast/workers/worker-multi-port-expected.txt: Ditto.
- platform/chromium-win/fast/events/message-port-multi-expected.txt: Ditto.
- platform/chromium-win/fast/workers/worker-context-multi-port-expected.txt: Ditto.
- platform/chromium-win/fast/workers/worker-multi-port-expected.txt: Ditto.
- 10:37 AM Changeset in webkit [93985] by
-
- 1 edit2 copies in branches/chromium/835
Merge 93802
BUG=91973
Review URL: http://codereview.chromium.org/7797001
- 10:31 AM Changeset in webkit [93984] by
-
- 1 edit2 adds in trunk/LayoutTests
Assertion failure in WebCore::RenderFlow::rightmostPosition
https://bugs.webkit.org/show_bug.cgi?id=12085
Reviewed by Alexey Proskuryakov.
The bug got solved. Landed the test to avoid regressing.
- fast/css/assert-marquee-not-last-element-expected.txt: Added.
- fast/css/assert-marquee-not-last-element.html: Added.
- 10:30 AM Changeset in webkit [93983] by
-
- 1 edit2 adds in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, rebaseline inspector/styles/styles-computed-trace.html in chromium.
- platform/chromium-win/inspector/styles/styles-computed-trace-expected.txt: Added.
- 10:14 AM Changeset in webkit [93982] by
-
- 4 edits2 adds in trunk
canvas arc() missing line to start of arc if swing is zero
https://bugs.webkit.org/show_bug.cgi?id=55696
Source/WebCore:
Patch by Tom Zakrajsek <tomz@codeaurora.org> on 2011-08-29
Reviewed by Andreas Kling.
Test: fast/canvas/canvas-arc-zero-lineto.html
- html/canvas/CanvasRenderingContext2D.cpp:
(WebCore::CanvasRenderingContext2D::arc):
LayoutTests:
LayoutTests/canvas/philip/tests/2d.path.stroke.prune.arc.html misinterprets pruning requirement
https://bugs.webkit.org/show_bug.cgi?id=66832
Patch by Tom Zakrajsek <tomz@codeaurora.org> on 2011-08-29
Reviewed by Andreas Kling.
Update to 2d.path.stroke.prune.arc.html was reviewed by Philip Taylor and will be part of the
next update to http://philip.html5.org/tests/canvas/suite/tests/2d.path.stroke.prune.arc.html
- canvas/philip/tests/2d.path.stroke.prune.arc.html:
- fast/canvas/canvas-arc-zero-lineto-expected.txt: Added.
- fast/canvas/canvas-arc-zero-lineto.html: Added.
- 10:12 AM Changeset in webkit [93981] by
-
- 2 edits in trunk/Source/WebKit2
2011-08-29 Chris Marrin <cmarrin@apple.com>
Fixed a build problem caused by http://trac.webkit.org/changeset/93980
Unreviewed.
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
- 9:38 AM Changeset in webkit [93980] by
-
- 44 edits1 add in trunk
[mac] requestAnimationFrame support for mac port
https://bugs.webkit.org/show_bug.cgi?id=59146
Reviewed by Simon Fraser.
Source/WebCore:
Enable REQUEST_ANIMATION_FRAME logic and add ScriptedAnimationController
to build. Added JavaScript support for Mac, too.
- CodeGenerators.pri:
- Configurations/FeatureDefines.xcconfig:
- DerivedSources.make:
- WebCore.exp.in:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSRequestAnimationFrameCallbackCustom.cpp: Added.
(WebCore::JSRequestAnimationFrameCallback::handleEvent):
- bindings/scripts/CodeGeneratorJS.pm:
(AddIncludesForType):
- dom/RequestAnimationFrameCallback.idl:
Source/WebKit/mac:
Implement requestAnimationFrame for WebKit. Add a
CFRunLoopObserver to WebView, which runs just before
the syncCompositingState RLO and calls into the
ScriptedAnimationController if scheduleAnimation() has
been called.
- Configurations/FeatureDefines.xcconfig:
- WebCoreSupport/WebChromeClient.h:
- WebCoreSupport/WebChromeClient.mm:
(WebChromeClient::scheduleAnimation):
- WebView/WebView.mm:
(-[WebView _close]):
(-[WebView _unscheduleAnimation]):
(-[WebView _scheduleCompositingLayerSync]):
(requestAnimationFrameRunLoopObserverCallback):
(-[WebView _scheduleAnimation]):
- WebView/WebViewData.h:
- WebView/WebViewInternal.h:
Source/WebKit2:
Implement requestAnimationFrame for WebKit2. Add a
CFRunLoopObserver to WebPage, which runs just before
the syncCompositingState RLO and calls into the
ScriptedAnimationController if scheduleAnimation() has
been called.
- Configurations/FeatureDefines.xcconfig:
- WebProcess/WebCoreSupport/WebChromeClient.cpp:
(WebKit::WebChromeClient::scheduleAnimation):
- WebProcess/WebCoreSupport/WebChromeClient.h:
- WebProcess/WebPage/WebPage.cpp:
(WebKit::WebPage::WebPage):
(WebKit::WebPage::~WebPage):
- WebProcess/WebPage/WebPage.h:
- WebProcess/WebPage/mac/WebPageMac.mm:
(WebKit::WebPage::requestAnimationFrameRunLoopObserverCallback):
(WebKit::WebPage::scheduleAnimation):
(WebKit::WebPage::unscheduleAnimation):
- WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.cpp:
- WebProcess/WebPage/ca/mac/LayerTreeHostCAMac.h:
Tools:
Add support for request-animation-callback flag
- Scripts/build-webkit:
LayoutTests:
Enable requestAnimationFrame tests for Mac. Tests were also
modified to work on Mac. Before the tests would assume the
requestAnimationFrame callbacks would be called by calling
LayoutTestController.display(). This is not a valid assumption
for Mac, since it skips display() if nothing was dirty.
Tests were changed to use timeouts to wait for callbacks and
ensure they get called. Also added more positive indications
that test failed or succeeded, rather than relying on the lack
of an error message to indicate success.
- fast/animation/request-animation-frame-cancel-expected.txt:
- fast/animation/request-animation-frame-cancel.html:
- fast/animation/request-animation-frame-cancel2-expected.txt:
- fast/animation/request-animation-frame-cancel2.html:
- fast/animation/request-animation-frame-display.html:
- fast/animation/request-animation-frame-during-modal-expected.txt:
- fast/animation/request-animation-frame-during-modal.html:
- fast/animation/request-animation-frame-timestamps.html:
- fast/animation/request-animation-frame-within-callback.html:
- fast/animation/request-animation-frame.html:
- fast/animation/script-tests/request-animation-frame-cancel.js:
(window):
(if):
- fast/animation/script-tests/request-animation-frame-cancel2.js:
(if):
- fast/animation/script-tests/request-animation-frame-display.js:
(if):
- fast/animation/script-tests/request-animation-frame-timestamps.js:
(var):
- fast/animation/script-tests/request-animation-frame-within-callback.js:
- fast/animation/script-tests/request-animation-frame.js:
(if):
- platform/mac/Skipped:
- 9:07 AM Changeset in webkit [93979] by
-
- 2 edits in trunk/Source/WebKit2
[Qt] NPAPI support doesn't honor the ENABLE_NETSCAPE_PLUGIN_API define in WebKit2
https://bugs.webkit.org/show_bug.cgi?id=67123
We could simply use the defines already in place for this.
Patch by Pierre Rossi <pierre.rossi@gmail.com> on 2011-08-29
Reviewed by Andreas Kling.
- WebKit2.pro:
- 8:15 AM Changeset in webkit [93978] by
-
- 6 edits in trunk
Web Inspector: <button hidden>..</button> has a different computed "display" value than "none"
https://bugs.webkit.org/show_bug.cgi?id=67124
Source/WebCore:
Attribute styles have a higher priority than user agent styles and thus should be rendered above them.
Reviewed by Yury Semikhatsky.
- inspector/front-end/StylesSidebarPane.js:
(WebInspector.StylesSidebarPane.prototype._rebuildStyleRules):
(WebInspector.StylesSidebarPane.prototype._rebuildStyleRules.get continue):
LayoutTests:
Reviewed by Yury Semikhatsky.
- inspector/elements/elements-panel-styles-expected.txt:
- inspector/styles/styles-computed-trace-expected.txt:
- inspector/styles/styles-computed-trace.html:
- 8:14 AM Changeset in webkit [93977] by
-
- 7 edits in trunk
Web Inspector: rename sourceFile to (raw|ui)SourceCode in DebuggerPresentationModel.
https://bugs.webkit.org/show_bug.cgi?id=66769
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/DebuggerPresentationModel.js:
(WebInspector.DebuggerPresentationModel):
(WebInspector.DebuggerPresentationModel.prototype.uiSourceCode):
(WebInspector.DebuggerPresentationModel.prototype._scriptLocationToUILocation.didCreateSourceMapping):
(WebInspector.DebuggerPresentationModel.prototype._scriptLocationToUILocation):
(WebInspector.DebuggerPresentationModel.prototype._uiLocationToScriptLocation.didCreateSourceMapping):
(WebInspector.DebuggerPresentationModel.prototype._uiLocationToScriptLocation):
(WebInspector.DebuggerPresentationModel.prototype.linkifyLocation.updateAnchor.didGetLocation):
(WebInspector.DebuggerPresentationModel.prototype.linkifyLocation.updateAnchor):
(WebInspector.DebuggerPresentationModel.prototype.linkifyLocation):
(WebInspector.DebuggerPresentationModel.prototype._addScript.didCreateSourceMapping):
(WebInspector.DebuggerPresentationModel.prototype._addScript):
(WebInspector.DebuggerPresentationModel.prototype._uiSourceCodeReplaced):
(WebInspector.DebuggerPresentationModel.prototype.canEditScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource.didEditScriptSource):
(WebInspector.DebuggerPresentationModel.prototype.setScriptSource):
(WebInspector.DebuggerPresentationModel.prototype._updateBreakpointsAfterLiveEdit):
(WebInspector.DebuggerPresentationModel.prototype.setFormatSourceFiles):
(WebInspector.DebuggerPresentationModel.prototype._addConsoleMessage.didGetUILocation):
(WebInspector.DebuggerPresentationModel.prototype._addConsoleMessage):
(WebInspector.DebuggerPresentationModel.prototype._consoleCleared):
(WebInspector.DebuggerPresentationModel.prototype.continueToLine):
(WebInspector.DebuggerPresentationModel.prototype.breakpointsForSourceFileId):
(WebInspector.DebuggerPresentationModel.prototype.setBreakpoint):
(WebInspector.DebuggerPresentationModel.prototype.setBreakpointEnabled):
(WebInspector.DebuggerPresentationModel.prototype.updateBreakpoint):
(WebInspector.DebuggerPresentationModel.prototype.removeBreakpoint):
(WebInspector.DebuggerPresentationModel.prototype.findBreakpoint):
(WebInspector.DebuggerPresentationModel.prototype._breakpointAdded):
(WebInspector.DebuggerPresentationModel.prototype._breakpointRemoved):
(WebInspector.DebuggerPresentationModel.prototype._debuggerPaused):
(WebInspector.DebuggerPresentationModel.prototype._rawSourceCodeForScript):
(WebInspector.DebuggerPresentationModel.prototype._scriptForRawSourceCode):
(WebInspector.DebuggerPresentationModel.prototype._createRawSourceCodeId):
(WebInspector.DebuggerPresentationModel.prototype._debuggerReset):
(WebInspector.PresentationBreakpoint):
(WebInspector.PresenationCallFrame.prototype.sourceLine.didGetUILocation):
(WebInspector.PresenationCallFrame.prototype.sourceLine):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype.canSetContent):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype.setContent):
(WebInspector.DebuggerPresentationModelResourceBinding.prototype._setContentWithInitialContent):
- inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel.prototype.canShowAnchorLocation):
(WebInspector.ScriptsPanel.prototype._createSourceFrame):
(WebInspector.ScriptsPanel.prototype._sourceFrameLoaded):
(WebInspector.ScriptsPanel.prototype._callFrameSelected.didGetSourceLocation):
(WebInspector.ScriptsPanel.prototype._callFrameSelected):
(WebInspector.SourceFrameDelegateForScriptsPanel.prototype.requestContent):
(WebInspector.SourceFrameDelegateForScriptsPanel.prototype.suggestedFileName):
- inspector/front-end/SourceFile.js:
(WebInspector.RawSourceCode.prototype.rawLocationToUILocation):
(WebInspector.UILocation):
LayoutTests:
- inspector/debugger/scripts-panel.html:
- inspector/debugger/source-file.html:
- 7:55 AM Changeset in webkit [93976] by
-
- 2 edits in trunk/LayoutTests
[Qt] The square-button-appearance test is wrong
https://bugs.webkit.org/show_bug.cgi?id=67128
Unreviewed skip until square-button fix on qt-arm.
- platform/qt-arm/Skipped:
- 7:14 AM Changeset in webkit [93975] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Zsolt Fehér <feherzs@inf.u-szeged.hu>
Unreviewed Qt gardening.
- platform/qt/Skipped:
- 7:11 AM Changeset in webkit [93974] by
-
- 3 edits in trunk/Source/WebCore
Web Inspector: cached permanent redirects don't show redirect code and text in Network panel.
https://bugs.webkit.org/show_bug.cgi?id=67126
Reviewed by Yury Semikhatsky.
- inspector/InspectorResourceAgent.cpp:
(WebCore::buildObjectForResourceResponse):
- inspector/front-end/NetworkPanel.js:
(WebInspector.NetworkDataGridNode.prototype._refreshStatusCell):
- 5:34 AM Changeset in webkit [93973] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, update chromium test expectations.
- platform/chromium/test_expectations.txt:
- 5:19 AM Changeset in webkit [93972] by
-
- 5 edits in trunk
Web Inspector: extract FormattedContentProvider from RawSourceCode.
https://bugs.webkit.org/show_bug.cgi?id=66938
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/SourceFile.js:
(WebInspector.RawSourceCode.prototype._setContentProvider):
(WebInspector.RawSourceCode.prototype._loadResourceContent):
(WebInspector.RawSourceCode.prototype._loadScriptContent):
(WebInspector.RawSourceCode.prototype._loadAndConcatenateScriptsContent):
(WebInspector.RawSourceCode.prototype._didRequestContent):
(WebInspector.FormattedContentProvider):
(WebInspector.FormattedContentProvider.prototype.requestContent.didRequestContent.didFormatContent):
(WebInspector.FormattedContentProvider.prototype.requestContent):
LayoutTests:
- inspector/debugger/content-providers-expected.txt:
- inspector/debugger/content-providers.html:
- 5:03 AM Changeset in webkit [93971] by
-
- 2 edits1 delete in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, mark fast/dom/dom-constructors.html as TEXT in chromium.
- platform/chromium/fast/dom/dom-constructors-expected.txt: Removed.
- platform/chromium/test_expectations.txt:
- 4:45 AM Changeset in webkit [93970] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, fix event-constructors.html test.
https://bugs.webkit.org/show_bug.cgi?id=63878
- fast/events/constructors/event-constructors.html:
- 4:36 AM Changeset in webkit [93969] by
-
- 4 edits in trunk
Web Inspector: link UISourceCode to RawSourceCode.
https://bugs.webkit.org/show_bug.cgi?id=66944
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/UISourceCode.js:
(WebInspector.UISourceCode):
(WebInspector.UISourceCode.prototype.get rawSourceCode):
LayoutTests:
- inspector/debugger/ui-source-code.html:
- 4:19 AM Changeset in webkit [93968] by
-
- 2 edits in trunk/LayoutTests
[Qt] Skip failing and flaky results after r93937
https://bugs.webkit.org/show_bug.cgi?id=67118
- platform/qt/Skipped:
- 2:55 AM Changeset in webkit [93967] by
-
- 2 edits in trunk/Source/WebKit/efl
REGRESSION(r93637) Build break because header file is missing.
https://bugs.webkit.org/show_bug.cgi?id=67113
Unreviewed build fix after r93637.
- CMakeListsEfl.txt: Add ewk_js.h in EWebKit_HEADERS.
- 2:35 AM Changeset in webkit [93966] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, mark overflow-scroll-overlap.html as flaky on chromium gpu.
- platform/chromium/test_expectations.txt:
- 2:17 AM Changeset in webkit [93965] by
-
- 1 edit1 add in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, add new chromium mac cg baseline for square-button-appearance added in r93953.
- platform/chromium-cg-mac-leopard/fast/css/square-button-appearance-expected.png: Added.
- 2:09 AM Changeset in webkit [93964] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, update chromium expectations. Mark frame-removed-during-resize.html and scrollbar-buttons.html
as crashing on win linux debug only.
- platform/chromium/test_expectations.txt:
- 2:06 AM Changeset in webkit [93963] by
-
- 5 edits in trunk
Web Inspector: remove RawSourceCode.setFormatted.
https://bugs.webkit.org/show_bug.cgi?id=66947
Reviewed by Pavel Feldman.
Source/WebCore:
- inspector/front-end/DebuggerPresentationModel.js:
- inspector/front-end/SourceFile.js:
(WebInspector.RawSourceCode):
LayoutTests:
- inspector/debugger/source-file.html:
- 1:53 AM Changeset in webkit [93962] by
-
- 3 edits2 moves in trunk
Web Inspector: Debugger.setBreakpointByUrl should return error when setting breakpoint on the same location twice.
https://bugs.webkit.org/show_bug.cgi?id=67030
Reviewed by Pavel Feldman.
Source/WebCore:
Test: inspector/debugger/set-breakpoint.html
- inspector/InspectorDebuggerAgent.cpp:
(WebCore::InspectorDebuggerAgent::setBreakpointByUrl):
LayoutTests:
- inspector/debugger/set-breakpoint-expected.txt: Renamed from LayoutTests/inspector/debugger/debugger-pause-on-breakpoint-expected.txt.
- inspector/debugger/set-breakpoint.html: Renamed from LayoutTests/inspector/debugger/debugger-pause-on-breakpoint.html.
- 1:37 AM Changeset in webkit [93961] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, fix event-constructors.html test.
https://bugs.webkit.org/show_bug.cgi?id=63878
- fast/events/constructors/event-constructors.html:
- 1:22 AM Changeset in webkit [93960] by
-
- 2 edits in trunk/Source/WebKit2
[GTK][WK2] Compilation error in WebKit2 GTK - Revision 93953
https://bugs.webkit.org/show_bug.cgi?id=67111
Patch by Vamshikrishna Yellenki <vamshi@motorola.com> on 2011-08-29
Reviewed by Martin Robinson.
WebKit2 GTK build error.
- WebProcess/WebCoreSupport/gtk/WebErrorsGtk.cpp:
Include <WebCore/ResourceError.h> explicitly to remove WebCore::ResourceError
inclusion error.
- 1:10 AM Changeset in webkit [93959] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, mark event-constructors.html as failing in chromium.
https://bugs.webkit.org/show_bug.cgi?id=66756
- platform/chromium/test_expectations.txt:
- 12:40 AM Changeset in webkit [93958] by
-
- 1 edit1 add in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, adding custom expectation for dom-constructors test in chromium
until bug 66756 is resolved.
https://bugs.webkit.org/show_bug.cgi?id=66756
- platform/chromium/fast/dom/dom-constructors-expected.txt: Added.
- 12:34 AM Changeset in webkit [93957] by
-
- 2 edits in trunk/Source/WebCore
fast/canvas/shadow-offset-*.html fail on Leopard/Snow Leopard when removing the work around for <rdar://problem/5539388>.
https://bugs.webkit.org/show_bug.cgi?id=67107
Reviewed by David Levin.
No new tests. Effectively reverting the change from https://bugs.webkit.org/show_bug.cgi?id=67052 for Leopard and SL
because it caused test regressions on Leopard and SL, but not Lion.
- platform/graphics/cg/GraphicsContextCG.cpp:
(WebCore::GraphicsContext::setPlatformShadow):
- 12:16 AM Changeset in webkit [93956] by
-
- 2 edits in trunk/LayoutTests
2011-08-29 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, mark scrollbars/scrollbar-buttons.html as crashing in chromium.
- platform/chromium/test_expectations.txt:
- 12:07 AM Changeset in webkit [93955] by
-
- 3 edits in trunk/Source/WebCore
[Qt] Unreviewed minimal-build buildfix after r93937.
- platform/qt/RenderThemeQt.cpp:
(WebCore::RenderThemeQt::paintInnerSpinButton):
- platform/qt/RenderThemeQt.h:
Patch by Zoltan Herczeg <zherczeg@webkit.org> on 2011-08-29
Aug 28, 2011:
- 11:49 PM WebKitGtkLayoutTests edited by
- (diff)
- 11:09 PM Changeset in webkit [93954] by
-
- 1 edit in branches/chromium/835/Source/WebCore/inspector/front-end/Popover.js
Merge 93868 - Web Inspector: in some cases Popover code is failing to calculate popover box position.
https://bugs.webkit.org/show_bug.cgi?id=67029
Reviewed by Yury Semikhatsky.
- inspector/front-end/Popover.js:
(WebInspector.Popover.prototype._positionElement):
TBR=loislo@chromium.org
Review URL: http://codereview.chromium.org/7778006
- 8:49 PM Changeset in webkit [93953] by
-
- 5 edits5 adds in trunk
Chromium Win: Setting square-button appearance reaches NOTREACHED
https://bugs.webkit.org/show_bug.cgi?id=66918
Reviewed by Kent Tamura.
Source/WebCore:
Test: fast/css/square-button-appearance.html
- rendering/RenderThemeChromiumWin.cpp:
(WebCore::supportsFocus): Add case for SquareButtonPart.
(WebCore::RenderThemeChromiumWin::supportsFocusRing): Add case for SquareButtonPart.
(WebCore::RenderThemeChromiumWin::getThemeData): Add case for SquareButtonPart.
LayoutTests:
- fast/css/square-button-appearance-expected.txt: Added.
- fast/css/square-button-appearance.html: Added. Test rendering of square-button appearance.
- platform/chromium-linux/fast/css/square-button-appearance-expected.png: Added.
- platform/chromium-win/fast/css/square-button-appearance-expected.png: Added.
- platform/gtk/test_expectations.txt: Added this test as expected to fail.
- platform/mac/fast/css/square-button-appearance-expected.png: Added.
- platform/qt/test_expectations.txt: Added this test as expected to fail.
- 5:26 PM Changeset in webkit [93952] by
-
- 2 edits in trunk/Source/WebCore
Fix reference counting of values in CSSSelector.
https://bugs.webkit.org/show_bug.cgi?id=66452
Reviewed by Darin Adler.
No new tests / no functionality changed.
Call deref when reassigning the value.
- css/CSSSelector.h:
(WebCore::CSSSelector::setValue):
- 4:58 PM Changeset in webkit [93951] by
-
- 12 edits5 adds in trunk
Add support for constructor syntax for Events
https://bugs.webkit.org/show_bug.cgi?id=63878
Reviewed by Oliver Hunt.
Source/WebCore:
Add basic support for Event constructors, starting with just supporting
the constructor for the base Event class and just JSC support. This lays
the infrastructure for the other events as well.
Test: fast/events/event-constructors.html
- GNUmakefile.list.am:
- UseJSC.cmake:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/js/JSBindingsAllInOne.cpp:
Add files.
- bindings/generic/EventConstructors.h: Added.
Add binding agnostic header that defines the Event initializers
using a macro based DSL.
- bindings/js/JSEventConstructors.cpp: Added.
(WebCore::convertValue):
(WebCore::tryGetProperty):
(WebCore::constructJSEventWithInitializer):
Add JSC implementation of Event initializer DSL.
- dom/Event.cpp:
(WebCore::EventInit::EventInit):
(WebCore::Event::Event):
- dom/Event.h:
(WebCore::Event::create):
Add Event initializer interface for base Event.
- dom/Event.idl:
Mark Event as having a custom constructor function.
LayoutTests:
Add basic test for Event constructors.
- fast/events/constructors/event-constructors-expected.txt: Added.
- fast/events/constructors/event-constructors.html: Added.
- 12:24 PM Changeset in webkit [93950] by
-
- 2 edits in trunk/Source/JavaScriptCore
Fix build error when compiling with MinGW-w64 by disabling JIT
on Windows 64-bit
https://bugs.webkit.org/show_bug.cgi?id=61235
Patch by Jonathan Liu <net147@gmail.com> on 2011-08-28
Reviewed by Gavin Barraclough.
The fixed mmap executable allocator for JIT on x86_64 requires
sys/mman.h which is not available on Windows.
- wtf/Platform.h:
- 12:14 PM Changeset in webkit [93949] by
-
- 3 edits in trunk/Source/WebKit2
[Qt][WK2] Unreviewed build fix.
- UIProcess/qt/QtWebPageProxy.cpp:
(QtWebPageProxy::init): Initialize the WKPageUIClient with memset
to avoid missing initializer warning. The missing initializer is the
result of using a version 0 WKPageUIClient while it has newer version (1).
We have nothing to do with the callbacks in the new version so I voted
for memset.
- WebProcess/WebCoreSupport/qt/WebErrorsQt.cpp: Include ResourceError.h.