Timeline
Oct 4, 2010:
- 11:53 PM Changeset in webkit [69086] by
-
- 2 edits in trunk/WebCore
2010-10-04 Alejandro G. Castro <alex@igalia.com>
Reviewed by Kent Tamura.
Fixed compilation problem added in commit 69082. The interface of
the function has two parameters with the same name.
- rendering/RenderBlock.h:
- 11:39 PM Changeset in webkit [69085] by
-
- 2 edits in trunk/WebKitTools
2010-10-04 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix.
r69065 broke test-webkitpy by trying to create a '/tmp-X' directory,
which can't always be done. This test uses tempfile.mkdtemp(), which
should be safe.
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- 11:36 PM Changeset in webkit [69084] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-04 Tony Gentilcore <tonyg@chromium.org>
Reviewed by Darin Fisher.
[chromium] Properly clear WebKit cache when chromium cache is cleared
https://bugs.webkit.org/show_bug.cgi?id=47119
Contributed by Ricardo Vargas.
See: http://code.google.com/p/chromium/issues/detail?id=54336
- src/WebCache.cpp: (WebKit::WebCache::clear):
- 11:22 PM Changeset in webkit [69083] by
-
- 1 edit2 adds in trunk/WebCore
2010-10-04 Chris Rogers <crogers@google.com>
Reviewed by Kenneth Russell.
Add AudioUtilities files
https://bugs.webkit.org/show_bug.cgi?id=47011
No new tests since audio API is not yet implemented.
- platform/audio/AudioUtilities.cpp: Added. (WebCore::AudioUtilities::decibelsToLinear): (WebCore::AudioUtilities::linearToDecibels): (WebCore::AudioUtilities::discreteTimeConstantForSampleRate):
- platform/audio/AudioUtilities.h: Added.
- 11:13 PM Changeset in webkit [69082] by
-
- 4 edits in trunk/WebCore
https://bugs.webkit.org/show_bug.cgi?id=47112
Reviewed by Dan Bernstein.
Convert addOverhangingFloats and addIntrudingFloats to be block-flow-aware.
Also clean up how floats are placed to use a bit instead of the magic -1 value on top().
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::layoutBlock):
(WebCore::RenderBlock::layoutBlockChild):
(WebCore::RenderBlock::insertFloatingObject):
(WebCore::RenderBlock::removeFloatingObject):
(WebCore::RenderBlock::removeFloatingObjectsBelow):
(WebCore::RenderBlock::positionNewFloats):
(WebCore::RenderBlock::markLinesDirtyInBlockRange):
(WebCore::RenderBlock::clearFloats):
(WebCore::RenderBlock::addOverhangingFloats):
(WebCore::RenderBlock::addIntrudingFloats):
- rendering/RenderBlock.h:
(WebCore::RenderBlock::FloatingObject::FloatingObject):
(WebCore::RenderBlock::FloatingObject::isPlaced):
(WebCore::RenderBlock::FloatingObject::setIsPlaced):
- rendering/RenderBlockLineLayout.cpp:
(WebCore::RenderBlock::determineStartPosition):
- 11:10 PM Changeset in webkit [69081] by
-
- 6 edits in trunk
2010-10-04 Nico Weber <thakis@chromium.org>
Reviewed by Kenneth Russell.
Fix broken C++ in PODInterval and PODIntervalTree
https://bugs.webkit.org/show_bug.cgi?id=47063
See http://clang.llvm.org/compatibility.html#dep_lookup . Since
valueToString needs to work with non-class types, it needs to be
declared before it's used. And since it needs to handle many types, it
needs to be a template function, for which clients will need to
provide specializations for the types they care about. Partial template
specialization is only supported for structs, so wrap the function in
a struct, too.
- platform/graphics/gpu/PODInterval.h: (WebCore::PODInterval::toString):
- platform/graphics/gpu/PODIntervalTree.h: (WebCore::PODIntervalTree::checkInvariantsFromNode):
- platform/graphics/gpu/PODRedBlackTree.h: (WebCore::PODRedBlackTree::dumpFromNode):
2010-10-04 Nico Weber <thakis@chromium.org>
Reviewed by Kenneth Russell.
Fix broken C++ in PODInterval and PODIntervalTree
https://bugs.webkit.org/show_bug.cgi?id=47063
Change functions to be template specializations, like it's now required
by PODIntervalTree and friends.
- tests/PODIntervalTreeTest.cpp:
- 10:56 PM Changeset in webkit [69080] by
-
- 3 edits in trunk/JavaScriptCore
2010-10-04 David Goodwin <david_goodwin@apple.com>
Reviewed by Oliver Hunt.
ARMv7 JIT should take advantage of 2-byte branches to reduce code size
https://bugs.webkit.org/show_bug.cgi?id=47007
- assembler/ARMv7Assembler.cpp:
- assembler/ARMv7Assembler.h: (JSC::ARMv7Assembler::computeJumpType): (JSC::ARMv7Assembler::link): (JSC::ARMv7Assembler::canBeJumpT2): (JSC::ARMv7Assembler::canBeJumpT4): (JSC::ARMv7Assembler::linkBX): (JSC::ARMv7Assembler::linkJumpT4): (JSC::ARMv7Assembler::linkJumpT2): (JSC::ARMv7Assembler::linkJumpAbsolute):
- 10:56 PM Changeset in webkit [69079] by
-
- 2 edits in trunk/WebKitTools
2010-10-04 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix.
Add missing "from future import with_statement" that was
breaking test-webkitpy on the Leopard bots (broke in r69040).
- Scripts/webkitpy/layout_tests/port/google_chrome.py:
- 10:43 PM Changeset in webkit [69078] by
-
- 3 edits4 adds in trunk
2010-10-04 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
Spatial Navigation: Add support for <input type="radio">
https://bugs.webkit.org/show_bug.cgi?id=46993
- fast/events/spatial-navigation/snav-radio-expected.txt: Added.
- fast/events/spatial-navigation/snav-radio-group-expected.txt: Added.
- fast/events/spatial-navigation/snav-radio-group.html: Added.
- fast/events/spatial-navigation/snav-radio.html: Added.
2010-10-04 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
Spatial Navigation: Add support for <input type="radio">
https://bugs.webkit.org/show_bug.cgi?id=46993
When using Spatial Navigation, every radio button should be focusable and
users should be able to navigate from one button to the next without moving the selection.
Tests: fast/events/spatial-navigation/snav-radio-group.html
fast/events/spatial-navigation/snav-radio.html
- html/HTMLInputElement.cpp: (WebCore::HTMLInputElement::isKeyboardFocusable): Every radio button should be keyboard focusable, if using Spatial Navigation. (WebCore::HTMLInputElement::defaultEventHandler): Disable the algorithm for selecting the next radio button within a group, if using Spatial Navigation.
- 10:32 PM Changeset in webkit [69077] by
-
- 4 edits20 adds in trunk
2010-10-04 Renata Hodovan <reni@inf.u-szeged.hu>
Reviewed by Andreas Kling.
SVGFEGaussianBlurElement doesn't support dynamic invalidation, when attributes change.
https://bugs.webkit.org/show_bug.cgi?id=47074
Adding layout tests for feGaussianBlur dynamic changes.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.png: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr-expected.txt: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr.html: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr-expected.txt: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr.html: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call-expected.txt: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call.html: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop-expected.txt: Added.
- svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop.html: Added.
- svg/dynamic-updates/script-tests/SVGFEGaussianBlurElement-dom-in-attr.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEGaussianBlurElement-dom-stdDeviation-attr.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEGaussianBlurElement-svgdom-in-prop.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEGaussianBlurElement-svgdom-stdDeviation-call.js: Added. (executeTest):
2010-10-04 Renata Hodovan <reni@inf.u-szeged.hu>
Reviewed by Andreas Kling.
SVGFEGaussianBlurElement doesn't support dynamic invalidation, when attributes change.
https://bugs.webkit.org/show_bug.cgi?id=47074
The patch also implements the simple setStdDeviation method.
Tests: svg/dynamic-updates/SVGFEGaussianBlurElement-dom-in-attr.html
svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-attr.html
svg/dynamic-updates/SVGFEGaussianBlurElement-dom-stdDeviation-call.html
svg/dynamic-updates/SVGFEGaussianBlurElement-svgdom-in-prop.html
- svg/SVGFEGaussianBlurElement.cpp: (WebCore::SVGFEGaussianBlurElement::setStdDeviation): (WebCore::SVGFEGaussianBlurElement::svgAttributeChanged):
- svg/SVGFEGaussianBlurElement.h:
- 10:31 PM Changeset in webkit [69076] by
-
- 1 edit20 adds in trunk/LayoutTests
2010-10-04 Renata Hodovan <reni@inf.u-szeged.hu>
Reviewed by Dirk Schulze.
SVGFEFloodElement doesn't support dynamic invalidation, when attributes change.
https://bugs.webkit.org/show_bug.cgi?id=47077
Adding layout tests for feFlood dynamic changes. Since the attributes are CSS attributes,
their changes are captured by the CSS support sub-system, and invalidated when needed.
Thus, no need to add a new handler for SVGFEFloodElement.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.png: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.checksum: Added.
- platform/mac/svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.png: Added.
- svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr-expected.txt: Added.
- svg/dynamic-updates/SVGFEFloodElement-dom-flood-color-attr.html: Added.
- svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr-expected.txt: Added.
- svg/dynamic-updates/SVGFEFloodElement-dom-flood-opacity-attr.html: Added.
- svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop-expected.txt: Added.
- svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-color-prop.html: Added.
- svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop-expected.txt: Added.
- svg/dynamic-updates/SVGFEFloodElement-svgdom-flood-opacity-prop.html: Added.
- svg/dynamic-updates/script-tests/SVGFEFloodElement-dom-flood-color-attr.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEFloodElement-dom-flood-opacity-attr.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEFloodElement-svgdom-flood-color-prop.js: Added. (executeTest):
- svg/dynamic-updates/script-tests/SVGFEFloodElement-svgdom-flood-opacity-prop.js: Added. (executeTest):
- 10:26 PM Changeset in webkit [69075] by
-
- 3 edits in trunk/WebKitTools
2010-10-04 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r69066.
http://trac.webkit.org/changeset/69066
https://bugs.webkit.org/show_bug.cgi?id=47163
Made NRWT reliability worse. (Requested by tkent on #webkit).
- Scripts/webkitpy/layout_tests/port/chromium.py:
- Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
- 10:18 PM Changeset in webkit [69074] by
-
- 2 edits in trunk/WebKitTools
2010-10-04 Gabor Rapcsanyi <rgabor@inf.u-szeged.hu>
Reviewed by Tony Chang.
[NRWT] Reverse the http tests to alphabetical order.
https://bugs.webkit.org/show_bug.cgi?id=47075
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- 10:14 PM Changeset in webkit [69073] by
-
- 4 edits in trunk
2010-10-04 Robert Hogan <robert@webkit.org>
Reviewed by Andreas Kling.
[Qt] Fix timeout on http/tests/navigation/post-goback2.html and postredirect-goback2.html
We need to queue back and forward navigations in the DRT from the
LayoutTestController so that maybeDump() knows about them.
Unskip:
http/tests/navigation/post-goback2.html
- platform/qt/Skipped:
2010-10-04 Robert Hogan <robert@webkit.org>
Reviewed by Andreas Kling.
[Qt] Fix timeout on http/tests/navigation/post-goback2.html and postredirect-goback2.html
We need to queue back and forward navigations in the DRT from the
LayoutTestController so that maybeDump() knows about them.
- DumpRenderTree/qt/LayoutTestControllerQt.cpp: (LayoutTestController::queueBackNavigation): (LayoutTestController::queueForwardNavigation):
- 10:06 PM Changeset in webkit [69072] by
-
- 10 edits in trunk
2010-10-04 Patrick Gansterer <paroga@paroga.com>
Reviewed by Darin Adler.
Add Base64DecodePolicy option at base64Decode()
https://bugs.webkit.org/show_bug.cgi?id=41510
- fast/dom/Window/atob-btoa-expected.txt:
- fast/dom/Window/atob-btoa.html:
- platform/mac/fast/loader/user-stylesheet-fast-path-expected.txt:
- platform/mac/fast/loader/user-stylesheet-fast-path.html: Added additional data urls tests.
2010-10-04 Patrick Gansterer <paroga@paroga.com>
Reviewed by Darin Adler.
Add Base64DecodePolicy option at base64Decode()
https://bugs.webkit.org/show_bug.cgi?id=41510
Add an option for ignoring characters in base64 data.
This is necessary for decoding data urls.
Also add an overload to decode WebCore::String directly.
- page/DOMWindow.cpp: (WebCore::DOMWindow::atob):
- page/Page.cpp: (WebCore::Page::userStyleSheetLocationChanged):
- platform/text/Base64.cpp: (WebCore::base64Encode): (WebCore::base64Decode): (WebCore::base64DecodeInternal):
- platform/text/Base64.h: (WebCore::):
- 9:58 PM Changeset in webkit [69071] by
-
- 3 edits in trunk/WebCore
2010-10-04 Ryuan Choi <bunhere@gmail.com>
Unreviewed build fix.
[WML] Build fix for r68854
https://bugs.webkit.org/show_bug.cgi?id=47043
Include HTMLParserIdioms.h.
No features added, so no new tests.
- wml/WMLAElement.cpp:
- wml/WMLImageLoader.cpp:
- 9:53 PM Changeset in webkit [69070] by
-
- 2 edits in trunk/WebCore
2010-10-04 Ryuan Choi <ryuan.choi@samsung.com>
Unreviewed build fix.
[CMAKE] Build fix for r68901
https://bugs.webkit.org/show_bug.cgi?id=47042
Move plugins/PluginPackage.cpp
No features added, so no new tests.
- CMakeLists.txt:
- 9:41 PM Changeset in webkit [69069] by
-
- 2 edits in trunk/WebCore
2010-10-04 Eric Uhrhane <ericu@chromium.org>
Reviewed by David Levin.
Hook FileEntry::createWriter to DOMFileSystem::createWriter
https://bugs.webkit.org/show_bug.cgi?id=46908
No new tests--still waiting for the first complete implementation.
- fileapi/FileEntry.cpp: (WebCore::FileEntry::createWriter):
- 9:28 PM Changeset in webkit [69068] by
-
- 3 edits4 adds in trunk
2010-10-04 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
Spatial Navigation: select element does not release focus with Spatial Navigation
https://bugs.webkit.org/show_bug.cgi?id=46896
- fast/events/spatial-navigation/snav-multiple-select-expected.txt: Added.
- fast/events/spatial-navigation/snav-multiple-select.html: Added.
- fast/events/spatial-navigation/snav-single-select-expected.txt: Added.
- fast/events/spatial-navigation/snav-single-select.html: Added.
2010-10-04 Yael Aharon <yael.aharon@nokia.com>
Reviewed by Antonio Gomes.
Spatial Navigation: select element does not release focus with Spatial Navigation
https://bugs.webkit.org/show_bug.cgi?id=46896
When using Spatial Navigation, once a select element is focused, you cannot use arrow keys
to navigate out of the select element. That is because select element currently uses the
arrow keys to change the selected element.
Change the behavior of select element so it does not change selection, if Spatial Navigation
is on.
This patch is addressing the case where Spatial Navigation is used
in a mobile device, and the flag ENABLE_NO_LISTBOX_RENDERING is on.
In the future we can add support for the case where the flag is off, and
the user needs to traverse the select element inline.
Tests: fast/events/spatial-navigation/snav-multiple-select.html
fast/events/spatial-navigation/snav-single-select.html
- dom/SelectElement.cpp: (WebCore::SelectElement::menuListDefaultEventHandler):
- 9:21 PM Changeset in webkit [69067] by
-
- 2 edits in trunk/WebKit/chromium
2010-10-04 Matt Mueller <mattm@chromium.org>
Reviewed by Darin Fisher.
When building under chromium, build libwebkit as the same type (shared
or static) as chromium. Fixes problems with multiple calls to global
initializers/finalizers in shared chromium build.
https://bugs.webkit.org/show_bug.cgi?id=46762
- WebKit.gyp:
- 9:21 PM Changeset in webkit [69066] by
-
- 3 edits in trunk/WebKitTools
2010-10-04 Tony Chang <tony@chromium.org>
Reviewed by Kent Tamura.
[chromium] fix image diffing in NRWT
https://bugs.webkit.org/show_bug.cgi?id=47128
- Scripts/webkitpy/layout_tests/port/chromium.py: Flush data to the
temp file and check the image_diff error code more carefully
- Scripts/webkitpy/layout_tests/port/chromium_unittest.py:
- 9:19 PM Changeset in webkit [69065] by
-
- 6 edits in trunk/WebKitTools
2010-10-04 Dirk Pranke <dpranke@chromium.org>
Reviewed by Adam Barth.
aroben's change in r68792 actually broke new-run-webkit-tests when
running the DRT code path. His change was intended to fix the
way we were converting windows paths to URIs when running under
Cygwin (the paths were getting one too many "/" on the front).
However, the change ended up breaking the chromium_win port, which
had slightly different logic.
This patch removes the port-specific code and adds tests to make
sure we're getting the behavior we expect. The Port object no longer
exposes a get_absolute_path() method that can be used outside of
of converting test filenames, because it's unreliable otherwise
(we don't have the right context to know which conversion is intended).
- Scripts/webkitpy/layout_tests/port/base.py:
- Scripts/webkitpy/layout_tests/port/base_unittest.py:
- Scripts/webkitpy/layout_tests/port/chromium_win.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests.py:
- Scripts/webkitpy/layout_tests/run_webkit_tests_unittest.py:
- 9:16 PM Changeset in webkit [69064] by
-
- 3 edits in trunk/WebCore
2010-10-04 Sriram Neelakandan <sriram.neelakandan@gmail.com>
Reviewed by Andreas Kling.
[Qt] QNetworkReplyHandler forces buffered output for FormData with files
https://bugs.webkit.org/show_bug.cgi?id=46259
No new tests. Existing form submit tests should cover this change.
- platform/network/qt/QNetworkReplyHandler.cpp: (WebCore::FormDataIODevice::FormDataIODevice): (WebCore::FormDataIODevice::computeSize): Add computeSize() for computing form device size (WebCore::QNetworkReplyHandler::start): Call computeSize(), fill Content-Length and prevent UploadData buffering
- platform/network/qt/QNetworkReplyHandler.h: (WebCore::FormDataIODevice::getFormDataSize):
- 9:03 PM Changeset in webkit [69063] by
-
- 3 edits2 adds in trunk
2010-10-04 Chang Shu <chang.shu@nokia.com>
Reviewed by Antonio Gomes.
Fixed the typo that searches the wrong direction in the no-focus-node case.
As a result, after page is loaded, pressing key "arrowdown" will bring the
focus to the 1st element instead of the last element.
https://bugs.webkit.org/show_bug.cgi?id=46901
- fast/events/spatial-navigation/snav-1st-stop-expected.txt: Added.
- fast/events/spatial-navigation/snav-1st-stop.html: Added.
2010-10-04 Chang Shu <chang.shu@nokia.com>
Reviewed by Antonio Gomes.
Fixed the typo that searches the wrong direction in the no-focus-node case.
As a result, after page is loaded, pressing key "arrowdown" will bring the
focus to the 1st element instead of the last element.
https://bugs.webkit.org/show_bug.cgi?id=46901
Test: fast/events/spatial-navigation/snav-1st-stop.html
- page/FocusController.cpp: (WebCore::FocusController::advanceFocusDirectionally):
- 8:47 PM Changeset in webkit [69062] by
-
- 3 edits in trunk/WebCore
2010-10-04 Simon Fraser <Simon Fraser>
No review.
Touch cf/SocketStreamHandle.h and add an #ifdef to qt/SocketStreamHandle.h
to fail at compile time if Mac includes that header.
- platform/network/cf/SocketStreamHandle.h:
- platform/network/qt/SocketStreamHandle.h:
- 8:43 PM Changeset in webkit [69061] by
-
- 5 edits in trunk/WebKit/efl
2010-10-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Kenneth Rohde Christiansen.
[EFL] Viewport data change notification by Bug 46755
https://bugs.webkit.org/show_bug.cgi?id=46772
Bug 46755 changes virtual function regarding to viewport metatag. Thus, EFL port
should change the function as well in order to get viewport arguments.
And, setInitLayoutCompleted / getInitLayoutCompleted() are removed because these functions
aren't needed anymore.
- WebCoreSupport/ChromeClientEfl.cpp: (WebCore::ChromeClientEfl::dispatchViewportDataDidChange):
- WebCoreSupport/ChromeClientEfl.h:
- WebCoreSupport/FrameLoaderClientEfl.cpp: (WebCore::FrameLoaderClientEfl::FrameLoaderClientEfl): (WebCore::FrameLoaderClientEfl::dispatchDidCommitLoad): (WebCore::FrameLoaderClientEfl::dispatchDidFirstLayout):
- WebCoreSupport/FrameLoaderClientEfl.h:
- 8:37 PM Changeset in webkit [69060] by
-
- 4 edits in trunk
2010-10-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Antonio Gomes.
[EFL] Use fast malloc for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=46691
Use fast malloc for WebKit EFL because the fast malloc is to allocate
memory quickly.
- wtf/CMakeListsEfl.txt:
2010-10-04 Gyuyoung Kim <gyuyoung.kim@samsung.com>
Reviewed by Antonio Gomes.
[EFL] Use fast malloc for WebKit EFL
https://bugs.webkit.org/show_bug.cgi?id=46691
Use fast malloc for WebKit EFL because the fast malloc is to allocate
memory quickly.
- cmake/OptionsEfl.cmake:
- 8:03 PM Changeset in webkit [69059] by
-
- 2 edits in trunk/LayoutTests
2010-10-04 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
- platform/chromium/test_expectations.txt: Remove a duplicated entry.
- 7:41 PM Changeset in webkit [69058] by
-
- 2 edits in trunk/LayoutTests
2010-10-04 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
- platform/chromium/test_expectations.txt: fail-on-update-2.html is TIMEOUT on Windows.
- 6:23 PM Changeset in webkit [69057] by
-
- 2 edits in trunk/WebCore
2010-10-04 Simon Fraser <Simon Fraser>
Reviewed by Darin Adler.
https://bugs.webkit.org/show_bug.cgi?id=47136
WebSocket tests are crashing
The Mac xcode project was finding qt/SocketStreamHandle.h because of
an inadvertent change in r68951. Thus the header and implementation didn't match,
and memory corruption ensued.
- WebCore.xcodeproj/project.pbxproj:
- 6:04 PM Changeset in webkit [69056] by
-
- 3 edits in trunk/WebKit2
Fix the build when sandboxing is enabled.
Reviewed by Sam Weinig.
- UIProcess/WebContext.cpp:
(WebKit::WebContext::ensureWebProcess):
- UIProcess/WebProcessProxy.cpp:
- 5:58 PM Changeset in webkit [69055] by
-
- 2 edits in trunk/WebKit/chromium
Build fix. Not reviewed.
Remove a function declaration.
- src/ChromeClientImpl.h:
- 5:30 PM Changeset in webkit [69054] by
-
- 2 edits in trunk/WebKit/chromium
Build fix. Not reviewed.
https://bugs.webkit.org/show_bug.cgi?id=47135
Add a stub method to make the build happy.
- src/ApplicationCacheHost.cpp:
(WebCore::ApplicationCacheHost::stopLoadingInFrame):
- 5:09 PM Changeset in webkit [69053] by
-
- 11 edits in trunk
2010-10-04 Chris Marrin <cmarrin@apple.com>
Reviewed by James Robinson.
Move SharedGraphicsContext3D from ChromeClient to Page
https://bugs.webkit.org/show_bug.cgi?id=47113
- 4:33 PM Changeset in webkit [69052] by
-
- 16 edits4 copies in trunk
2010-10-04 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
Implement IndexedDB's oncomplete and ontimeout.
https://bugs.webkit.org/show_bug.cgi?id=47106
- storage/indexeddb/resources/shared.js: (verifyCompleteEvent):
- storage/indexeddb/transaction-basics.html:
2010-10-04 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
Implement IndexedDB's oncomplete and ontimeout.
https://bugs.webkit.org/show_bug.cgi?id=47106
Add ontimeout and oncomplete to IDBTransaction and plumb
them. Test this behavior in the existing IDBTransaction-basics
test.
- WebCore.gypi:
- storage/IDBTransaction.cpp: (WebCore::IDBTransaction::IDBTransaction): (WebCore::IDBTransaction::mode): (WebCore::IDBTransaction::objectStore): (WebCore::IDBTransaction::abort): (WebCore::IDBTransaction::onAbort): (WebCore::IDBTransaction::onComplete): (WebCore::IDBTransaction::onTimeout): (WebCore::IDBTransaction::stop): (WebCore::IDBTransaction::onAbortTimerFired): (WebCore::IDBTransaction::onCompleteTimerFired): (WebCore::IDBTransaction::onTimeoutTimerFired):
- storage/IDBTransaction.h:
- storage/IDBTransactionBackendImpl.cpp: (WebCore::IDBTransactionBackendImpl::IDBTransactionBackendImpl): (WebCore::IDBTransactionBackendImpl::commit):
- storage/IDBTransactionCallbacks.h:
2010-10-04 Jeremy Orlow <jorlow@chromium.org>
Reviewed by Nate Chapin.
Implement IndexedDB's oncomplete and ontimeout.
https://bugs.webkit.org/show_bug.cgi?id=47106
- public/WebIDBTransactionCallbacks.h: (WebKit::WebIDBTransactionCallbacks::id): (WebKit::WebIDBTransactionCallbacks::onAbort): (WebKit::WebIDBTransactionCallbacks::onComplete): (WebKit::WebIDBTransactionCallbacks::onTimeout):
- src/IDBTransactionCallbacksProxy.cpp: (WebCore::IDBTransactionCallbacksProxy::onComplete): (WebCore::IDBTransactionCallbacksProxy::onTimeout):
- src/IDBTransactionCallbacksProxy.h:
- src/WebIDBTransactionCallbacksImpl.cpp: (WebCore::WebIDBTransactionCallbacksImpl::onComplete): (WebCore::WebIDBTransactionCallbacksImpl::onTimeout):
- src/WebIDBTransactionCallbacksImpl.h:
- 4:30 PM Changeset in webkit [69051] by
-
- 3 edits3 adds in trunk
Crash at WebCore::nextCandidate + 27
https://bugs.webkit.org/show_bug.cgi?id=47118
<rdar://problem/7282934>
Reviewed by Darin Adler.
WebCore:
When we canonicalize a Position to create a VisiblePosition, the position
is passed by reference. In canonicalPosition we call updateLayoutIgnorePendingStylesheets
that can produce a lot of side effects, including changing the selection.
This becomes a serious problem whne the position passed as reference is one of
the selection endpoints.
Test: editing/selection/focus-crash.html
- editing/VisiblePosition.cpp:
(WebCore::VisiblePosition::canonicalPosition):
LayoutTests:
- editing/resources/iframebody.html: Added.
- editing/selection/focus-crash-expected.txt: Added.
- editing/selection/focus-crash.html: Added.
- 4:17 PM Changeset in webkit [69050] by
-
- 2 edits in trunk/WebKitTools
2010-10-04 Dirk Pranke <dpranke@chromium.org>
Unreviewed, build fix.
Handle crash introduced in r69040 if we are not running in a
Chromium checkout.
- Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
- 4:12 PM Changeset in webkit [69049] by
-
- 2 edits in trunk/WebKit2
2010-10-04 Andras Becsi <abecsi@webkit.org>
Reviewed Csaba Osztrogonác.
[Qt] Build fix after r69037.
Also remove dummy setUpAcceleratedCompositing() from the source file,
since it has been removed from the header.
- UIProcess/WebProcessProxy.cpp:
- 4:12 PM Changeset in webkit [69048] by
-
- 5 edits4 adds in trunk
Reviewed by Adam Barth.
https://bugs.webkit.org/show_bug.cgi?id=37812
Assertion failure when appcache/fail-on-update.html is run twice in a row
Test: http/tests/appcache/fail-on-update-2.html
For some reason, I can't reproduce this assertion failure with ToT, but the fixes I made
previously are still good, and covered by the new test.
- loader/appcache/ApplicationCacheGroup.cpp: (WebCore::ApplicationCacheGroup::selectCache): Handle the case when the cache is already obsolete by the time cache selection occurs.
- loader/appcache/ApplicationCacheHost.cpp: (WebCore::ApplicationCacheHost::failedLoadingMainResource): It's not true that loading from appcache always succeeds - it can be aborted.
- loader/appcache/ApplicationCacheStorage.cpp: (WebCore::ApplicationCacheStorage::store): Calling ensureOriginRecord(group->origin()) can change lastInsertRowID!
- 4:07 PM Changeset in webkit [69047] by
-
- 6 edits in trunk
2010-10-04 Erik Arvidsson <arv@chromium.org>
Reviewed by James Robinson.
https://bugs.webkit.org/show_bug.cgi?id=47122
Crash in classList when class attribute is empty.
- fast/dom/HTMLElement/class-list-expected.txt:
- fast/dom/HTMLElement/class-list-quirks-expected.txt:
- fast/dom/HTMLElement/script-tests/class-list.js:
2010-10-04 Erik Arvidsson <arv@chromium.org>
Reviewed by James Robinson.
https://bugs.webkit.org/show_bug.cgi?id=47122
Crash in classList when class attribute is empty.
Tests: fast/dom/HTMLElement/class-list.html
- html/DOMTokenList.cpp: (WebCore::DOMTokenList::length): (WebCore::DOMTokenList::containsInternal): (WebCore::DOMTokenList::classNames):
- 3:57 PM Changeset in webkit [69046] by
-
- 2 edits in trunk/WebKit2
[Qt] Fix the WebKit2 build after r69029.
Patch by Andras Becsi <abecsi@webkit.org> on 2010-10-04
Rubber-stamped by Csaba Osztrogonác.
- DerivedSources.pro:
- 3:43 PM Changeset in webkit [69045] by
-
- 14 edits in trunk/JavaScriptCore
2010-10-04 Oliver Hunt <oliver@apple.com>
Reviewed by Geoff Garen.
Lazily create activation objects
https://bugs.webkit.org/show_bug.cgi?id=47107
Make it possible to lazily create the activation object
for a function that needs one. This allows us to reduce
the overhead of entering a function that may require
an activation in some cases, but not always.
This does make exception handling a little more complex as
it's now necessary to verify that a callframes activation
has been created, and create it if not, in all of the
paths used in exception handling.
We also need to add logic to check for the existence of
the activation in the scoped_var opcodes, as well as
op_ret, op_ret_object_or_this and op_tearoff_activation
so that we can avoid creating an activation unnecesarily
on function exit.
- bytecode/CodeBlock.cpp: (JSC::CodeBlock::dump): (JSC::CodeBlock::reparseForExceptionInfoIfNecessary): (JSC::CodeBlock::createActivation):
- bytecode/CodeBlock.h: (JSC::CodeBlock::setActivationRegister): (JSC::CodeBlock::activationRegister):
- bytecode/Opcode.h:
- bytecompiler/BytecodeGenerator.cpp: (JSC::BytecodeGenerator::BytecodeGenerator): (JSC::BytecodeGenerator::emitNewFunctionInternal): (JSC::BytecodeGenerator::emitNewFunctionExpression): (JSC::BytecodeGenerator::createActivationIfNecessary):
- bytecompiler/BytecodeGenerator.h:
- interpreter/Interpreter.cpp: (JSC::Interpreter::resolveSkip): (JSC::Interpreter::resolveGlobalDynamic): (JSC::Interpreter::resolveBase): (JSC::Interpreter::unwindCallFrame): (JSC::Interpreter::throwException): (JSC::Interpreter::privateExecute):
- jit/JIT.cpp: (JSC::JIT::privateCompileMainPass):
- jit/JIT.h:
- jit/JITCall32_64.cpp: (JSC::JIT::emit_op_ret): (JSC::JIT::emit_op_ret_object_or_this):
- jit/JITOpcodes.cpp: (JSC::JIT::emit_op_end): (JSC::JIT::emit_op_get_scoped_var): (JSC::JIT::emit_op_put_scoped_var): (JSC::JIT::emit_op_tear_off_activation): (JSC::JIT::emit_op_ret): (JSC::JIT::emit_op_ret_object_or_this): (JSC::JIT::emit_op_create_activation): (JSC::JIT::emit_op_resolve_global_dynamic):
- jit/JITOpcodes32_64.cpp: (JSC::JIT::emit_op_get_scoped_var): (JSC::JIT::emit_op_put_scoped_var): (JSC::JIT::emit_op_tear_off_activation): (JSC::JIT::emit_op_create_activation):
- jit/JITStubs.cpp: (JSC::DEFINE_STUB_FUNCTION):
- 3:41 PM Changeset in webkit [69044] by
-
- 7 edits in trunk/WebCore
2010-10-04 Darin Adler <Darin Adler>
Reviewed by Dan Bernstein.
Use isHTMLSpace in more places, and optimize it
https://bugs.webkit.org/show_bug.cgi?id=47103
- css/CSSParser.cpp: (WebCore::parseColorInt): Use isHTMLSpace instead of a separate isCSSWhitespace function. (WebCore::parseAlphaValue): Ditto. (WebCore::CSSParser::text): Ditto.
- dom/SpaceSplitString.h: Removed isClassWhitespace.
- dom/SpaceSplitString.cpp: (WebCore::SpaceSplitStringData::createVector): Use isHTMLSpace instead of isClassWhitespace.
- dom/StyledElement.cpp: (WebCore::StyledElement::classAttributeChanged): Ditto.
- html/DOMTokenList.cpp: (WebCore::validateToken): Ditto. (WebCore::DOMTokenList::removeInternal): Ditto.
- html/parser/HTMLParserIdioms.h: Added histogram data an changed so that non-spaces take only a single branch and plain old spaces take only two branches.
- 3:39 PM WebKitGTKFonts edited by
- (diff)
- 3:25 PM Changeset in webkit [69043] by
-
- 9 edits2 adds in trunk
2010-10-04 Justin Schuh <jschuh@chromium.org>
Reviewed by James Robinson.
HTMLMediaElement delayed load should fire asynchronously
https://bugs.webkit.org/show_bug.cgi?id=45765
Test: media/remove-from-document-before-load.html
- dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::decrementLoadEventDelayCount): (WebCore::Document::loadEventDelayTimerFired):
- dom/Document.h:
- html/HTMLMediaElement.cpp: (WebCore::HTMLMediaElement::HTMLMediaElement): (WebCore::HTMLMediaElement::asyncEventTimerFired): (WebCore::HTMLMediaElement::setShouldDelayLoadEvent):
- html/HTMLMediaElement.h:
2010-10-04 Justin Schuh <jschuh@chromium.org>
Reviewed by James Robinson.
HTMLMediaElement delayed load should fire asynchronously
https://bugs.webkit.org/show_bug.cgi?id=45765
- media/remove-from-document-before-load-expected.txt: Added.
- media/remove-from-document-before-load.html: Added.
- media/video-click-dblckick-standalone.html:
- media/video-controls-rendering.html:
- media/video-transformed.html:
- 3:19 PM Changeset in webkit [69042] by
-
- 2 edits in trunk/WebCore
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
ResourceHandle's public/protected/private sections are fragmented
https://bugs.webkit.org/show_bug.cgi?id=47038
Minor cleanup.
- platform/network/ResourceHandle.h:
- 3:16 PM WebKitGTKFonts edited by
- Update bug list (diff)
- 3:14 PM Changeset in webkit [69041] by
-
- 6 edits in trunk/WebCore
Reviewed by Adam Barth.
https://bugs.webkit.org/show_bug.cgi?id=43506
<rdar://problem/8289284> foreign-iframe-main.html occasionally crashes (during the next test,
idempotent-update.html)
Application cache doesn't use ResourceLoader machinery (for better or worse), so we need to
abort update process explicitly.
Note that in principle, update could piggyback on any other existing frame - or even run
frameless - but currently, it's tied to the first frame that requested update.
- loader/DocumentLoader.cpp: (WebCore::DocumentLoader::stopLoading):
- loader/appcache/ApplicationCacheGroup.cpp: (WebCore::ApplicationCacheGroup::stopLoadingInFrame):
- loader/appcache/ApplicationCacheGroup.h:
- loader/appcache/ApplicationCacheHost.cpp: (WebCore::ApplicationCacheHost::~ApplicationCacheHost): (WebCore::ApplicationCacheHost::stopLoadingInFrame):
- loader/appcache/ApplicationCacheHost.h:
- 3:11 PM Changeset in webkit [69040] by
-
- 3 edits in trunk/WebKitTools
2010-10-04 Dirk Pranke <dpranke@chromium.org>
Reviewed by Tony Chang.
Add a way for us to have test expectations that are specific to the
official builds of Google Chrome (as opposed to Chromium). This change
looks for an additional "test_expectations_chrome.txt" file in
Chromium's repository (webkit/tools/layout_tests), and uses the
concatenation of that file and the regular test_expectations.txt
file for test overrides.
- Scripts/webkitpy/layout_tests/port/google_chrome.py:
- Scripts/webkitpy/layout_tests/port/google_chrome_unittest.py:
- 3:09 PM Changeset in webkit [69039] by
-
- 29 edits2 moves in trunk
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
Rename RedirectScheduler to NavigationScheduler
https://bugs.webkit.org/show_bug.cgi?id=47037
Update for name change.
- src/ApplicationCacheHost.cpp: (WebCore::ApplicationCacheHost::selectCacheWithManifest):
- src/WebFrameImpl.cpp: (WebKit::WebFrameImpl::loadJavaScriptURL):
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
Rename RedirectScheduler to NavigationScheduler
https://bugs.webkit.org/show_bug.cgi?id=47037
Update for name change.
- Api/qwebpage.cpp: (QWebPage::triggerAction):
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Darin Adler.
Rename RedirectScheduler to NavigationScheduler
https://bugs.webkit.org/show_bug.cgi?id=47037
This class schedules more than just redirects. In fact, it schedules
most kinds of navigations.
- Android.mk:
- CMakeLists.txt:
- GNUmakefile.am:
- WebCore.gypi:
- WebCore.pro:
- WebCore.vcproj/WebCore.vcproj:
- WebCore.xcodeproj/project.pbxproj:
- bindings/generic/BindingDOMWindow.h: (WebCore::::createWindow): (WebCore::::open):
- bindings/generic/BindingFrame.h: (WebCore::::navigateIfAllowed):
- bindings/js/JSDOMWindowCustom.cpp: (WebCore::JSDOMWindow::setLocation): (WebCore::createWindow): (WebCore::JSDOMWindow::open):
- bindings/js/JSDocumentCustom.cpp: (WebCore::JSDocument::setLocation):
- bindings/js/JSLocationCustom.cpp: (WebCore::JSLocation::reload):
- bindings/v8/custom/V8LocationCustom.cpp: (WebCore::V8Location::reloadCallback):
- dom/Document.cpp: (WebCore::Document::implicitClose): (WebCore::Document::processHttpEquiv):
- inspector/InspectorController.cpp: (WebCore::InspectorController::setResourceTrackingEnabled): (WebCore::InspectorController::reloadPage):
- loader/FrameLoader.cpp: (WebCore::FrameLoader::setDefersLoading): (WebCore::FrameLoader::submitForm): (WebCore::FrameLoader::stopLoading): (WebCore::FrameLoader::didOpenURL): (WebCore::FrameLoader::didExplicitOpen): (WebCore::FrameLoader::cancelAndClear): (WebCore::FrameLoader::clear): (WebCore::FrameLoader::receivedFirstData): (WebCore::FrameLoader::checkCompleted): (WebCore::FrameLoader::provisionalLoadStarted): (WebCore::FrameLoader::completed): (WebCore::FrameLoader::prepareForCachedPageRestore):
- loader/FrameLoader.h:
- loader/NavigationScheduler.cpp: Added. (WebCore::ScheduledNavigation::ScheduledNavigation): (WebCore::ScheduledNavigation::~ScheduledNavigation): (WebCore::ScheduledNavigation::shouldStartTimer): (WebCore::ScheduledNavigation::didStartTimer): (WebCore::ScheduledNavigation::didStopTimer): (WebCore::ScheduledNavigation::delay): (WebCore::ScheduledNavigation::lockHistory): (WebCore::ScheduledNavigation::lockBackForwardList): (WebCore::ScheduledNavigation::wasDuringLoad): (WebCore::ScheduledNavigation::isLocationChange): (WebCore::ScheduledNavigation::wasUserGesture): (WebCore::ScheduledURLNavigation::ScheduledURLNavigation): (WebCore::ScheduledURLNavigation::fire): (WebCore::ScheduledURLNavigation::didStartTimer): (WebCore::ScheduledURLNavigation::didStopTimer): (WebCore::ScheduledURLNavigation::url): (WebCore::ScheduledURLNavigation::referrer): (WebCore::ScheduledRedirect::ScheduledRedirect): (WebCore::ScheduledRedirect::shouldStartTimer): (WebCore::ScheduledLocationChange::ScheduledLocationChange): (WebCore::ScheduledRefresh::ScheduledRefresh): (WebCore::ScheduledRefresh::fire): (WebCore::ScheduledHistoryNavigation::ScheduledHistoryNavigation): (WebCore::ScheduledHistoryNavigation::fire): (WebCore::ScheduledFormSubmission::ScheduledFormSubmission): (WebCore::ScheduledFormSubmission::fire): (WebCore::ScheduledFormSubmission::didStartTimer): (WebCore::ScheduledFormSubmission::didStopTimer): (WebCore::NavigationScheduler::NavigationScheduler): (WebCore::NavigationScheduler::~NavigationScheduler): (WebCore::NavigationScheduler::redirectScheduledDuringLoad): (WebCore::NavigationScheduler::locationChangePending): (WebCore::NavigationScheduler::clear): (WebCore::NavigationScheduler::scheduleRedirect): (WebCore::NavigationScheduler::mustLockBackForwardList): (WebCore::NavigationScheduler::scheduleLocationChange): (WebCore::NavigationScheduler::scheduleFormSubmission): (WebCore::NavigationScheduler::scheduleRefresh): (WebCore::NavigationScheduler::scheduleHistoryNavigation): (WebCore::NavigationScheduler::timerFired): (WebCore::NavigationScheduler::schedule): (WebCore::NavigationScheduler::startTimer): (WebCore::NavigationScheduler::cancel):
- loader/NavigationScheduler.h: Added.
- loader/RedirectScheduler.cpp: Removed.
- loader/RedirectScheduler.h: Removed.
- loader/SubframeLoader.cpp: (WebCore::SubframeLoader::loadOrRedirectSubframe):
- loader/appcache/ApplicationCacheGroup.cpp: (WebCore::ApplicationCacheGroup::selectCache):
- page/Frame.cpp: (WebCore::Frame::Frame):
- page/Frame.h: (WebCore::Frame::navigationScheduler):
- page/History.cpp: (WebCore::History::back): (WebCore::History::forward): (WebCore::History::go):
- page/XSSAuditor.cpp: (WebCore::XSSAuditor::findInRequest):
- 2:56 PM Changeset in webkit [69038] by
-
- 7 edits in trunk
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Sam Weinig.
Remove ENABLE_SANDBOX
https://bugs.webkit.org/show_bug.cgi?id=47032
- Configurations/FeatureDefines.xcconfig:
2010-10-04 Adam Barth <abarth@webkit.org>
Reviewed by Sam Weinig.
Remove ENABLE_SANDBOX
https://bugs.webkit.org/show_bug.cgi?id=47032
I'm not sure there's a reason for this to be behind a compile flag
anymore.
- Configurations/FeatureDefines.xcconfig:
- GNUmakefile.am:
- features.pri:
- html/HTMLIFrameElement.cpp: (WebCore::parseSandboxAttribute): (WebCore::HTMLIFrameElement::parseMappedAttribute):
- 2:14 PM Changeset in webkit [69037] by
-
- 15 edits2 adds1 delete in trunk/WebKit2
Change WebProcess initialization to be done with an
auxiliary struct.
Reviewed by Anders Carlsson.
- Platform/CoreIPC/mac/MachPort.h:
- Shared/WebProcessCreationParameters.cpp: Added.
(WebKit::WebProcessCreationParameters::WebProcessCreationParameters):
(WebKit::WebProcessCreationParameters::encode):
(WebKit::WebProcessCreationParameters::decode):
- Shared/WebProcessCreationParameters.h: Added.
- UIProcess/WebContext.cpp:
(WebKit::WebContext::ensureWebProcess):
- UIProcess/WebContext.h:
- UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::WebProcessProxy):
- UIProcess/WebProcessProxy.h:
- UIProcess/mac/WebContextMac.mm:
(WebKit::WebContext::platformInitializeWebProcess):
- UIProcess/mac/WebProcessProxyMac.mm: Removed.
- UIProcess/qt/WebContextQt.cpp:
(WebKit::WebContext::applicationCacheDirectory):
(WebKit::WebContext::platformInitializeWebProcess):
- UIProcess/win/WebContextWin.cpp:
(WebKit::WebContext::platformInitializeWebProcess):
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::initializeWebProcess):
- WebProcess/WebProcess.h:
- WebProcess/WebProcess.messages.in:
- win/WebKit2.vcproj:
- 2:09 PM Changeset in webkit [69036] by
-
- 3 edits in trunk/WebKitTools
2010-10-04 Simon Fraser <Simon Fraser>
Color tests in the list based on existing pass/fail result.
Fix the summary data to account for htmlOnly and nonHTML tests.
- CSSTestSuiteHarness/harness/harness.css: (#test-list > option.pass): (#test-list > option.fail): (#test-list > option.skipped):
- CSSTestSuiteHarness/harness/harness.js: (Test): (Test.prototype.statusForFormat): (TestSuite.prototype.fillTestList): (TestSuite.prototype.updateTestList): (TestSuite.prototype.recordResult): (TestSuite.prototype.markTestCompleted): (TestSuite.prototype.countTestsWithFlag): (TestSuite.prototype.queryDatabaseForSummary.this.db.transaction): (TestSuite.prototype.queryDatabaseForSummary):
- 2:08 PM Changeset in webkit [69035] by
-
- 267 edits41 copies18 adds in trunk/LayoutTests
Build fix. Not reviewed.
Add test expectations for the recently SVG change.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-intro-01-f-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-02-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-02-b-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-05-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-05-b-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-06-b-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-06-b-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-06-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-05-t-expected.checksum:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-05-t-expected.png:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-05-t-expected.txt: Added.
- platform/chromium-linux/svg/text/kerning-expected.txt: Added.
- platform/chromium-linux/svg/text/multichar-glyph-expected.checksum:
- platform/chromium-linux/svg/text/multichar-glyph-expected.png:
- platform/chromium-linux/svg/text/multichar-glyph-expected.txt: Added.
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-1-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-1-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-1-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacing-squeeze-1-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-2-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-2-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-2-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacing-squeeze-2-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-3-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-3-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-3-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacing-squeeze-3-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-4-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-4-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-squeeze-4-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacing-squeeze-4-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-1-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-1-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-1-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-2-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-2-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-2-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-3-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-3-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-3-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-4-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-4-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacing-stretch-4-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.txt.
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.txt:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.checksum:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png:
- platform/chromium-linux/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.txt:
- platform/chromium-linux/svg/text/select-x-list-1-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-1-expected.png:
- platform/chromium-linux/svg/text/select-x-list-1-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-1-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-2-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-2-expected.png:
- platform/chromium-linux/svg/text/select-x-list-2-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-2-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-3-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-3-expected.png:
- platform/chromium-linux/svg/text/select-x-list-3-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-3-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-4-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-4-expected.png:
- platform/chromium-linux/svg/text/select-x-list-4-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-4-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-with-tspans-1-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-1-expected.png:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-1-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-with-tspans-1-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-with-tspans-2-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-2-expected.png:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-2-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-with-tspans-2-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-with-tspans-3-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-3-expected.png:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-3-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-with-tspans-3-expected.txt.
- platform/chromium-linux/svg/text/select-x-list-with-tspans-4-expected.checksum:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-4-expected.png:
- platform/chromium-linux/svg/text/select-x-list-with-tspans-4-expected.txt: Copied from LayoutTests/platform/gtk/svg/text/select-x-list-with-tspans-4-expected.txt.
- platform/chromium-linux/svg/text/text-align-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-align-02-b-expected.checksum:
- platform/chromium-linux/svg/text/text-align-02-b-expected.png:
- platform/chromium-linux/svg/text/text-align-02-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-align-03-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-align-04-b-expected.checksum:
- platform/chromium-linux/svg/text/text-align-04-b-expected.png:
- platform/chromium-linux/svg/text/text-align-04-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-align-05-b-expected.checksum:
- platform/chromium-linux/svg/text/text-align-05-b-expected.png:
- platform/chromium-linux/svg/text/text-align-05-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-align-06-b-expected.checksum:
- platform/chromium-linux/svg/text/text-align-06-b-expected.png:
- platform/chromium-linux/svg/text/text-align-06-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-altglyph-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-deco-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-deco-01-b-expected.png:
- platform/chromium-linux/svg/text/text-deco-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-fonts-01-t-expected.txt:
- platform/chromium-linux/svg/text/text-fonts-02-t-expected.txt:
- platform/chromium-linux/svg/text/text-gradient-positioning-expected.txt: Added.
- platform/chromium-linux/svg/text/text-hkern-expected.png: Added.
- platform/chromium-linux/svg/text/text-intro-05-t-expected.txt:
- platform/chromium-linux/svg/text/text-path-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-path-01-b-expected.png:
- platform/chromium-linux/svg/text/text-path-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-repaint-rects-expected.txt: Added.
- platform/chromium-linux/svg/text/text-spacing-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-spacing-01-b-expected.png:
- platform/chromium-linux/svg/text/text-spacing-01-b-expected.txt:
- platform/chromium-linux/svg/text/text-text-01-b-expected.checksum:
- platform/chromium-linux/svg/text/text-text-01-b-expected.png:
- platform/chromium-linux/svg/text/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/text/text-text-03-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-04-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-04-t-expected.png:
- platform/chromium-linux/svg/text/text-text-04-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-05-t-expected.png:
- platform/chromium-linux/svg/text/text-text-05-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-06-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-07-t-expected.checksum:
- platform/chromium-linux/svg/text/text-text-07-t-expected.png:
- platform/chromium-linux/svg/text/text-text-07-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-text-08-b-expected.checksum:
- platform/chromium-linux/svg/text/text-text-08-b-expected.png:
- platform/chromium-linux/svg/text/text-text-08-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-tref-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-tselect-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-tselect-02-f-expected.txt: Added.
- platform/chromium-linux/svg/text/text-tspan-01-b-expected.txt: Added.
- platform/chromium-linux/svg/text/text-vkern-expected.png: Added.
- platform/chromium-linux/svg/text/text-ws-01-t-expected.txt: Added.
- platform/chromium-linux/svg/text/text-ws-02-t-expected.txt: Added.
- platform/chromium-linux/svg/text/textPathBoundsBug-expected.txt: Added.
- platform/chromium-mac/svg/text/text-align-02-b-expected.checksum:
- platform/chromium-mac/svg/text/text-align-02-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-align-04-b-expected.checksum:
- platform/chromium-mac/svg/text/text-align-04-b-expected.png:
- platform/chromium-mac/svg/text/text-align-05-b-expected.checksum:
- platform/chromium-mac/svg/text/text-align-05-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-align-06-b-expected.checksum:
- platform/chromium-mac/svg/text/text-align-06-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-deco-01-b-expected.checksum:
- platform/chromium-mac/svg/text/text-deco-01-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-path-01-b-expected.checksum:
- platform/chromium-mac/svg/text/text-path-01-b-expected.png:
- platform/chromium-mac/svg/text/text-spacing-01-b-expected.checksum:
- platform/chromium-mac/svg/text/text-spacing-01-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-text-01-b-expected.checksum:
- platform/chromium-mac/svg/text/text-text-01-b-expected.png: Added.
- platform/chromium-mac/svg/text/text-text-04-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-04-t-expected.png: Added.
- platform/chromium-mac/svg/text/text-text-07-t-expected.checksum:
- platform/chromium-mac/svg/text/text-text-07-t-expected.png: Added.
- platform/chromium-mac/svg/text/text-text-08-b-expected.checksum:
- platform/chromium-mac/svg/text/text-text-08-b-expected.png:
- platform/chromium-win-vista/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-win-vista/svg/batik/text/verticalText-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-30-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-intro-01-f-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-intro-01-f-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-02-b-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-02-b-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-05-b-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-05-b-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-06-b-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-06-b-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-06-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-05-t-expected.checksum:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-05-t-expected.png:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-05-t-expected.txt:
- platform/chromium-win/svg/text/kerning-expected.txt:
- platform/chromium-win/svg/text/multichar-glyph-expected.checksum:
- platform/chromium-win/svg/text/multichar-glyph-expected.png:
- platform/chromium-win/svg/text/multichar-glyph-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-1-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-1-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-1-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-2-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-2-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-2-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-3-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-3-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-3-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-4-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-4-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-squeeze-4-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-1-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-1-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-1-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-2-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-2-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-2-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-3-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-3-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-3-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-4-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-4-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacing-stretch-4-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.txt:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.checksum:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png:
- platform/chromium-win/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.txt:
- platform/chromium-win/svg/text/select-x-list-1-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-1-expected.png:
- platform/chromium-win/svg/text/select-x-list-1-expected.txt:
- platform/chromium-win/svg/text/select-x-list-2-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-2-expected.png:
- platform/chromium-win/svg/text/select-x-list-2-expected.txt:
- platform/chromium-win/svg/text/select-x-list-3-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-3-expected.png:
- platform/chromium-win/svg/text/select-x-list-3-expected.txt:
- platform/chromium-win/svg/text/select-x-list-4-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-4-expected.png:
- platform/chromium-win/svg/text/select-x-list-4-expected.txt:
- platform/chromium-win/svg/text/select-x-list-with-tspans-1-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-with-tspans-1-expected.png:
- platform/chromium-win/svg/text/select-x-list-with-tspans-1-expected.txt:
- platform/chromium-win/svg/text/select-x-list-with-tspans-2-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-with-tspans-2-expected.png:
- platform/chromium-win/svg/text/select-x-list-with-tspans-2-expected.txt:
- platform/chromium-win/svg/text/select-x-list-with-tspans-3-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-with-tspans-3-expected.png:
- platform/chromium-win/svg/text/select-x-list-with-tspans-3-expected.txt:
- platform/chromium-win/svg/text/select-x-list-with-tspans-4-expected.checksum:
- platform/chromium-win/svg/text/select-x-list-with-tspans-4-expected.png:
- platform/chromium-win/svg/text/select-x-list-with-tspans-4-expected.txt:
- platform/chromium-win/svg/text/text-align-01-b-expected.txt:
- platform/chromium-win/svg/text/text-align-02-b-expected.checksum:
- platform/chromium-win/svg/text/text-align-02-b-expected.png:
- platform/chromium-win/svg/text/text-align-02-b-expected.txt:
- platform/chromium-win/svg/text/text-align-03-b-expected.txt:
- platform/chromium-win/svg/text/text-align-04-b-expected.checksum:
- platform/chromium-win/svg/text/text-align-04-b-expected.png:
- platform/chromium-win/svg/text/text-align-04-b-expected.txt:
- platform/chromium-win/svg/text/text-align-05-b-expected.checksum:
- platform/chromium-win/svg/text/text-align-05-b-expected.png:
- platform/chromium-win/svg/text/text-align-05-b-expected.txt:
- platform/chromium-win/svg/text/text-align-06-b-expected.checksum:
- platform/chromium-win/svg/text/text-align-06-b-expected.png:
- platform/chromium-win/svg/text/text-align-06-b-expected.txt:
- platform/chromium-win/svg/text/text-altglyph-01-b-expected.txt:
- platform/chromium-win/svg/text/text-deco-01-b-expected.checksum:
- platform/chromium-win/svg/text/text-deco-01-b-expected.png:
- platform/chromium-win/svg/text/text-deco-01-b-expected.txt:
- platform/chromium-win/svg/text/text-fonts-01-t-expected.txt:
- platform/chromium-win/svg/text/text-fonts-02-t-expected.txt:
- platform/chromium-win/svg/text/text-gradient-positioning-expected.txt:
- platform/chromium-win/svg/text/text-hkern-expected.checksum:
- platform/chromium-win/svg/text/text-hkern-expected.png:
- platform/chromium-win/svg/text/text-intro-05-t-expected.txt: Added.
- platform/chromium-win/svg/text/text-path-01-b-expected.checksum:
- platform/chromium-win/svg/text/text-path-01-b-expected.png:
- platform/chromium-win/svg/text/text-path-01-b-expected.txt:
- platform/chromium-win/svg/text/text-repaint-rects-expected.txt:
- platform/chromium-win/svg/text/text-spacing-01-b-expected.checksum:
- platform/chromium-win/svg/text/text-spacing-01-b-expected.png:
- platform/chromium-win/svg/text/text-spacing-01-b-expected.txt:
- platform/chromium-win/svg/text/text-text-01-b-expected.checksum:
- platform/chromium-win/svg/text/text-text-01-b-expected.png:
- platform/chromium-win/svg/text/text-text-01-b-expected.txt:
- platform/chromium-win/svg/text/text-text-03-b-expected.txt:
- platform/chromium-win/svg/text/text-text-04-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-04-t-expected.png:
- platform/chromium-win/svg/text/text-text-04-t-expected.txt:
- platform/chromium-win/svg/text/text-text-05-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-05-t-expected.png:
- platform/chromium-win/svg/text/text-text-05-t-expected.txt:
- platform/chromium-win/svg/text/text-text-06-t-expected.txt:
- platform/chromium-win/svg/text/text-text-07-t-expected.checksum:
- platform/chromium-win/svg/text/text-text-07-t-expected.png:
- platform/chromium-win/svg/text/text-text-07-t-expected.txt:
- platform/chromium-win/svg/text/text-text-08-b-expected.checksum:
- platform/chromium-win/svg/text/text-text-08-b-expected.png:
- platform/chromium-win/svg/text/text-text-08-b-expected.txt:
- platform/chromium-win/svg/text/text-tref-01-b-expected.txt:
- platform/chromium-win/svg/text/text-tselect-01-b-expected.txt:
- platform/chromium-win/svg/text/text-tselect-02-f-expected.txt:
- platform/chromium-win/svg/text/text-tspan-01-b-expected.txt:
- platform/chromium-win/svg/text/text-vkern-expected.checksum:
- platform/chromium-win/svg/text/text-vkern-expected.png:
- platform/chromium-win/svg/text/text-ws-01-t-expected.txt:
- platform/chromium-win/svg/text/text-ws-02-t-expected.txt:
- platform/chromium-win/svg/text/textPathBoundsBug-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:06 PM Changeset in webkit [69034] by
-
- 2 edits in trunk/WebCore
2010-10-04 Huahui Wu <mediadependent@gmail.com>
Reviewed by Darin Adler.
Fix a compiler error for ANDROID introduced by bug 45221.
https://bugs.webkit.org/show_bug.cgi?id=47095
It's a small fix for a compiler error, so there is no new test.
- platform/android/PlatformTouchEventAndroid.cpp: (WebCore::PlatformTouchEvent::PlatformTouchEvent):
- 2:03 PM Changeset in webkit [69033] by
-
- 7 edits2 adds in trunk
AX: doAXRangeForLine does not work
https://bugs.webkit.org/show_bug.cgi?id=47101
Reviewed by Beth Dakin.
WebCore:
Asking for NSAccessibilityRangeForLine was returning a null range for any line number > 0.
The code was using a SelectionController to extend to the next line. Rather than change the implementation
of that core functionality, it is cleaner to use endOfLine to find the end of the line.
Test: platform/mac/accessibility/range-for-line-textarea.html
- accessibility/AccessibilityRenderObject.cpp:
(WebCore::AccessibilityRenderObject::doAXRangeForLine):
WebKitTools:
DRT support to handle NSAccessibilityRangeForLineParameterizedAttribute.
- DumpRenderTree/AccessibilityUIElement.cpp:
(rangeForLineCallback):
(AccessibilityUIElement::rangeForLine):
(AccessibilityUIElement::getJSClass):
- DumpRenderTree/AccessibilityUIElement.h:
- DumpRenderTree/mac/AccessibilityUIElementMac.mm:
(AccessibilityUIElement::rangeForLine):
LayoutTests:
- platform/mac/accessibility/range-for-line-textarea-expected.txt: Added.
- platform/mac/accessibility/range-for-line-textarea.html: Added.
- 1:44 PM Changeset in webkit [69032] by
-
- 4 edits2 copies in branches/chromium/517
Merge 68096
BUG=56451
Review URL: http://codereview.chromium.org/3565007
- 1:44 PM Changeset in webkit [69031] by
-
- 5 edits1 add in trunk
WebCore: Unreviewed, build fix for r68951.
Add stub implementation for ProxyServer logic.
- WebCore.vcproj/WebCore.vcproj: Add new WinCairo file.
- WebCore/platform/network/curl/ProxyServerCurl.cpp: Added
WebKit2: Unreviewed build fixes after r68260 and r68686.
- Platform/CoreIPC/DataReference.h: Add include directive for
<inttypes.h>, needed for WinCairo build.
- Shared/win/PlatformCertificateInfo.cpp:
(WebKit::PlatformCertificateInfo::PlatformCertificateInfo):
Conditionalize logic specific to WebKitSystemInterface and
add a stub implementation for WinCairo.
- 1:35 PM Changeset in webkit [69030] by
-
- 1 edit2 copies in branches/chromium/517
Merge 68860
BUG=56144
Review URL: http://codereview.chromium.org/3621005
- 1:06 PM Changeset in webkit [69029] by
-
- 16 edits1 add1 delete in trunk/WebKit2
Generate messages sent to the WebProcess class.
https://bugs.webkit.org/show_bug.cgi?id=47097
Reviewed by Adam Roben.
- DerivedSources.make:
Add new file to generate and new directory to search.
- Scripts/webkit2/messages.py:
(forward_declarations_and_headers): Special case class templates.
(headers_for_type): Special case Vector.
- Scripts/webkit2/messages_unittest.py:
Make this script work for passing a templated type.
- Shared/CoreIPCSupport/WebProcessMessageKinds.h: Removed.
- UIProcess/VisitedLinkProvider.cpp:
(WebKit::VisitedLinkProvider::pendingVisitedLinksTimerFired):
- UIProcess/WebContext.cpp:
(WebKit::WebContext::initializeHistoryClient):
(WebKit::WebContext::ensureWebProcess):
(WebKit::WebContext::registerURLSchemeAsEmptyDocument):
(WebKit::WebContext::setCacheModel):
- UIProcess/WebPageProxy.cpp:
(WebKit::WebPageProxy::initializeWebPage):
(WebKit::WebPageProxy::reinitializeWebPage):
- UIProcess/WebProcessProxy.cpp:
(WebKit::WebProcessProxy::WebProcessProxy): Always pass both
the bundle path and a key, even if the key is null, which it will be for
all non-mac builds for now.
- UIProcess/mac/WebProcessProxyMac.mm:
(WebKit::WebProcessProxy::setUpAcceleratedCompositing):
- UIProcess/win/WebContextWin.cpp:
(WebKit::WebContext::setShouldPaintNativeControls):
(WebKit::WebContext::platformSetUpWebProcess):
Use the new syntax for sending the messages.
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::setShouldTrackVisitedLinks):
(WebKit::WebProcess::setCacheModel):
(WebKit::WebProcess::setupAcceleratedCompositingPort):
(WebKit::WebProcess::setShouldPaintNativeControls):
(WebKit::WebProcess::didReceiveMessage):
- WebProcess/WebProcess.h:
Convert to using generated didReceiveWebProcessMessage.
- WebProcess/WebProcess.messages.in: Added.
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- win/WebKit2.vcproj:
Update projects.
- 1:06 PM Changeset in webkit [69028] by
-
- 1 edit in branches/chromium/517/WebCore/dom/Text.cpp
Merge 68705
BUG=57347
Review URL: http://codereview.chromium.org/3599013
- 1:01 PM Changeset in webkit [69027] by
-
- 5 edits3 copies in branches/chromium/517
Merge 68446 - WebCore: ImageDecoderSkia.cpp needs to check for allocator failure when copying
bitmaps.
https://bugs.webkit.org/show_bug.cgi?id=46437
Reviewed by James Robinson.
- manual-tests/large-size-image-crash.html: Added.
- manual-tests/resources/large-size-image-crash.gif: Added.
- platform/image-decoders/ImageDecoder.cpp:
(WebCore::RGBA32Buffer::copyBitmapData):
- platform/image-decoders/ImageDecoder.h:
- platform/image-decoders/gif/GIFImageDecoder.cpp:
(WebCore::GIFImageDecoder::initFrameBuffer):
- platform/image-decoders/qt/RGBA32BufferQt.cpp:
(WebCore::RGBA32Buffer::copyBitmapData):
- platform/image-decoders/skia/ImageDecoderSkia.cpp:
(WebCore::RGBA32Buffer::copyBitmapData):
LayoutTests: This resource should have been in r62399; without it the test no-ops.
https://bugs.webkit.org/show_bug.cgi?id=41487
Reviewed by James Robinson.
- fast/images/resources/large-size-image-crash.jpeg: Added.
BUG=54500
Review URL: http://codereview.chromium.org/3573008
- 12:48 PM Changeset in webkit [69026] by
-
- 16 edits10 adds in trunk
Reviewed by Adam Barth.
https://bugs.webkit.org/show_bug.cgi?id=47035
Application cache selection algorithm should only be invoked after navigation
Tests: http/tests/appcache/document-write-html-element-2.html
http/tests/appcache/document-write-html-element.html
http/tests/appcache/insert-html-element-with-manifest-2.html
http/tests/appcache/insert-html-element-with-manifest.html
- dom/DocumentParser.cpp: (WebCore::DocumentParser::DocumentParser):
- dom/DocumentParser.h: (WebCore::DocumentParser::setDocumentWasLoadedAsPartOfNavigation): (WebCore::DocumentParser::documentWasLoadedAsPartOfNavigation): Track whether the document being parsed is being loaded as part of navigation.
- html/HTMLHtmlElement.cpp: (WebCore::HTMLHtmlElement::insertedByParser): Only run the cache selection algorithm if the document is being loaded as part of navigation. We don't want to switch associated appcache is someone document.writes <html manifest=...>.
- html/HTMLHtmlElement.h: We need to differentiate between parsing and DOM manipulation, so this code can't be in HTMLHtmlElement::insertedIntoDocument().
- dom/XMLDocumentParserLibxml2.cpp: (WebCore::XMLDocumentParser::startElementNs):
- dom/XMLDocumentParserQt.cpp: (WebCore::XMLDocumentParser::parseStartElement):
- html/ImageDocument.cpp: (WebCore::ImageDocument::createDocumentStructure):
- html/MediaDocument.cpp: (WebCore::MediaDocumentParser::createDocumentStructure):
- html/PluginDocument.cpp: (WebCore::PluginDocumentParser::createDocumentStructure):
- html/parser/HTMLConstructionSite.cpp: (WebCore::HTMLConstructionSite::insertHTMLHtmlStartTagBeforeHTML): Check for manifest attribute in cases specified by HTML5.
- html/parser/HTMLConstructionSite.h: Removed unused insertHTMLHtmlElement().
- loader/DocumentWriter.cpp: (WebCore::DocumentWriter::setDocumentWasLoadedAsPartOfNavigation):
- loader/DocumentWriter.h: Forward this call to DocumentParser, since DocumentWriter is supposed to encapsulate it.
- loader/FrameLoader.cpp: (WebCore::FrameLoader::receivedFirstData): Receiving data from loader means being loaded as part of navigation. This notion is used in HTML5 without a rigorous definition that I could find - this seems to be a meaningful formalization.
- 12:05 PM Changeset in webkit [69025] by
-
- 3 edits in trunk/WebCore
https://bugs.webkit.org/show_bug.cgi?id=47100
Reviewed by Dan Bernstein.
Convert clearFloats() to be block-flow-aware. Helpers that it calls have not been patched though.
- rendering/RenderBlock.cpp:
(WebCore::RenderBlock::clearFloats):
- rendering/RenderBlock.h:
(WebCore::RenderBlock::logicalTopForFloat):
(WebCore::RenderBlock::logicalLeftForFloat):
(WebCore::RenderBlock::logicalWidthForFloat):
- 12:04 PM Changeset in webkit [69024] by
-
- 5 edits1 copy1 add in trunk
[Qt] Hook up DeviceOrientation data for Qt support
https://bugs.webkit.org/show_bug.cgi?id=47052
Reviewed by Kenneth Rohde Christiansen.
Get DeviceOrientation necessary data via Qt mobility library
using a provider class.
WebCore:
- WebCore.pro:
WebKit/qt:
- WebCoreSupport/DeviceOrientationClientQt.cpp:
(WebCore::DeviceOrientationClientQt::DeviceOrientationClientQt):
(WebCore::DeviceOrientationClientQt::~DeviceOrientationClientQt):
(WebCore::DeviceOrientationClientQt::startUpdating):
(WebCore::DeviceOrientationClientQt::stopUpdating):
(WebCore::DeviceOrientationClientQt::lastOrientation):
(WebCore::DeviceOrientationClientQt::changeDeviceOrientation):
- WebCoreSupport/DeviceOrientationClientQt.h:
- WebCoreSupport/DeviceOrientationProviderQt.cpp: Added.
(WebCore::DeviceOrientationProviderQt::DeviceOrientationProviderQt):
(WebCore::DeviceOrientationProviderQt::~DeviceOrientationProviderQt):
(WebCore::DeviceOrientationProviderQt::start):
(WebCore::DeviceOrientationProviderQt::stop):
(WebCore::DeviceOrientationProviderQt::filter):
- WebCoreSupport/DeviceOrientationProviderQt.h: Added.
(WebCore::DeviceOrientationProviderQt::isActive):
(WebCore::DeviceOrientationProviderQt::orientation):
(WebCore::DeviceOrientationProviderQt::hasAlpha):
- 11:45 AM Changeset in webkit [69023] by
-
- 2 edits in trunk/WebKitTools
2010-10-04 Andrey Kosyakov <caseq@chromium.org>
Unreviewed. Adding myself to the committers list.
- Scripts/webkitpy/common/config/committers.py:
- 10:35 AM Changeset in webkit [69022] by
-
- 4 edits in trunk
Fixing crash when audio media player is destructed
https://bugs.webkit.org/show_bug.cgi?id=47020
Reviewed by James Robinson.
WebCore:
Adds assert for LayerRenderer in destructor.
- platform/graphics/chromium/VideoLayerChromium.cpp:
(WebCore::VideoLayerChromium::~VideoLayerChromium):
WebKit/chromium:
Creates the VideoLayerChromium layer only if the media player contains
a video.
- src/WebMediaPlayerClientImpl.cpp:
(WebKit::WebMediaPlayerClientImpl::readyStateChanged):
(WebKit::WebMediaPlayerClientImpl::create):
- 10:30 AM Changeset in webkit [69021] by
-
- 2 edits in trunk/WebKit2
Fix the Mac build.
- WebProcess/mac/WebProcessMac.mm:
- 10:15 AM Changeset in webkit [69020] by
-
- 14 edits4 adds in trunk
Add ability to set the CacheModel in Webkit2
https://bugs.webkit.org/show_bug.cgi?id=47066
Reviewed by Anders Carlsson.
WebKit2:
Add WKContext function to set the cache model for the context.
- Shared/CacheModel.h: Added.
- Shared/CoreIPCSupport/WebProcessMessageKinds.h:
- UIProcess/API/C/WKAPICast.h:
(WebKit::toCacheModel):
(WebKit::toRef):
- UIProcess/API/C/WKContext.cpp:
(WKContextSetCacheModel):
(WKContextGetCacheModel):
- UIProcess/API/C/WKContext.h:
- UIProcess/WebContext.cpp:
(WebKit::WebContext::WebContext):
(WebKit::WebContext::ensureWebProcess):
(WebKit::WebContext::setCacheModel):
- UIProcess/WebContext.h:
(WebKit::WebContext::cacheModel):
- WebKit2.pro:
- WebKit2.xcodeproj/project.pbxproj:
- WebProcess/WebProcess.cpp:
(WebKit::WebProcess::WebProcess):
(WebKit::WebProcess::setCacheModel):
(WebKit::WebProcess::didReceiveMessage):
- WebProcess/WebProcess.h:
- WebProcess/mac/WebProcessMac.mm: Added.
(WebKit::memorySize):
(WebKit::volumeFreeSize):
(WebKit::WebProcess::platformSetCacheModel):
- WebProcess/qt/WebProcessQt.cpp: Added.
(WebKit::WebProcess::platformSetCacheModel):
- WebProcess/win/WebProcessWin.cpp: Added.
(WebKit::WebProcess::platformSetCacheModel):
- win/WebKit2.vcproj:
WebKitTools:
- MiniBrowser/mac/AppDelegate.m:
(-[BrowserAppDelegate init]): Opt minibrowser into
a PrimaryWebBrowser cache model.
- 10:00 AM Changeset in webkit [69019] by
-
- 2 edits in trunk/WebCore
2010-10-04 Pavel Podivilov <podivilov@chromium.org>
Reviewed by Pavel Feldman.
Web Inspector: do not show breakpoint in front-end if it was not set in v8
https://bugs.webkit.org/show_bug.cgi?id=46749
- bindings/v8/DebuggerScript.js: ():
- 9:25 AM Changeset in webkit [69018] by
-
- 2 edits in trunk/WebCore
2010-10-04 Alejandro G. Castro <alex@igalia.com>
Reviewed by Martin Robinson.
[cairo] Context shadow modifies the data of the surface without
flushing and marking as dirty
https://bugs.webkit.org/show_bug.cgi?id=47079
Added the cairo_surface_flush and cairo_surface_mark_dirty before
and after modifying the image pixels directly.
- platform/graphics/cairo/ContextShadowCairo.cpp: (WebCore::ContextShadow::endShadowLayer):
- 9:00 AM Changeset in webkit [69017] by
-
- 2 edits in trunk/LayoutTests
Skip a timing-out test on Windows
- platform/win/Skipped: Added http/tests/misc/copy-resolves-urls.html,
which times out in Release builds.
- 8:48 AM Changeset in webkit [69016] by
-
- 2 edits in trunk/WebCore
2010-10-04 Alejandro G. Castro <alex@igalia.com>
Reviewed by Xan Lopez.
Crashed caused by missing OwnPtrCairo include, for more
information check the issue in the bug 46268.
- platform/graphics/cairo/CairoUtilities.cpp:
- 8:23 AM Changeset in webkit [69015] by
-
- 5 edits in trunk/WebCore
2010-10-04 Alejandro G. Castro <alex@igalia.com>
Reviewed by Martin Robinson.
[cairo] Move some cairo functions to the CairoUtilities
https://bugs.webkit.org/show_bug.cgi?id=47076
Moved some cairo functions to the CairoUtilities so we can use
them outside GraphicsContextCairo.
- platform/graphics/cairo/CairoUtilities.cpp: (WebCore::appendPathToCairoContext): (WebCore::setPathOnCairoContext): (WebCore::appendWebCorePathToCairoContext): (WebCore::toCairoOperator): (WebCore::drawPatternToCairoContext):
- platform/graphics/cairo/CairoUtilities.h:
- platform/graphics/cairo/GraphicsContextCairo.cpp:
- platform/graphics/cairo/ImageCairo.cpp: (WebCore::Image::drawPattern):
- 7:52 AM Changeset in webkit [69014] by
-
- 15 edits in trunk/WebCore
2010-10-04 podivilov@chromium.org <podivilov@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: implement pausing on event listeners (back-end part)
https://bugs.webkit.org/show_bug.cgi?id=46624
- bindings/js/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setPauseOnNextStatement):
- bindings/js/ScriptDebugServer.h:
- bindings/v8/ScriptDebugServer.cpp: (WebCore::ScriptDebugServer::setPauseOnNextStatement):
- bindings/v8/ScriptDebugServer.h:
- dom/Node.cpp: (WebCore::Node::dispatchGenericEvent):
- inspector/InspectorController.cpp: (WebCore::InspectorController::didCommitLoad): (WebCore::InspectorController::setNativeBreakpoint): (WebCore::InspectorController::removeNativeBreakpoint): (WebCore::InspectorController::shouldBreakOnEvent): (WebCore::InspectorController::shouldBreakOnXMLHttpRequest):
- inspector/InspectorController.h:
- inspector/InspectorDebuggerAgent.cpp: (WebCore::InspectorDebuggerAgent::~InspectorDebuggerAgent): (WebCore::InspectorDebuggerAgent::schedulePauseOnNextStatement): (WebCore::InspectorDebuggerAgent::cancelPauseOnNextStatement): (WebCore::InspectorDebuggerAgent::pause): (WebCore::InspectorDebuggerAgent::didContinue): (WebCore::InspectorDebuggerAgent::breakProgram):
- inspector/InspectorDebuggerAgent.h:
- inspector/InspectorInstrumentation.cpp: (WebCore::eventHasListeners): (WebCore::InspectorInstrumentation::instrumentWillDispatchEventImpl): (WebCore::InspectorInstrumentation::instrumentDidDispatchEventImpl): (WebCore::InspectorInstrumentation::instrumentWillSendXMLHttpRequestImpl):
- inspector/InspectorInstrumentation.h: (WebCore::InspectorInstrumentation::instrumentWillDispatchEvent): (WebCore::InspectorInstrumentation::instrumentDidDispatchEvent): (WebCore::InspectorInstrumentation::instrumentWillSendXMLHttpRequest):
- inspector/InspectorTimelineAgent.cpp: (WebCore::InspectorTimelineAgent::InspectorTimelineAgent):
- inspector/InspectorTimelineAgent.h: (WebCore::InspectorTimelineAgent::id):
- inspector/front-end/CallStackSidebarPane.js:
- 7:28 AM Changeset in webkit [69013] by
-
- 2 edits in trunk/LayoutTests
Skip a flaky SVG test on Windows
- platform/win/Skipped: Added
svg/dom/SVGScriptElement/script-load-and-error-events.svg
- 7:25 AM Changeset in webkit [69012] by
-
- 2 edits in trunk/LayoutTests
Skip http/tests/xmlhttprequest/xmlhttprequest-sync-vs-async-assertion-failure.html on Windows
It seems to be causing other tests to time out, like
http/tests/xmlhttprequest/xmlhttprequest-test-send-flag.html.
- platform/win/Skipped:
- 6:48 AM Changeset in webkit [69011] by
-
- 1 edit1 add in trunk/LayoutTests
Land XP-specific results for fast/text/international/bidi-mirror-he-ar.html
In r69008 I updated the post-XP results, but forgot to check in the
XP-specific results.
- platform/win-xp/fast/text/international/bidi-mirror-he-ar-expected.txt: Added.
- 6:42 AM Changeset in webkit [69010] by
-
- 8 edits in trunk/WebCore
2010-10-04 Pavel Feldman <pfeldman@chromium.org>
Reviewed by Yury Semikhatsky.
Web Inspector: add total bar to the network panel.
https://bugs.webkit.org/show_bug.cgi?id=47081
- English.lproj/localizedStrings.js:
- inspector/front-end/ConsoleView.js: (WebInspector.ConsoleView.createDividerElement):
- inspector/front-end/DataGrid.js: (WebInspector.DataGrid.prototype.removeChild): (WebInspector.DataGrid.prototype.sortNodes): (WebInspector.DataGrid.prototype._clickInHeaderCell): (WebInspector.DataGrid.prototype.markColumnAsSortedBy):
- inspector/front-end/NetworkPanel.js: (WebInspector.NetworkPanel): (WebInspector.NetworkPanel.prototype.resize): (WebInspector.NetworkPanel.prototype._positionSummaryBar): (WebInspector.NetworkPanel.prototype._createTimelineGrid): (WebInspector.NetworkPanel.prototype._createSortingFunctions): (WebInspector.NetworkPanel.prototype._sortItems): (WebInspector.NetworkPanel.prototype._sortByTimeline): (WebInspector.NetworkPanel.prototype._createFilterStatusBarItems): (WebInspector.NetworkPanel.prototype._createSummaryBar): (WebInspector.NetworkPanel.prototype._updateSummaryBar): (WebInspector.NetworkPanel.prototype._updateFilter): (WebInspector.NetworkPanel.prototype.show): (WebInspector.NetworkPanel.prototype.refresh): (WebInspector.NetworkPanel.prototype.reset): (WebInspector.NetworkDataGridNode.SizeComparator): (WebInspector.NetworkDataGridNode.ResourcePropertyComparator): (WebInspector.NetworkTotalGridNode): (WebInspector.NetworkTotalGridNode.prototype.createCells):
- inspector/front-end/ResourcesPanel.js: (WebInspector.ResourcesPanel.prototype.createFilterPanel):
- inspector/front-end/inspector.css: (.scope-bar-divider):
- inspector/front-end/networkPanel.css: (.network-timeline-grid): (.network-summary-bar): (.network-summary-bar-bottom): (.data-grid td .network-summary-bar):
- 6:17 AM Changeset in webkit [69009] by
-
- 18 edits in trunk
2010-09-28 Luiz Agostini <luiz.agostini@openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
Viewport data change notifications
https://bugs.webkit.org/show_bug.cgi?id=46755
Regarding viewport meta tags, what matters for browser developers is to know when the viewport data has
changed and its current value. Viewport data belongs to the document, but it is useful to keep the current
viewport data in Page as a reference, to be able to send notifications only when the current viewport
has changed.
- dom/Document.cpp: (WebCore::Document::processViewport): (WebCore::Document::setInPageCache):
- dom/ViewportArguments.h: (WebCore::ViewportArguments::operator==):
- html/HTMLBodyElement.cpp: (WebCore::HTMLBodyElement::HTMLBodyElement):
- page/Chrome.cpp: (WebCore::Chrome::viewportDataChanged):
- page/Chrome.h:
- page/ChromeClient.h: (WebCore::ChromeClient::viewportDataChanged):
- page/Page.cpp: (WebCore::Page::updateViewportArguments):
- page/Page.h: (WebCore::Page::viewportArguments):
2010-09-28 Luiz Agostini <luiz.agostini@openbossa.org>
Reviewed by Kenneth Rohde Christiansen.
Viewport data change notifications
https://bugs.webkit.org/show_bug.cgi?id=46755
Regarding viewport meta tags, what matters for browser developers is to know when the viewport data has
changed and its current value. Viewport data belongs to the document, but it is useful to keep the current
viewport data in Page as a reference, to be able to send notifications only when the current viewport
has changed.
- Api/qwebframe.cpp:
- Api/qwebframe_p.h:
- Api/qwebpage.cpp: (QWebPagePrivate::viewportArguments): (QWebPage::viewportConfigurationForSize):
- Api/qwebpage_p.h:
- WebCoreSupport/ChromeClientQt.cpp: (WebCore::ChromeClientQt::viewportDataChanged):
- WebCoreSupport/ChromeClientQt.h:
- WebCoreSupport/DumpRenderTreeSupportQt.cpp: (DumpRenderTreeSupportQt::viewportAsText):
- 5:39 AM Changeset in webkit [69008] by
-
- 2 edits in trunk/LayoutTests
Land correct post-XP results for fast/text/international/bidi-mirror-he-ar.html
Apparently the results I landed earlier weren't quite right.
- platform/win/fast/text/international/bidi-mirror-he-ar-expected.txt:
- 4:20 AM Changeset in webkit [69007] by
-
- 2 edits in trunk/LayoutTests
2010-10-04 Pavel Podivilov <podivilov@chromium.org>
Unreviewed, test expectation update.
[Chromium] Mark debugger-breakpoints-not-activated-on-reload.html as slow on win debug
- platform/chromium/test_expectations.txt:
- 3:44 AM WebKit Team edited by
- (diff)
- 3:26 AM Changeset in webkit [69006] by
-
- 6 edits in trunk/LayoutTests
2010-10-04 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
Fix incorrect rebaseline of verticalText.svg by r69004.
- move chromium-win image baseline to chromium-win-xp
- revert chromium-win image baseline
- platform/chromium-win-xp/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-win-xp/svg/batik/text/verticalText-expected.png:
- platform/chromium-win/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-win/svg/batik/text/verticalText-expected.png:
- platform/chromium/test_expectations.txt:
- 2:34 AM Changeset in webkit [69005] by
-
- 48 edits25 copies5 deletes in trunk/LayoutTests
Unreviewed, test expectation update.
Update SVG baseline for Chromium.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textLength-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/button-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/colourpicker-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/combobox-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/selectionlist-expected.checksum:
- platform/chromium-linux/svg/carto.net/selectionlist-expected.png:
- platform/chromium-linux/svg/carto.net/selectionlist-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/textbox-expected.txt: Added.
- platform/chromium-linux/svg/carto.net/window-expected.txt:
- platform/chromium-linux/svg/clip-path/clip-path-text-and-shape-expected.txt: Added.
- platform/chromium-linux/svg/clip-path/clip-path-text-and-stroke-expected.txt: Added.
- platform/chromium-linux/svg/clip-path/clip-path-text-expected.txt: Added.
- platform/chromium-linux/svg/clip-path/clip-path-with-text-clipped-expected.txt: Added.
- platform/chromium-linux/svg/css/composite-shadow-text-expected.txt: Added.
- platform/chromium-linux/svg/css/shadow-changes-expected.txt: Added.
- platform/chromium-linux/svg/css/text-shadow-multiple-expected.txt: Added.
- platform/chromium-linux/svg/custom/use-detach-expected.txt: Added.
- platform/chromium-linux/svg/filters/filter-on-filter-for-text-expected.txt: Added.
- platform/chromium-linux/svg/filters/filter-on-tspan-expected.txt: Copied from LayoutTests/platform/gtk/svg/filters/filter-on-tspan-expected.txt.
- platform/chromium-linux/svg/filters/sourceAlpha-expected.checksum:
- platform/chromium-linux/svg/filters/sourceAlpha-expected.png: Removed.
- platform/chromium-linux/svg/filters/sourceAlpha-expected.txt: Added.
- platform/chromium-linux/svg/hixie/error/017-expected.txt: Added.
- platform/chromium-linux/svg/hixie/text/002-expected.txt: Added.
- platform/chromium-linux/svg/hixie/text/003b-expected.txt:
- platform/chromium-linux/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum:
- platform/chromium-linux/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
- platform/chromium-linux/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt: Added.
- platform/chromium-linux/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum:
- platform/chromium-linux/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
- platform/chromium-linux/svg/transforms/text-with-pattern-with-svg-transform-expected.txt: Added.
- platform/chromium-linux/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: Added.
- platform/chromium-linux/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: Added.
- platform/chromium-linux/transitions/svg-text-shadow-transition-expected.txt: Added.
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-opacity-01-b-expected.txt:
- platform/chromium-win/svg/batik/text/textLength-expected.txt:
- platform/chromium-win/svg/carto.net/button-expected.txt:
- platform/chromium-win/svg/carto.net/colourpicker-expected.txt:
- platform/chromium-win/svg/carto.net/combobox-expected.txt:
- platform/chromium-win/svg/carto.net/selectionlist-expected.checksum:
- platform/chromium-win/svg/carto.net/selectionlist-expected.png:
- platform/chromium-win/svg/carto.net/selectionlist-expected.txt:
- platform/chromium-win/svg/carto.net/textbox-expected.txt:
- platform/chromium-win/svg/carto.net/window-expected.txt:
- platform/chromium-win/svg/clip-path/clip-path-text-and-shape-expected.txt:
- platform/chromium-win/svg/clip-path/clip-path-text-and-stroke-expected.txt:
- platform/chromium-win/svg/clip-path/clip-path-text-expected.txt:
- platform/chromium-win/svg/clip-path/clip-path-with-text-clipped-expected.txt:
- platform/chromium-win/svg/css/composite-shadow-text-expected.txt:
- platform/chromium-win/svg/css/shadow-changes-expected.txt:
- platform/chromium-win/svg/css/text-shadow-multiple-expected.txt:
- platform/chromium-win/svg/custom/use-detach-expected.txt:
- platform/chromium-win/svg/filters/filter-on-filter-for-text-expected.txt:
- platform/chromium-win/svg/filters/filter-on-tspan-expected.txt:
- platform/chromium-win/svg/filters/sourceAlpha-expected.checksum:
- platform/chromium-win/svg/filters/sourceAlpha-expected.png:
- platform/chromium-win/svg/filters/sourceAlpha-expected.txt:
- platform/chromium-win/svg/hixie/error/017-expected.txt:
- platform/chromium-win/svg/hixie/text/002-expected.txt:
- platform/chromium-win/svg/hixie/text/003b-expected.txt:
- platform/chromium-win/svg/transforms/text-with-pattern-inside-transformed-html-expected.checksum:
- platform/chromium-win/svg/transforms/text-with-pattern-inside-transformed-html-expected.png:
- platform/chromium-win/svg/transforms/text-with-pattern-inside-transformed-html-expected.txt:
- platform/chromium-win/svg/transforms/text-with-pattern-with-svg-transform-expected.checksum:
- platform/chromium-win/svg/transforms/text-with-pattern-with-svg-transform-expected.png:
- platform/chromium-win/svg/transforms/text-with-pattern-with-svg-transform-expected.txt:
- platform/chromium-win/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt:
- platform/chromium-win/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt:
- platform/chromium-win/transitions/svg-text-shadow-transition-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:14 AM Changeset in webkit [69004] by
-
- 79 edits13 copies8 adds in trunk/LayoutTests
2010-10-04 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
Update svg/batik results for Chromium.
- platform/chromium-linux/svg/batik/text/longTextOnPath-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textAnchor-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textAnchor2-expected.checksum:
- platform/chromium-linux/svg/batik/text/textAnchor2-expected.png:
- platform/chromium-linux/svg/batik/text/textAnchor2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textAnchor3-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textDecoration-expected.checksum:
- platform/chromium-linux/svg/batik/text/textDecoration-expected.png:
- platform/chromium-linux/svg/batik/text/textDecoration-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textDecoration2-expected.checksum:
- platform/chromium-linux/svg/batik/text/textDecoration2-expected.png:
- platform/chromium-linux/svg/batik/text/textDecoration2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textEffect2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.png:
- platform/chromium-linux/svg/batik/text/textEffect3-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textFeatures-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textGlyphOrientationHorizontal-expected.checksum:
- platform/chromium-linux/svg/batik/text/textGlyphOrientationHorizontal-expected.png:
- platform/chromium-linux/svg/batik/text/textGlyphOrientationHorizontal-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textLayout-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textLayout2-expected.checksum:
- platform/chromium-linux/svg/batik/text/textLayout2-expected.png:
- platform/chromium-linux/svg/batik/text/textLayout2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textOnPath-expected.checksum:
- platform/chromium-linux/svg/batik/text/textOnPath-expected.png:
- platform/chromium-linux/svg/batik/text/textOnPath-expected.txt:
- platform/chromium-linux/svg/batik/text/textOnPath2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textOnPath3-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textOnPathSpaces-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textPCDATA-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textPosition-expected.txt:
- platform/chromium-linux/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-linux/svg/batik/text/textProperties-expected.checksum:
- platform/chromium-linux/svg/batik/text/textProperties-expected.png:
- platform/chromium-linux/svg/batik/text/textProperties-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/textProperties2-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-linux/svg/batik/text/verticalText-expected.png:
- platform/chromium-linux/svg/batik/text/verticalText-expected.txt: Added.
- platform/chromium-linux/svg/batik/text/verticalTextOnPath-expected.checksum:
- platform/chromium-linux/svg/batik/text/verticalTextOnPath-expected.png:
- platform/chromium-linux/svg/batik/text/verticalTextOnPath-expected.txt:
- platform/chromium-linux/svg/batik/text/xmlSpace-expected.checksum:
- platform/chromium-linux/svg/batik/text/xmlSpace-expected.png:
- platform/chromium-linux/svg/batik/text/xmlSpace-expected.txt: Added.
- platform/chromium-win/svg/batik/text/longTextOnPath-expected.txt:
- platform/chromium-win/svg/batik/text/textAnchor-expected.txt:
- platform/chromium-win/svg/batik/text/textAnchor2-expected.checksum:
- platform/chromium-win/svg/batik/text/textAnchor2-expected.png:
- platform/chromium-win/svg/batik/text/textAnchor2-expected.txt:
- platform/chromium-win/svg/batik/text/textAnchor3-expected.txt:
- platform/chromium-win/svg/batik/text/textDecoration-expected.checksum:
- platform/chromium-win/svg/batik/text/textDecoration-expected.png:
- platform/chromium-win/svg/batik/text/textDecoration-expected.txt:
- platform/chromium-win/svg/batik/text/textDecoration2-expected.checksum:
- platform/chromium-win/svg/batik/text/textDecoration2-expected.png:
- platform/chromium-win/svg/batik/text/textDecoration2-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect-expected.png:
- platform/chromium-win/svg/batik/text/textEffect-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect2-expected.txt:
- platform/chromium-win/svg/batik/text/textEffect3-expected.checksum:
- platform/chromium-win/svg/batik/text/textEffect3-expected.png:
- platform/chromium-win/svg/batik/text/textEffect3-expected.txt:
- platform/chromium-win/svg/batik/text/textFeatures-expected.txt:
- platform/chromium-win/svg/batik/text/textGlyphOrientationHorizontal-expected.checksum:
- platform/chromium-win/svg/batik/text/textGlyphOrientationHorizontal-expected.png:
- platform/chromium-win/svg/batik/text/textGlyphOrientationHorizontal-expected.txt:
- platform/chromium-win/svg/batik/text/textLayout-expected.txt:
- platform/chromium-win/svg/batik/text/textLayout2-expected.checksum:
- platform/chromium-win/svg/batik/text/textLayout2-expected.png:
- platform/chromium-win/svg/batik/text/textLayout2-expected.txt:
- platform/chromium-win/svg/batik/text/textOnPath-expected.checksum:
- platform/chromium-win/svg/batik/text/textOnPath-expected.png:
- platform/chromium-win/svg/batik/text/textOnPath-expected.txt:
- platform/chromium-win/svg/batik/text/textOnPath2-expected.txt:
- platform/chromium-win/svg/batik/text/textOnPath3-expected.txt:
- platform/chromium-win/svg/batik/text/textOnPathSpaces-expected.txt:
- platform/chromium-win/svg/batik/text/textPCDATA-expected.txt:
- platform/chromium-win/svg/batik/text/textPosition-expected.txt:
- platform/chromium-win/svg/batik/text/textPosition2-expected.txt:
- platform/chromium-win/svg/batik/text/textProperties-expected.checksum:
- platform/chromium-win/svg/batik/text/textProperties-expected.png:
- platform/chromium-win/svg/batik/text/textProperties-expected.txt:
- platform/chromium-win/svg/batik/text/textProperties2-expected.txt:
- platform/chromium-win/svg/batik/text/verticalText-expected.checksum:
- platform/chromium-win/svg/batik/text/verticalText-expected.png:
- platform/chromium-win/svg/batik/text/verticalText-expected.txt:
- platform/chromium-win/svg/batik/text/verticalTextOnPath-expected.checksum:
- platform/chromium-win/svg/batik/text/verticalTextOnPath-expected.png:
- platform/chromium-win/svg/batik/text/verticalTextOnPath-expected.txt:
- platform/chromium-win/svg/batik/text/xmlSpace-expected.checksum:
- platform/chromium-win/svg/batik/text/xmlSpace-expected.png:
- platform/chromium-win/svg/batik/text/xmlSpace-expected.txt:
- platform/chromium/test_expectations.txt:
- 1:09 AM Changeset in webkit [69003] by
-
- 2 edits in trunk/WebKit/qt
[Qt] Fix platform plugin support after r68128
Rubber-stamped by Tor Arne Vestbø.
Replaced the qobject_cast from the QObject derived extension to a
static_cast. qobject_cast works by comparing pointers to meta-object
instances, of which there are two each: one compiled into WebKit and
one compiled into the plugin.
The platform plugin ensures the validity of the interface contract
through its version and the initial safe qobject_cast from QObject
to QWebKitPlatformPlugin. After that it is safe to use static_cast,
and with the recent changes even required.
- WebCoreSupport/QtPlatformPlugin.cpp:
(WebCore::QtPlatformPlugin::createSelectInputMethod):
(WebCore::QtPlatformPlugin::createNotificationPresenter):
(WebCore::QtPlatformPlugin::createHapticFeedbackPlayer):
- 12:02 AM Changeset in webkit [69002] by
-
- 2 edits in trunk/LayoutTests
2010-10-04 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update.
- platform/chromium/test_expectations.txt:
Oct 3, 2010:
- 11:22 PM Changeset in webkit [69001] by
-
- 2 edits in trunk/WebKitTools
2010-10-03 Simon Fraser <Simon Fraser>
Make sure to enter all tests when creating the database
for the first time.
When migrating to a new version of the suite, be sure to
sync up the database and testinfo.data by removing old
tests, and inserting new ones.
- CSSTestSuiteHarness/harness/harness.js: (TestSuite.prototype.openDatabase.creation): (TestSuite.prototype.databaseCreated): (TestSuite.prototype.populateDatabaseFromTestInfoData): (TestSuite.prototype.insertTest):
- 11:22 PM Changeset in webkit [69000] by
-
- 2 edits in trunk/WebKitTools
2010-10-03 Simon Fraser <Simon Fraser>
More work on treating HTML4 and XHTML1 independently; when
changing the format, rebuild the test list, and update the
numbers in the chapter popup.
- CSSTestSuiteHarness/harness/harness.js: (Test): (Test.prototype.runForFormat): (Test.prototype.completedForFormat): (ChapterSection): (ChapterSection.prototype.countTests): (Chapter): (Chapter.prototype.description): (Chapter.prototype.countTests): (Chapter.prototype.testCount): (Chapter.prototype.untestedCount): (TestSuite.prototype.buildChapters): (TestSuite.prototype.loadCurrentTest): (TestSuite.prototype.updateProgressLabel): (TestSuite.prototype.processFlags): (TestSuite.prototype.formatChanged):
- 11:21 PM Changeset in webkit [68999] by
-
- 2 edits in trunk/WebKitTools
2010-10-03 Simon Fraser <Simon Fraser>
Update test suite version 20101001.
Handle database migration, and delete tests from the db that are
not present in testinfo.data.
Load about:blank into the test frame before the test url, to make
missing tests more obvious.
- CSSTestSuiteHarness/harness/harness.js: (TestSuite.prototype.loadTest): (TestSuite.prototype.openDatabase.creation): (TestSuite.prototype.openDatabase.migration1_0To1_1): (TestSuite.prototype.openDatabase.if.return): (TestSuite.prototype.databaseReady): (TestSuite.prototype.populateDatabaseFromTestInfoData): (TestSuite.prototype.syncDatabaseWithTestInfoData.this.db.transaction): (TestSuite.prototype.syncDatabaseWithTestInfoData):
- 11:20 PM Changeset in webkit [68998] by
-
- 2 edits in trunk/WebKitLibraries
Unreviewed build fix.
WinCairo also needs access to the <inttypes.h> header requirement
introduced by Bug 46357.
- win/tools/vsprops/WinCairo.vsprops:
- 11:14 PM Changeset in webkit [68997] by
-
- 5 edits in trunk/WebCore
2010-10-03 Kent Tamura <tkent@chromium.org>
Unreviewed, build fix for r68996.
- html/BaseDateAndTimeInputType.cpp: Includes <wtf/MathExtras.h> for isfinite().
- html/MonthInputType.cpp: ditto.
- html/NumberInputType.cpp: ditto.
- html/RangeInputType.cpp: ditto.
- 10:59 PM Changeset in webkit [68996] by
-
- 28 edits2 copies in trunk/WebCore
2010-10-03 Kent Tamura <tkent@chromium.org>
Reviewed by Dimitri Glazkov.
Refactor HTMLInputElement: Move parseToDouble() and
parseToDateComponents() to InputType.
https://bugs.webkit.org/show_bug.cgi?id=46965
Introduce BaseDateAndTimeInputType, which is a super class of
date, datetime, datetime-local, month, time, and week types.
No new tests. Just a refactoring.
- Android.mk: Add BaseDateAndTimeInputType.
- CMakeLists.txt: ditto.
- GNUmakefile.am: ditto.
- WebCore.gypi: ditto.
- WebCore.pro: ditto.
- WebCore.vcproj/WebCore.vcproj: ditto.
- WebCore.xcodeproj/project.pbxproj: ditto.
- html/BaseDateAndTimeInputType.cpp: Added. (WebCore::BaseDateAndTimeInputType::parseToDouble): (WebCore::BaseDateAndTimeInputType::parseToDateComponents):
- html/BaseDateAndTimeInputType.h: Added. (WebCore::BaseDateAndTimeInputType::BaseDateAndTimeInputType):
- html/DateInputType.cpp: (WebCore::DateInputType::parseToDateComponentsInternal):
- html/DateInputType.h: (WebCore::DateInputType::DateInputType):
- html/DateTimeInputType.cpp: (WebCore::DateTimeInputType::parseToDateComponentsInternal):
- html/DateTimeInputType.h: (WebCore::DateTimeInputType::DateTimeInputType):
- html/DateTimeLocalInputType.cpp: (WebCore::DateTimeLocalInputType::parseToDateComponentsInternal):
- html/DateTimeLocalInputType.h: (WebCore::DateTimeLocalInputType::DateTimeLocalInputType):
- html/HTMLInputElement.cpp: Replace parseToD* calls with m_inputType->parseToD*. (WebCore::HTMLInputElement::typeMismatch): (WebCore::HTMLInputElement::rangeUnderflow): (WebCore::HTMLInputElement::rangeOverflow): (WebCore::HTMLInputElement::minimum): (WebCore::HTMLInputElement::maximum): (WebCore::HTMLInputElement::stepBase): (WebCore::HTMLInputElement::stepMismatch): (WebCore::HTMLInputElement::applyStep): (WebCore::HTMLInputElement::valueAsDate): (WebCore::HTMLInputElement::valueAsNumber): (WebCore::HTMLInputElement::handleKeyEventForRange): (WebCore::HTMLInputElement::stepUpFromRenderer):
- html/HTMLInputElement.h:
- html/InputType.cpp: (WebCore::InputType::parseToDouble): (WebCore::InputType::parseToDateComponents):
- html/InputType.h:
- html/MonthInputType.cpp: (WebCore::MonthInputType::parseToDouble): (WebCore::MonthInputType::parseToDateComponentsInternal):
- html/MonthInputType.h: (WebCore::MonthInputType::MonthInputType):
- html/NumberInputType.cpp: (WebCore::NumberInputType::parseToDouble):
- html/NumberInputType.h:
- html/RangeInputType.cpp: (WebCore::RangeInputType::parseToDouble):
- html/RangeInputType.h:
- html/TimeInputType.cpp: (WebCore::TimeInputType::parseToDateComponentsInternal):
- html/TimeInputType.h: (WebCore::TimeInputType::TimeInputType):
- html/WeekInputType.cpp: (WebCore::WeekInputType::parseToDateComponentsInternal):
- html/WeekInputType.h: (WebCore::WeekInputType::WeekInputType):
- 10:44 PM Changeset in webkit [68995] by
-
- 2 edits in trunk/LayoutTests
Unreviewed, remove redundant expectations.
- platform/chromium/test_expectations.txt:
- 8:53 PM Changeset in webkit [68994] by
-
- 245 edits227 adds in trunk/LayoutTests
2010-10-03 MORITA Hajime <morrita@google.com>
Unrevied, added test expectations for because of the massive SVG change in r68976.
This chanage is for svg/W3C-SVG-1.1/*.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-align-04-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-path-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-03-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-04-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-06-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-07-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-text-08-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt: Added.
- platform/chromium-linux/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt: Added.
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-08-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-09-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-10-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-11-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-12-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-13-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-14-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-15-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-16-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-17-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-18-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-19-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-20-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-22-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-23-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-24-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-25-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-26-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-27-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-28-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-32-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-33-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-34-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-36-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-37-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-39-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-40-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-41-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-44-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-46-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-52-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-60-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-61-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-62-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-63-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-64-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-65-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-66-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-67-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-68-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-69-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-70-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-77-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-78-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-81-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-83-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/animate-elem-85-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/color-prof-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/color-prop-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/color-prop-02-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/color-prop-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-coord-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-coord-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-trans-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-units-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-units-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-units-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-color-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-composite-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-comptran-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-displace-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-example-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-felem-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-image-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-light-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-morph-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-offset-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-specular-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-tile-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/filters-turb-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-desc-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-cursor-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-dom-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-events-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-order-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-order-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-order-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/interact-zoom-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-a-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-uri-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-uri-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/linking-uri-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-mask-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/masking-path-04-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/metadata-example-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-fill-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-fill-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-fill-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-fill-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-fill-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-marker-01-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-marker-02-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-render-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-stroke-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-stroke-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-stroke-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-stroke-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/painting-stroke-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-03-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-09-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-10-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-13-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-14-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/paths-data-15-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-04-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-06-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-07-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-09-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-10-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-12-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-15-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-16-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-17-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-18-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-grad-19-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/script-handle-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/script-handle-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/script-handle-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/script-handle-04-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-ellipse-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-intro-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-line-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-polygon-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-polyline-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-cond-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-cond-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-cond-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-defs-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-frag-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-frag-05-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-frag-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-group-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-group-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-group-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-08-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-09-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-image-10-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-use-03-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/struct-use-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-css-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-css-02-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-css-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-css-05-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-css-06-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-inherit-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/styling-pres-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-align-04-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-deco-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-fonts-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-fonts-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-path-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-spacing-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-03-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-04-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-06-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-07-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-text-08-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-tref-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-tselect-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-tselect-02-f-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-tspan-01-b-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-ws-01-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/text-ws-02-t-expected.txt:
- platform/chromium-win/svg/W3C-SVG-1.1/types-basicDOM-01-b-expected.txt:
- platform/chromium/test_expectations.txt:
- 8:38 PM Changeset in webkit [68993] by
-
- 2 edits in trunk/LayoutTests
2010-10-03 Kent Tamura <tkent@chromium.org>
Unreviewed, upstreaming test expectations in Chromium tree.
- platform/chromium/test_expectations.txt:
- 7:37 PM Changeset in webkit [68992] by
-
- 2 edits in trunk/LayoutTests
2010-10-03 Kent Tamura <tkent@chromium.org>
Unreviewed, test expectation update for r68976.
- platform/chromium/test_expectations.txt:
- 7:29 PM Changeset in webkit [68991] by
-
- 2 edits1 delete in trunk/LayoutTests
2010-10-03 Dimitri Glazkov <Dimitri Glazkov>
Move chromium-win-xp-specific result to its proper place.
- platform/chromium-win-xp/svg/custom/js-late-pattern-and-object-creation-expected.txt:
- platform/chromium-win/svg/custom/js-late-pattern-and-object-creation-expected.txt: Removed.
- 6:22 PM Changeset in webkit [68990] by
-
- 64 edits27 copies19 adds in trunk/LayoutTests
2010-10-03 Dimitri Glazkov <Dimitri Glazkov>
Reviewed by Nikolas Zimmermann.
[Chromium] Rebaseline svg/custom tests due to http://trac.webkit.org/changeset/68976.
https://bugs.webkit.org/show_bug.cgi?id=47061
- platform/chromium-linux/svg/custom/alignment-baseline-modes-expected.checksum:
- platform/chromium-linux/svg/custom/alignment-baseline-modes-expected.png:
- platform/chromium-linux/svg/custom/alignment-baseline-modes-expected.txt: Added.
- platform/chromium-linux/svg/custom/altglyph-expected.checksum:
- platform/chromium-linux/svg/custom/altglyph-expected.png:
- platform/chromium-linux/svg/custom/altglyph-expected.txt: Added.
- platform/chromium-linux/svg/custom/broken-internal-references-expected.txt:
- platform/chromium-linux/svg/custom/container-opacity-clip-viewBox-expected.txt: Added.
- platform/chromium-linux/svg/custom/dominant-baseline-modes-expected.checksum:
- platform/chromium-linux/svg/custom/dominant-baseline-modes-expected.png:
- platform/chromium-linux/svg/custom/dominant-baseline-modes-expected.txt: Added.
- platform/chromium-linux/svg/custom/glyph-transformation-with-hkern-expected.checksum:
- platform/chromium-linux/svg/custom/glyph-transformation-with-hkern-expected.png:
- platform/chromium-linux/svg/custom/image-small-width-height-expected.checksum:
- platform/chromium-linux/svg/custom/image-small-width-height-expected.png:
- platform/chromium-linux/svg/custom/image-small-width-height-expected.txt: Added.
- platform/chromium-linux/svg/custom/invalid-fill-expected.txt: Added.
- platform/chromium-linux/svg/custom/invalid-fill-hex-expected.txt: Added.
- platform/chromium-linux/svg/custom/js-late-clipPath-and-object-creation-expected.txt: Added.
- platform/chromium-linux/svg/custom/js-late-clipPath-creation-expected.txt: Added.
- platform/chromium-linux/svg/custom/js-late-gradient-and-object-creation-expected.txt: Added.
- platform/chromium-linux/svg/custom/js-late-gradient-creation-expected.txt: Added.
- platform/chromium-linux/svg/custom/js-late-pattern-and-object-creation-expected.txt:
- platform/chromium-linux/svg/custom/js-late-pattern-creation-expected.txt: Added.
- platform/chromium-linux/svg/custom/pattern-rotate-expected.txt: Added.
- platform/chromium-linux/svg/custom/pattern-with-transformation-expected.txt: Added.
- platform/chromium-linux/svg/custom/pointer-events-text-expected.txt: Added.
- platform/chromium-linux/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: Added.
- platform/chromium-linux/svg/custom/stroke-width-large-expected.txt:
- platform/chromium-linux/svg/custom/struct-use-09-b-expected.txt:
- platform/chromium-linux/svg/custom/style-attribute-font-size-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-clip-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-dom-01-f-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-filter-expected.checksum:
- platform/chromium-linux/svg/custom/text-filter-expected.png:
- platform/chromium-linux/svg/custom/text-filter-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-letter-spacing-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-linking-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-repaint-including-stroke-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-rotation-expected.checksum: Added.
- platform/chromium-linux/svg/custom/text-rotation-expected.png: Added.
- platform/chromium-linux/svg/custom/text-rotation-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-whitespace-handling-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-x-dx-lists-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-x-dy-lists-expected.checksum: Added.
- platform/chromium-linux/svg/custom/text-x-dy-lists-expected.png: Added.
- platform/chromium-linux/svg/custom/text-x-dy-lists-expected.txt: Added.
- platform/chromium-linux/svg/custom/text-x-override-in-tspan-child-expected.checksum:
- platform/chromium-linux/svg/custom/text-x-override-in-tspan-child-expected.png:
- platform/chromium-linux/svg/custom/text-x-override-in-tspan-child-expected.txt: Added.
- platform/chromium-linux/svg/custom/use-on-text-expected.txt: Added.
- platform/chromium-linux/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Added.
- platform/chromium-mac/svg/custom/altglyph-expected.checksum: Added.
- platform/chromium-mac/svg/custom/altglyph-expected.png: Added.
- platform/chromium-win/svg/custom/alignment-baseline-modes-expected.checksum:
- platform/chromium-win/svg/custom/alignment-baseline-modes-expected.png:
- platform/chromium-win/svg/custom/alignment-baseline-modes-expected.txt:
- platform/chromium-win/svg/custom/altglyph-expected.checksum:
- platform/chromium-win/svg/custom/altglyph-expected.png:
- platform/chromium-win/svg/custom/altglyph-expected.txt:
- platform/chromium-win/svg/custom/broken-internal-references-expected.txt:
- platform/chromium-win/svg/custom/container-opacity-clip-viewBox-expected.txt:
- platform/chromium-win/svg/custom/dominant-baseline-modes-expected.checksum:
- platform/chromium-win/svg/custom/dominant-baseline-modes-expected.png:
- platform/chromium-win/svg/custom/dominant-baseline-modes-expected.txt:
- platform/chromium-win/svg/custom/glyph-transformation-with-hkern-expected.checksum:
- platform/chromium-win/svg/custom/glyph-transformation-with-hkern-expected.png:
- platform/chromium-win/svg/custom/image-small-width-height-expected.checksum:
- platform/chromium-win/svg/custom/image-small-width-height-expected.png:
- platform/chromium-win/svg/custom/image-small-width-height-expected.txt:
- platform/chromium-win/svg/custom/invalid-fill-expected.txt:
- platform/chromium-win/svg/custom/invalid-fill-hex-expected.txt:
- platform/chromium-win/svg/custom/js-late-clipPath-and-object-creation-expected.txt:
- platform/chromium-win/svg/custom/js-late-clipPath-creation-expected.txt:
- platform/chromium-win/svg/custom/js-late-gradient-and-object-creation-expected.txt:
- platform/chromium-win/svg/custom/js-late-gradient-creation-expected.txt:
- platform/chromium-win/svg/custom/js-late-pattern-and-object-creation-expected.txt: Added.
- platform/chromium-win/svg/custom/js-late-pattern-creation-expected.txt:
- platform/chromium-win/svg/custom/pattern-rotate-expected.txt:
- platform/chromium-win/svg/custom/pattern-with-transformation-expected.txt:
- platform/chromium-win/svg/custom/pointer-events-text-expected.txt:
- platform/chromium-win/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt:
- platform/chromium-win/svg/custom/stroke-width-large-expected.txt:
- platform/chromium-win/svg/custom/struct-use-09-b-expected.checksum: Added.
- platform/chromium-win/svg/custom/struct-use-09-b-expected.png: Added.
- platform/chromium-win/svg/custom/struct-use-09-b-expected.txt: Added.
- platform/chromium-win/svg/custom/style-attribute-font-size-expected.txt:
- platform/chromium-win/svg/custom/text-clip-expected.txt:
- platform/chromium-win/svg/custom/text-dom-01-f-expected.txt:
- platform/chromium-win/svg/custom/text-filter-expected.checksum:
- platform/chromium-win/svg/custom/text-filter-expected.png:
- platform/chromium-win/svg/custom/text-filter-expected.txt:
- platform/chromium-win/svg/custom/text-letter-spacing-expected.txt:
- platform/chromium-win/svg/custom/text-linking-expected.txt:
- platform/chromium-win/svg/custom/text-repaint-including-stroke-expected.txt:
- platform/chromium-win/svg/custom/text-rotation-expected.checksum: Added.
- platform/chromium-win/svg/custom/text-rotation-expected.png: Added.
- platform/chromium-win/svg/custom/text-rotation-expected.txt: Added.
- platform/chromium-win/svg/custom/text-whitespace-handling-expected.txt:
- platform/chromium-win/svg/custom/text-x-dx-lists-expected.txt:
- platform/chromium-win/svg/custom/text-x-dy-lists-expected.checksum: Added.
- platform/chromium-win/svg/custom/text-x-dy-lists-expected.png: Added.
- platform/chromium-win/svg/custom/text-x-dy-lists-expected.txt: Added.
- platform/chromium-win/svg/custom/text-x-override-in-tspan-child-expected.checksum:
- platform/chromium-win/svg/custom/text-x-override-in-tspan-child-expected.png:
- platform/chromium-win/svg/custom/text-x-override-in-tspan-child-expected.txt:
- platform/chromium-win/svg/custom/use-on-text-expected.txt:
- platform/chromium-win/svg/custom/use-referencing-nonexisting-symbol-expected.txt:
- platform/chromium/test_expectations.txt:
- 2:50 PM Changeset in webkit [68989] by
-
- 14 edits in trunk/WebKit2
Implement newly added Plugin/PluginController member functions for out of process plug-ins
https://bugs.webkit.org/show_bug.cgi?id=47065
<rdar://problem/8507194>
Reviewed by Sam Weinig.
- Platform/CoreIPC/Arguments.h:
Add typedefs.
- Platform/CoreIPC/HandleMessage.h:
(CoreIPC::handleMessage):
Add new handleMessage overload.
- PluginProcess/PluginControllerProxy.cpp:
(WebKit::PluginControllerProxy::create):
Add an isPrivateBrowsingEnabled boolean.
(WebKit::PluginControllerProxy::PluginControllerProxy):
Add an isPrivateBrowsingEnabled boolean.
(WebKit::PluginControllerProxy::proxiesForURL):
(WebKit::PluginControllerProxy::cookiesForURL):
(WebKit::PluginControllerProxy::setCookiesForURL):
Send messages to the web process.
(WebKit::PluginControllerProxy::isPrivateBrowsingEnabled):
Return whether private browsing is enabled or not.
(WebKit::PluginControllerProxy::handleKeyboardEvent):
Call Plugin::handleKeyboardEvent.
(WebKit::PluginControllerProxy::privateBrowsingStateChanged):
Call Plugin::privateBrowsingStateChanged.
- PluginProcess/PluginControllerProxy.messages.in:
Add new messages.
- PluginProcess/WebProcessConnection.cpp:
(WebKit::WebProcessConnection::createPlugin):
Pass the isPrivateBrowsingEnabled flag.
- PluginProcess/WebProcessConnection.h:
- PluginProcess/WebProcessConnection.messages.in:
Update CreatePlugin message parameters.
- WebProcess/Plugins/PluginProcessConnection.cpp:
(WebKit::PluginProcessConnection::didReceiveMessage):
(WebKit::PluginProcessConnection::didReceiveSyncMessage):
It's OK for a plug-in to not get a sync message.
- WebProcess/Plugins/PluginProcessConnection.h:
- WebProcess/Plugins/PluginProxy.cpp:
(WebKit::PluginProxy::handleKeyboardEvent):
(WebKit::PluginProxy::privateBrowsingStateChanged):
Send messages.
(WebKit::PluginProxy::proxiesForURL):
(WebKit::PluginProxy::cookiesForURL):
(WebKit::PluginProxy::setCookiesForURL):
Call the plug-in controller.
- WebProcess/Plugins/PluginProxy.messages.in:
Add new messages.
- 2:02 PM Changeset in webkit [68988] by
-
- 8 edits in trunk/WebKit2
Send keyboard events to plug-ins
https://bugs.webkit.org/show_bug.cgi?id=47064
<rdar://problem/8507148>
Reviewed by Sam Weinig.
- WebProcess/Plugins/Netscape/NetscapePlugin.cpp:
(WebKit::NetscapePlugin::handleKeyboardEvent):
Call platformHandleKeyboardEvent.
- WebProcess/Plugins/Netscape/mac/NetscapePluginMac.mm:
(WebKit::modifierFlags):
Return the modifier flags given a WebKeyboardEvent.
(WebKit::initializeKeyboardEvent):
Initialize an NPCocoaEvent from a WebKeyboardEvent.
(WebKit::NetscapePlugin::platformHandleKeyboardEvent):
Initialize the event and dispatch it using NPP_HandleEvent.
- WebProcess/Plugins/Netscape/qt/NetscapePluginQt.cpp:
(WebKit::NetscapePlugin::platformHandleKeyboardEvent):
Add stub.
- WebProcess/Plugins/Netscape/win/NetscapePluginWin.cpp:
(WebKit::NetscapePlugin::platformHandleKeyboardEvent):
Add stub.
- WebProcess/Plugins/Plugin.h:
Add handleKeyboardEvent.
- WebProcess/Plugins/PluginView.cpp:
(WebKit::PluginView::handleEvent):
Call Plugin::handleKeyboardEvent if we see a keydown or keyup event.
- 8:35 AM Changeset in webkit [68987] by
-
- 2 edits in trunk
2010-10-03 Dimitri Glazkov <Dimitri Glazkov>
Add Chromium depot_tools to files that git should ignore.
- .gitignore: Added WebKit/chromium/depot_tools.
- 2:22 AM Changeset in webkit [68986] by
-
- 2 edits in trunk/WebCore
2010-10-03 Adam Barth <abarth@webkit.org>
Reviewed by Holger Freyther.
ASSERT(m_state = Open); is bad news bears
https://bugs.webkit.org/show_bug.cgi?id=47057
Added by ap (review by darin) in http://trac.webkit.org/changeset/50951
Too bad the compiler doesn't catch these errors. I don't believe this
is possible to test.
- platform/network/cf/SocketStreamHandleCFNet.cpp: (WebCore::SocketStreamHandle::writeStreamCallback):
- 2:00 AM Changeset in webkit [68985] by
-
- 2 edits in trunk/WebCore
2010-10-03 Adam Barth <abarth@webkit.org>
Reviewed by Holger Freyther.
All the WebSocket tests crash
https://bugs.webkit.org/show_bug.cgi?id=47056
More code that tries to hold onto temporaries with references.
- websockets/WebSocketChannel.cpp: (WebCore::WebSocketChannel::didOpen):
- 1:19 AM Changeset in webkit [68984] by
-
- 2 edits in trunk/WebCore
2010-10-03 Adam Barth <abarth@webkit.org>
Reviewed by Holger Freyther.
All the WebSocket tests crash
https://bugs.webkit.org/show_bug.cgi?id=47055
This code attempts to hold onto temporary objects using references.
That doesn't work in C++. Instead, we need to actually store the
objects somewhere.
- bindings/js/JSWebSocketCustom.cpp: (WebCore::JSWebSocketConstructor::constructJSWebSocket):