WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
[patch]
Patch
patch.txt (text/plain), 1.42 MB, created by
Dave Hyatt
on 2012-04-11 11:00:43 PDT
(
hide
)
Description:
Patch
Filename:
MIME Type:
Creator:
Dave Hyatt
Created:
2012-04-11 11:00:43 PDT
Size:
1.42 MB
patch
obsolete
>Index: Source/WebCore/ChangeLog >=================================================================== >--- Source/WebCore/ChangeLog (revision 113879) >+++ Source/WebCore/ChangeLog (working copy) >@@ -1,3 +1,36 @@ >+2012-04-11 David Hyatt <hyatt@apple.com> >+ >+ https://bugs.webkit.org/show_bug.cgi?id=83614 >+ <rdar://problem/11177351> >+ >+ REGRESSION: Table on wikipedia overlaps float on right hand side. >+ >+ Revise how auto margins are resolved so that for objects that avoid floats, the available line >+ width is always used instead of the overall containing block width. computeLogicalWidth now >+ always properly computes inline margins (based off the object's current logicalTop() position) >+ and so the code in computeStartPositionDeltaForChildAvoidingFloats that recomputes inline >+ direction margins can now be removed. >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ Added new test in fast/block/float. >+ >+ * rendering/RenderBlock.cpp: >+ (WebCore::RenderBlock::computeStartPositionDeltaForChildAvoidingFloats): >+ (WebCore::RenderBlock::determineLogicalLeftPositionForChild): >+ * rendering/RenderBlock.h: >+ (RenderBlock): >+ * rendering/RenderBox.cpp: >+ (WebCore::RenderBox::containingBlockAvailableLineWidthInRegion): >+ (WebCore): >+ (WebCore::RenderBox::computeLogicalWidthInRegion): >+ (WebCore::RenderBox::renderBoxRegionInfo): >+ (WebCore::RenderBox::shrinkToAvoidFloats): >+ * rendering/RenderBox.h: >+ (RenderBox): >+ * rendering/RenderTable.cpp: >+ (WebCore::RenderTable::computeLogicalWidth): >+ > 2012-04-11 Philip Rogers <pdr@google.com> > > Fix bug where stroke's bounding box was clipped >Index: Source/WebCore/rendering/RenderBlock.cpp >=================================================================== >--- Source/WebCore/rendering/RenderBlock.cpp (revision 113875) >+++ Source/WebCore/rendering/RenderBlock.cpp (working copy) >@@ -2019,7 +2019,7 @@ LayoutUnit RenderBlock::estimateLogicalT > } > > LayoutUnit RenderBlock::computeStartPositionDeltaForChildAvoidingFloats(const RenderBox* child, LayoutUnit childMarginStart, >- LayoutUnit childLogicalWidth, RenderRegion* region, LayoutUnit offsetFromLogicalTopOfFirstPage) >+ RenderRegion* region, LayoutUnit offsetFromLogicalTopOfFirstPage) > { > LayoutUnit startPosition = startOffsetForContent(region, offsetFromLogicalTopOfFirstPage); > >@@ -2036,24 +2036,9 @@ LayoutUnit RenderBlock::computeStartPosi > if (childMarginStart < 0) > startOff += childMarginStart; > newPosition = max(newPosition, startOff); // Let the float sit in the child's margin if it can fit. >- } else if (startOff != startPosition) { >- // The object is shifting to the "end" side of the block. The object might be centered, so we need to >- // recalculate our inline direction margins. Note that the containing block content >- // width computation will take into account the delta between |startOff| and |startPosition| >- // so that we can just pass the content width in directly to the |computeMarginsInContainingBlockInlineDirection| >- // function. >- LayoutUnit oldMarginStart = marginStartForChild(child); >- LayoutUnit oldMarginEnd = marginEndForChild(child); >- RenderBox* mutableChild = const_cast<RenderBox*>(child); >- mutableChild->computeInlineDirectionMargins(this, >- availableLogicalWidthForLine(blockOffset, false, region, offsetFromLogicalTopOfFirstPage), childLogicalWidth); >- newPosition = startOff + marginStartForChild(child); >- if (inRenderFlowThread()) { >- setMarginStartForChild(mutableChild, oldMarginStart); >- setMarginEndForChild(mutableChild, oldMarginEnd); >- } >- } >- >+ } else if (startOff != startPosition) >+ newPosition = startOff + childMarginStart; >+ > return newPosition - oldPosition; > } > >@@ -2071,7 +2056,7 @@ void RenderBlock::determineLogicalLeftPo > // Some objects (e.g., tables, horizontal rules, overflow:auto blocks) avoid floats. They need > // to shift over as necessary to dodge any floats that might get in the way. > if (child->avoidsFloats() && containsFloats() && !inRenderFlowThread()) >- newPosition += computeStartPositionDeltaForChildAvoidingFloats(child, marginStartForChild(child), logicalWidthForChild(child)); >+ newPosition += computeStartPositionDeltaForChildAvoidingFloats(child, marginStartForChild(child)); > > setLogicalLeftForChild(child, style()->isLeftToRightDirection() ? newPosition : totalAvailableLogicalWidth - newPosition - logicalWidthForChild(child), ApplyLayoutDelta); > } >Index: Source/WebCore/rendering/RenderBlock.h >=================================================================== >--- Source/WebCore/rendering/RenderBlock.h (revision 113875) >+++ Source/WebCore/rendering/RenderBlock.h (working copy) >@@ -373,8 +373,7 @@ public: > > void setStaticInlinePositionForChild(RenderBox*, LayoutUnit blockOffset, LayoutUnit inlinePosition); > >- LayoutUnit computeStartPositionDeltaForChildAvoidingFloats(const RenderBox* child, LayoutUnit childMarginStart, >- LayoutUnit childLogicalWidth, RenderRegion* = 0, LayoutUnit offsetFromLogicalTopOfFirstPage = 0); >+ LayoutUnit computeStartPositionDeltaForChildAvoidingFloats(const RenderBox* child, LayoutUnit childMarginStart, RenderRegion* = 0, LayoutUnit offsetFromLogicalTopOfFirstPage = 0); > > #ifndef NDEBUG > void showLineTreeAndMark(const InlineBox* = 0, const char* = 0, const InlineBox* = 0, const char* = 0, const RenderObject* = 0) const; >Index: Source/WebCore/rendering/RenderBox.cpp >=================================================================== >--- Source/WebCore/rendering/RenderBox.cpp (revision 113875) >+++ Source/WebCore/rendering/RenderBox.cpp (working copy) >@@ -1381,6 +1381,20 @@ LayoutUnit RenderBox::containingBlockLog > return max<LayoutUnit>(0, result - (cb->logicalWidth() - boxInfo->logicalWidth())); > } > >+LayoutUnit RenderBox::containingBlockAvailableLineWidthInRegion(RenderRegion* region, LayoutUnit offsetFromLogicalTopOfFirstPage) const >+{ >+ RenderBlock* cb = containingBlock(); >+ RenderRegion* containingBlockRegion = 0; >+ LayoutUnit logicalTopPosition = logicalTop(); >+ LayoutUnit adjustedPageOffsetForContainingBlock = offsetFromLogicalTopOfFirstPage - logicalTop(); >+ if (region) { >+ LayoutUnit offsetFromLogicalTopOfRegion = region ? region->offsetFromLogicalTopOfFirstPage() - offsetFromLogicalTopOfFirstPage : ZERO_LAYOUT_UNIT; >+ logicalTopPosition = max(logicalTopPosition, logicalTopPosition + offsetFromLogicalTopOfRegion); >+ containingBlockRegion = cb->clampToStartAndEndRegions(region); >+ } >+ return cb->availableLogicalWidthForLine(logicalTopPosition, false, containingBlockRegion, adjustedPageOffsetForContainingBlock); >+} >+ > LayoutUnit RenderBox::perpendicularContainingBlockLogicalHeight() const > { > RenderBlock* cb = containingBlock(); >@@ -1809,13 +1823,17 @@ void RenderBox::computeLogicalWidthInReg > } > > // Margin calculations. >- if (logicalWidthLength.isAuto() || hasPerpendicularContainingBlock) { >+ if (hasPerpendicularContainingBlock || isFloating() || isInline()) { > RenderView* renderView = view(); > setMarginStart(minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth, renderView)); > setMarginEnd(minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth, renderView)); >- } else >- computeInlineDirectionMargins(cb, containerLogicalWidth, logicalWidth()); >- >+ } else { >+ LayoutUnit containerLogicalWidthForAutoMargins = containerLogicalWidth; >+ if (avoidsFloats() && cb->containsFloats()) >+ containerLogicalWidthForAutoMargins = containingBlockAvailableLineWidthInRegion(region, offsetFromLogicalTopOfFirstPage); >+ computeInlineDirectionMargins(cb, containerLogicalWidthForAutoMargins, logicalWidth()); >+ } >+ > if (!hasPerpendicularContainingBlock && containerLogicalWidth && containerLogicalWidth != (logicalWidth() + marginStart() + marginEnd()) > && !isFloating() && !isInline() && !cb->isFlexibleBoxIncludingDeprecated()) > cb->setMarginEndForChild(this, containerLogicalWidth - logicalWidth() - cb->marginStartForChild(this)); >@@ -2019,8 +2037,7 @@ RenderBoxRegionInfo* RenderBox::renderBo > LayoutUnit logicalLeftOffset = 0; > > if (!isPositioned() && avoidsFloats() && cb->containsFloats()) { >- LayoutUnit startPositionDelta = cb->computeStartPositionDeltaForChildAvoidingFloats(this, marginStartInRegion, logicalWidthInRegion, >- region, offsetFromLogicalTopOfFirstPage); >+ LayoutUnit startPositionDelta = cb->computeStartPositionDeltaForChildAvoidingFloats(this, marginStartInRegion, region, offsetFromLogicalTopOfFirstPage); > if (cb->style()->isLeftToRightDirection()) > logicalLeftDelta += startPositionDelta; > else >@@ -3614,9 +3631,9 @@ bool RenderBox::shrinkToAvoidFloats() co > // Floating objects don't shrink. Objects that don't avoid floats don't shrink. Marquees don't shrink. > if ((isInline() && !isHTMLMarquee()) || !avoidsFloats() || isFloating()) > return false; >- >- // All auto-width objects that avoid floats should always use lineWidth. >- return style()->width().isAuto(); >+ >+ // Only auto width objects can possibly shrink to avoid floats. >+ return style()->width().isAuto(); > } > > bool RenderBox::avoidsFloats() const >Index: Source/WebCore/rendering/RenderBox.h >=================================================================== >--- Source/WebCore/rendering/RenderBox.h (revision 113875) >+++ Source/WebCore/rendering/RenderBox.h (working copy) >@@ -318,6 +318,7 @@ public: > > virtual LayoutUnit containingBlockLogicalWidthForContent() const; > LayoutUnit containingBlockLogicalWidthForContentInRegion(RenderRegion*, LayoutUnit offsetFromLogicalTopOfFirstPage) const; >+ LayoutUnit containingBlockAvailableLineWidthInRegion(RenderRegion*, LayoutUnit offsetFromLogicalTopOfFirstPage) const; > LayoutUnit perpendicularContainingBlockLogicalHeight() const; > > virtual void computeLogicalWidth(); >Index: Source/WebCore/rendering/RenderTable.cpp >=================================================================== >--- Source/WebCore/rendering/RenderTable.cpp (revision 113875) >+++ Source/WebCore/rendering/RenderTable.cpp (working copy) >@@ -254,9 +254,12 @@ void RenderTable::computeLogicalWidth() > // Finally, with our true width determined, compute our margins for real. > setMarginStart(0); > setMarginEnd(0); >- if (!hasPerpendicularContainingBlock) >- computeInlineDirectionMargins(cb, availableLogicalWidth, logicalWidth()); >- else { >+ if (!hasPerpendicularContainingBlock) { >+ LayoutUnit containerLogicalWidthForAutoMargins = availableLogicalWidth; >+ if (avoidsFloats() && cb->containsFloats()) >+ containerLogicalWidthForAutoMargins = containingBlockAvailableLineWidthInRegion(0, 0); // FIXME: Work with regions someday. >+ computeInlineDirectionMargins(cb, containerLogicalWidthForAutoMargins, logicalWidth()); >+ } else { > setMarginStart(minimumValueForLength(style()->marginStart(), availableLogicalWidth, renderView)); > setMarginEnd(minimumValueForLength(style()->marginEnd(), availableLogicalWidth, renderView)); > } >Index: LayoutTests/ChangeLog >=================================================================== >--- LayoutTests/ChangeLog (revision 113879) >+++ LayoutTests/ChangeLog (working copy) >@@ -1,3 +1,19 @@ >+2012-04-11 David Hyatt <hyatt@apple.com> >+ >+ https://bugs.webkit.org/show_bug.cgi?id=83614 >+ >+ Improve how auto margins are handled on objects that avoid floats. Add a new test covering this >+ for tables and overflow sections and revise existing results. The CSS2.1 test in particular is >+ a progression. >+ >+ Reviewed by NOBODY (OOPS!). >+ >+ * fast/block/float/avoiding-float-centered.html: Added. >+ * platform/mac/css2.1/20110323/replaced-elements-001-expected.txt: >+ * platform/mac/fast/block/float/avoiding-float-centered-expected.png: Added. >+ * platform/mac/fast/block/float/avoiding-float-centered-expected.txt: Added. >+ * platform/mac/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt: >+ > 2012-04-11 Philip Rogers <pdr@google.com> > > Fix bug where stroke's bounding box was clipped >@@ -147595,21987 +147611,4 @@ gh@apple.com> > [Qt]http/tests/xmlhttprequest/xmlhttprequest-missing-file-exception.html fails with Qt 4.8 > https://bugs.webkit.org/show_bug.cgi?id=60176 > >- * platform/qt-4.8/[...]: Added. >- * platform/qt-4.8/Skipped: Unskip http/tests/xmlhttprequest/xmlhttprequest-missing-file-exception.html. >- >-2011-07-14 Xan Lopez <xlopez@igalia.com> >- >- [GTK] Skip one crashing test in GTK+/debug bots. >- >- * platform/gtk/Skipped: >- >-2011-07-14 Xan Lopez <xlopez@igalia.com> >- >- [GTK] Skip one crashing test in GTK+/debug bots. >- >- * platform/gtk/Skipped: >- >-2011-07-14 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt]svg/animations/svgtransform-animation-1.html asserts intermittently >- https://bugs.webkit.org/show_bug.cgi?id=64526 >- >- * platform/qt/test_expectations.txt: Mark the test as flakey crash. >- >-2011-07-13 Pavel Podivilov <podivilov@chromium.org> >- >- Web Inspector: add test for css live edit. >- https://bugs.webkit.org/show_bug.cgi?id=64454 >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/inspector-test.js: >- (initialize_InspectorTest.InspectorTest.showResource): >- * http/tests/inspector/live-edit-test.js: Added. >- (initialize_LiveEditTest.InspectorTest.replaceInSource): >- (initialize_LiveEditTest): >- * inspector/debugger/live-edit.html: >- * inspector/styles/css-live-edit-expected.txt: Added. >- * inspector/styles/css-live-edit.html: Added. >- >-2011-07-14 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Add platform-specific test results for hybi tests >- https://bugs.webkit.org/show_bug.cgi?id=64349 >- >- Reviewed by Kent Tamura. >- >- These results are identical to ones in hixie76/ directory. >- >- * platform/chromium/http/tests/websocket/tests/hybi/bad-sub-protocol-control-chars-expected.txt: Added. >- * platform/chromium/http/tests/websocket/tests/hybi/url-parsing-expected.txt: Added. >- * platform/qt/http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii-expected.txt: Added. >- >-2011-07-14 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Update platform specific expected results after r90971. >- >- * platform/qt/fast/css/pseudo-cache-stale-expected.txt: >- * platform/qt/fast/forms/input-placeholder-text-indent-expected.png: >- * platform/qt/fast/forms/input-placeholder-text-indent-expected.txt: >- * platform/qt/fast/forms/isindex-placeholder-expected.png: Added. >- * platform/qt/fast/forms/isindex-placeholder-expected.txt: >- * platform/qt/fast/forms/password-placeholder-expected.png: Added. >- * platform/qt/fast/forms/password-placeholder-expected.txt: >- * platform/qt/fast/forms/password-placeholder-text-security-expected.png: Added. >- * platform/qt/fast/forms/password-placeholder-text-security-expected.txt: >- * platform/qt/fast/forms/placeholder-set-attribute-expected.png: Added. >- * platform/qt/fast/forms/placeholder-set-attribute-expected.txt: >- * platform/qt/fast/forms/placeholder-stripped-expected.png: >- * platform/qt/fast/forms/placeholder-stripped-expected.txt: >- * platform/qt/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/qt/fast/forms/search-styled-expected.txt: >- * platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.png: Added. >- * platform/qt/fast/forms/textarea-placeholder-pseudo-style-expected.txt: >- * platform/qt/fast/forms/textarea-placeholder-set-attribute-expected.png: Added. >- * platform/qt/fast/forms/textarea-placeholder-set-attribute-expected.txt: >- * platform/qt/test_expectations.txt: >- >-2011-07-14 MORITA Hajime <morrita@google.com> >- >- Unreviewed, rolling out r90976, r90981, and r90985. >- http://trac.webkit.org/changeset/90976 >- http://trac.webkit.org/changeset/90981 >- http://trac.webkit.org/changeset/90985 >- https://bugs.webkit.org/show_bug.cgi?id=64251 >- >- build break >- >- * fast/dom/shadow/content-element-includer-expected.txt: Removed. >- * fast/dom/shadow/content-element-includer.html: Removed. >- * platform/chromium-win/fast/html/details-nested-2-expected.txt: >- * platform/gtk/fast/html/details-nested-2-expected.txt: >- * platform/mac/fast/html/details-nested-2-expected.txt: >- * platform/qt/fast/html/details-nested-2-expected.txt: >- >-2011-07-14 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed gardening. >- >- * platform/qt/test_expectations.txt: Remove a passing test. >- >-2011-07-14 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Make an entry for input-appearance-range.html specific. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Add platform specific expected result for a new test. >- >- * platform/qt/fast/forms/textarea-placeholder-wrapping-expected.png: Added. >- * platform/qt/fast/forms/textarea-placeholder-wrapping-expected.txt: Added. >- >-2011-07-13 Ilya Tikhonovsky <loislo@chromium.org> >- >- Web Inspector: if you rename an element into the INPUT element the browser will crash. >- https://bugs.webkit.org/show_bug.cgi?id=64292 >- >- Reviewed by Joseph Pecoraro. >- >- * inspector/elements/edit-dom-actions-expected.txt: >- * inspector/elements/edit-dom-actions.html: >- >-2011-07-13 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Implement hybi handshake >- https://bugs.webkit.org/show_bug.cgi?id=64344 >- >- Reviewed by Kent Tamura. >- >- Fix existing tests so they match the new handshake format, and add tests for new header fields. >- >- There are several changes in the format of handshake response, such as: >- - Reason string in HTTP status line has been changed to "Switching Protocols". >- - The value of "Upgrade" header has been changed to "websocket" (lower-case only). >- - Sec-WebSocket-Location and Sec-WebSocket-Origin are gone. >- - "Challenge response" value (16-byte data after the response header fields) is removed, and >- Sec-WebSocket-Accept header is added instead. >- >- The value of Sec-WebSocket-Accept header is computed using compute_accept() function >- located in mod_pywebsocket.handshake.hybi06 module. Although the module name contains >- "hybi06", this function can be used to calculate the value of Sec-WebSocket-Accept header >- for hybi-10 (calculation method has not been changed since hybi-06). >- >- Note: Tests under hybi/ directory (including the new ones) are skipped and cannot be enabled >- yet, because pywebsocket does not accept requests from half-baked client implementation >- (i.e. hybi handshake + hixie-76 framing). They will be unskipped when hybi framing is landed >- in WebCore. >- >- * http/tests/websocket/tests/handler_map.txt: >- There must be only one handler that can handle requests to "/". hybi/echo-location_wsh.py >- is modified to accept requests of both protocol versions. >- * http/tests/websocket/tests/hybi/bad-handshake-crash_wsh.py: >- * http/tests/websocket/tests/hybi/echo-challenge_wsh.py: >- * http/tests/websocket/tests/hybi/echo-location_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-extensions-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-maxlength_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-accept-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null_wsh.py: >- * http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-wrong-accept-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/long-invalid-header_wsh.py: >- * http/tests/websocket/tests/hybi/workers/resources/echo-challenge_wsh.py: >- >-2011-07-13 MORITA Hajime <morrita@google.com> >- >- [ShadowContentElement] forwarded node should be able to access its hosting content element. >- https://bugs.webkit.org/show_bug.cgi?id=64251 >- >- Reviewed by Dimitri Glazkov. >- >- - Added a new test. >- - Updated expectations. This change make ShadowContentElement availability on NodeRenderingContext >- more strict. that makes some redundant node disappeared. >- >- * fast/dom/shadow/content-element-includer-expected.txt: Added. >- * fast/dom/shadow/content-element-includer.html: Added. >- * platform/chromium-win/fast/html/details-nested-2-expected.txt: >- * platform/gtk/fast/html/details-nested-2-expected.txt: >- * platform/mac/fast/html/details-nested-2-expected.txt: >- * platform/qt/fast/html/details-nested-2-expected.txt: >- >-2011-07-13 Vincent Scheib <scheib@chromium.org> >- >- [chromium] Update chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Kent Tamura <tkent@chromium.org> >- >- [Qt] Remove duplicated entries. >- >- * platform/qt/test_expectations.txt: >- >-2011-07-12 Dominic Cooney <dominicc@chromium.org> >- >- Raise if dispatchEvent dispatches an event that is being dispatched >- https://bugs.webkit.org/show_bug.cgi?id=64150 >- >- Reviewed by Dimitri Glazkov. >- >- * fast/dom/Window/window-properties-expected.txt: Added DISPATCH_REQUEST_ERR. >- * fast/events/dispatch-event-being-dispatched-expected.txt: Added. >- * fast/events/dispatch-event-being-dispatched.html: Added. >- * fast/workers/resources/worker-event-listener.js: >- (onmessage): Redispatching the MessageEvent throws an exception now. >- * platform/gtk/fast/dom/Window/window-properties-expected.txt: >- * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: >- * platform/qt/fast/dom/Window/window-properties-expected.txt: >- >-2011-07-13 Kent Tamura <tkent@chromium.org> >- >- Implement text field placeholders using shadow DOM >- https://bugs.webkit.org/show_bug.cgi?id=64253 >- >- Reviewed by Dimitri Glazkov. >- >- Add some test cases, and update expectations because placeholders >- have their renderers. >- >- * fast/forms/input-placeholder-text-indent.html: >- Remove an obsolete comment. A placeholder respects a percentage indent. >- * fast/forms/placeholder-position.html: >- Add tests for line-height and text-align. >- * fast/forms/textarea-placeholder-wrapping.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/gtk/test_expectations.txt: >- * platform/mac/fast/css/pseudo-cache-stale-expected.txt: >- * platform/mac/fast/forms/input-placeholder-text-indent-expected.png: >- * platform/mac/fast/forms/input-placeholder-text-indent-expected.txt: >- * platform/mac/fast/forms/isindex-placeholder-expected.png: >- * platform/mac/fast/forms/isindex-placeholder-expected.txt: >- * platform/mac/fast/forms/password-placeholder-expected.txt: >- * platform/mac/fast/forms/password-placeholder-text-security-expected.png: >- * platform/mac/fast/forms/password-placeholder-text-security-expected.txt: >- * platform/mac/fast/forms/placeholder-position-expected.png: >- * platform/mac/fast/forms/placeholder-position-expected.txt: >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.png: >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/mac/fast/forms/placeholder-set-attribute-expected.txt: >- * platform/mac/fast/forms/placeholder-stripped-expected.txt: >- * platform/mac/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/mac/fast/forms/search-styled-expected.png: >- * platform/mac/fast/forms/search-styled-expected.txt: >- * platform/mac/fast/forms/textarea-placeholder-pseudo-style-expected.txt: >- * platform/mac/fast/forms/textarea-placeholder-set-attribute-expected.txt: >- * platform/mac/fast/forms/textarea-placeholder-wrapping-expected.png: Added. >- * platform/mac/fast/forms/textarea-placeholder-wrapping-expected.txt: Added. >- * platform/qt/test_expectations.txt: >- >-2011-07-13 Mihnea Ovidenie <mihnea@adobe.com> >- >- [CSSRegions] Parse -webkit-content-order property >- https://bugs.webkit.org/show_bug.cgi?id=63897 >- >- Reviewed by David Hyatt. >- >- * fast/regions/script-tests/webkit-content-order-parsing.js: Added. >- * fast/regions/webkit-content-order-parsing-expected.txt: Added. >- * fast/regions/webkit-content-order-parsing.html: Added. >- >-2011-07-13 Michael Saboff <msaboff@apple.com> >- >- https://bugs.webkit.org/show_bug.cgi?id=64202 >- Enh: Improve handling of RegExp in the form of /.*blah.*/ >- >- Reviewed by Gavin Barraclough. >- >- New tests to support /.*<expression>.*/ enhancement. >- >- * fast/regex/dotstar-expected.txt: Added. >- * fast/regex/dotstar.html: Added. >- * fast/regex/script-tests/dotstar.js: Added. >- >-2011-07-13 Vincent Scheib <scheib@chromium.org> >- >- [chromium] Update chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Vincent Scheib <scheib@chromium.org> >- >- Unreviewed, rolling out r90957. >- http://trac.webkit.org/changeset/90957 >- >- Fixing incorrect test expectations >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Vincent Scheib <scheib@chromium.org> >- >- [chromium] Update chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Joseph Pecoraro <joepeck@webkit.org> >- >- ApplicationCache Quota Output is Flakey >- https://bugs.webkit.org/show_bug.cgi?id=64410 >- >- Reviewed by Alexey Proskuryakov. >- >- Have the tests truncate the number of bytes needed in >- the delegate callback to get an approximation of how >- much space was needed. >- >- * http/tests/appcache/origin-quota-continued-download-expected.txt: >- * http/tests/appcache/origin-quota-continued-download-multiple-manifests-expected.txt: >- * http/tests/appcache/origin-quota-continued-download-multiple-manifests.html: >- * http/tests/appcache/origin-quota-expected.txt: >- Update the output and clarify what the multiple-manifests test >- is looking for in the space needed output. >- >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- Unskip the tests. >- >-2011-07-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Update chromium gpu expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Prettify spacing in test_expectations.txt >- >- * platform/chromium/test_expectations.txt: Ran through the new parser/serializer code. >- >-2011-07-12 Gavin Barraclough <barraclough@apple.com> >- >- https://bugs.webkit.org/show_bug.cgi?id=64424 >- Our direct eval behaviour deviates slightly from the spec. >- >- Reviewed by Oliver Hunt. >- >- Correct expected results. >- >- * fast/js/eval-keyword-vs-function-expected.txt: >- * fast/js/eval-keyword-vs-function.html: >- >-2011-07-13 Abhishek Arya <inferno@chromium.org> >- >- Tests that we do not crash when frame is blown away in a beforeload >- event. >- https://bugs.webkit.org/show_bug.cgi?id=64457 >- >- Reviewed by Adam Barth. >- >- * fast/events/form-iframe-target-before-load-crash.html: >- * fast/events/form-iframe-target-before-load-crash2-expected.txt: Added. >- * fast/events/form-iframe-target-before-load-crash2.html: Added. >- >-2011-07-13 Mihnea Ovidenie <mihnea@adobe.com> >- >- [CSSRegions]content:-webkit-from-flow not applied correctly >- https://bugs.webkit.org/show_bug.cgi?id=64438 >- >- Reviewed by Tony Chang. >- >- Correct the layout test for content:-webkit-from-flow parsing. Testing getComputedStyle values for content property >- was not done properly, as "flow-name" was passed instead of "-webkit-from-flow:'flow-name'". >- >- * fast/regions/content-webkit-from-flow-parsing-expected.txt: >- * fast/regions/script-tests/content-webkit-from-flow-parsing.js: >- >-2011-07-12 Philippe Normand <pnormand@igalia.com> >- >- [GTK] media/media-blocked-by-willsendrequest.html fails >- https://bugs.webkit.org/show_bug.cgi?id=63699 >- >- Reviewed by Martin Robinson. >- >- * platform/gtk/Skipped: Unskip fixed test. >- >-2011-07-13 Gabor Loki <loki@webkit.org> >- >- [Qt] Flakey test: xmlhttprequest-50ms-download-dispatch.html on ARM >- https://bugs.webkit.org/show_bug.cgi?id=64452 >- >- Rubber-stamped by Csaba Osztrogonác >- >- * platform/qt-arm/Skipped: >- >-2011-07-13 John Knottenbelt <jknotten@chromium.org> >- >- Reference Geolocation object from GeoNotifier and Geolocation::setIsAllowed. >- https://bugs.webkit.org/show_bug.cgi?id=64363 >- >- Reviewed by Tony Gentilcore. >- >- * fast/dom/Geolocation/remove-remote-context-in-error-callback-crash.html: Added. >- * fast/dom/Geolocation/resources/remove-remote-context-in-error-callback-crash-inner.html: Added. >- * fast/dom/Geolocation/script-tests/remove-remote-context-in-error-callback-crash.js: Added. >- * fast/dom/Geolocation/remove-remote-context-in-error-callback-crash-expected.txt: Added. >- (gc): >- (onIframeReady): >- >-2011-07-13 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed gardening. >- >- * platform/qt-mac/Skipped: Skip failing tests. >- * platform/qt/Skipped: Skip svg/text/small-fonts-2.svg because of the 32/64 bit bug. >- >-2011-07-13 Benjamin Poulain <benjamin@webkit.org> >- >- [Qt] REGRESSION(r90634): It made http/tests/misc/script-async.html fail with Qt 4.8.x >- https://bugs.webkit.org/show_bug.cgi?id=64352 >- >- Reviewed by Andreas Kling. >- >- Unskip http/tests/misc/script-async.html since the original change has been reverted. >- >- * platform/qt-4.8/Skipped: >- >-2011-07-13 Kristóf Kosztyó <Kosztyo.Kristof@stud.u-szeged.hu> >- >- [Qt] Add expected results for the new passing tests and unskip them. >- >- Reviewed by Csaba Osztrogonác. >- >- * platform/qt/Skipped: >- * platform/qt/fast/[...]: Added. >- * platform/qt/svg/[...]: Added. >- >-2011-07-13 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r90893 and r90894. >- http://trac.webkit.org/changeset/90893 >- http://trac.webkit.org/changeset/90894 >- https://bugs.webkit.org/show_bug.cgi?id=64441 >- >- NRWT still doesn't work on qt-mac platform (Requested by Ossy >- on #webkit). >- >- * platform/qt-mac/Skipped: >- >-2011-07-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Add chromium mac gpu baseline for webgl-background-color.html >- >- * platform/chromium-gpu-mac/compositing/webgl/webgl-background-color-expected.png: Added. >- >-2011-07-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Add two chromium gpu linux baselines. >- >- * platform/chromium-gpu-linux/compositing/masks/masked-ancestor-expected.png: >- * platform/chromium-gpu-linux/platform/chromium/compositing/tiny-layer-rotated-expected.png: Added. >- >-2011-07-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Assorted chromium gpu rebaselines and expectation cleanups. >- >- * platform/chromium-gpu-linux/compositing/geometry/ancestor-overflow-change-expected.png: Added. >- * platform/chromium-gpu-linux/compositing/webgl/webgl-background-color-expected.png: Added. >- * platform/chromium-gpu-linux/fast/canvas/arc360-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/canvas-composite-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/canvas-text-alignment-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/canvas-text-baseline-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/canvas-transforms-during-path-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/drawImage-with-globalAlpha-expected.png: Removed. >- * platform/chromium-gpu-linux/fast/canvas/fillrect-gradient-zero-stops-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/fillrect_gradient-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/image-object-in-canvas-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/image-pattern-rotate-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/patternfill-repeat-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/quadraticCurveTo-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/ancestor-overflow-change-expected.png: Added. >- * platform/chromium-gpu-mac/compositing/geometry/composited-html-size-expected.png: Added. >- * platform/chromium-gpu-mac/compositing/geometry/limit-layer-bounds-transformed-overflow-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/tiling/crash-reparent-tiled-layer-expected.txt: Added. >- * platform/chromium-gpu-win/compositing/geometry/ancestor-overflow-change-expected.png: Added. >- * platform/chromium-gpu-win/compositing/geometry/ancestor-overflow-change-expected.txt: Added. >- * platform/chromium-gpu-win/compositing/webgl/webgl-background-color-expected.png: Added. >- * platform/chromium-gpu-win/compositing/webgl/webgl-background-color-expected.txt: Added. >- * platform/chromium-gpu-win/fast/canvas/arc360-expected.png: >- * platform/chromium-gpu-win/fast/canvas/canvas-composite-expected.png: >- * platform/chromium-gpu-win/fast/canvas/canvas-text-alignment-expected.png: >- * platform/chromium-gpu-win/fast/canvas/canvas-text-baseline-expected.png: >- * platform/chromium-gpu-win/fast/canvas/canvas-transforms-during-path-expected.png: >- * platform/chromium-gpu-win/fast/canvas/drawImage-with-globalAlpha-expected.png: Removed. >- * platform/chromium-gpu-win/fast/canvas/fillrect-gradient-zero-stops-expected.png: >- * platform/chromium-gpu-win/fast/canvas/fillrect_gradient-expected.png: >- * platform/chromium-gpu-win/fast/canvas/image-object-in-canvas-expected.png: >- * platform/chromium-gpu-win/fast/canvas/image-pattern-rotate-expected.png: >- * platform/chromium-gpu-win/fast/canvas/patternfill-repeat-expected.png: >- * platform/chromium-gpu-win/fast/canvas/quadraticCurveTo-expected.png: >- * platform/chromium-linux/fast/canvas/canvas-composite-expected.png: >- * platform/chromium-mac/fast/canvas/canvas-composite-expected.png: Added. >- * platform/chromium-win/fast/canvas/canvas-composite-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Unreviewed gardening. >- >- * platform/qt-mac/Skipped: Remove 2 tests, because they are in test_expectations.txt too. >- >-2011-07-13 James Robinson <jamesr@chromium.org> >- >- [chromium] More edge AA and misc chromium gpu baselines and expectations updates. >- >- * platform/chromium-gpu-linux/compositing/color-matching/image-color-matching-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/fixed-position-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-deep-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/layer-due-to-layer-children-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/overflow/fixed-position-ancestor-clip-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transition-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/transform-inside-reflection-expected.png: >- * platform/chromium-gpu-linux/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-linux/compositing/transitions/scale-transition-no-start-expected.png: >- * platform/chromium-gpu-linux/media/video-canvas-alpha-expected.png: >- * platform/chromium-gpu-linux/media/video-transformed-expected.png: >- * platform/chromium-gpu-linux/media/video-zoom-controls-expected.png: >- * platform/chromium-gpu-linux/platform/chromium/compositing/backface-visibility-transformed-expected.png: Added. >- * platform/chromium-gpu-linux/platform/chromium/compositing/huge-layer-rotated-expected.png: >- * platform/chromium-gpu-mac/compositing/color-matching/image-color-matching-expected.png: >- * platform/chromium-gpu-mac/compositing/framesets/composited-frame-alignment-expected.png: Added. >- * platform/chromium-gpu-mac/compositing/geometry/fixed-position-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/layer-due-to-layer-children-deep-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/layer-due-to-layer-children-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium-gpu-mac/compositing/overflow/fixed-position-ancestor-clip-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/nested-reflection-transition-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/transform-inside-reflection-expected.png: >- * platform/chromium-gpu-mac/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-mac/compositing/transitions/scale-transition-no-start-expected.png: >- * platform/chromium-gpu-mac/media/video-transformed-expected.png: >- * platform/chromium-gpu-mac/media/video-zoom-controls-expected.png: >- * platform/chromium-gpu-mac/platform/chromium/compositing/backface-visibility-transformed-expected.png: Added. >- * platform/chromium-gpu-mac/platform/chromium/compositing/huge-layer-rotated-expected.png: >- * platform/chromium-gpu-mac/platform/chromium/compositing/tiny-layer-rotated-expected.png: Added. >- * platform/chromium-gpu-win/compositing/color-matching/image-color-matching-expected.png: >- * platform/chromium-gpu-win/compositing/framesets/composited-frame-alignment-expected.png: Added. >- * platform/chromium-gpu-win/compositing/geometry/fixed-position-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/layer-due-to-layer-children-deep-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/layer-due-to-layer-children-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium-gpu-win/compositing/overflow/fixed-position-ancestor-clip-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/nested-reflection-transition-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/transform-inside-reflection-expected.png: >- * platform/chromium-gpu-win/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-win/compositing/transitions/scale-transition-no-start-expected.png: >- * platform/chromium-gpu-win/media/video-canvas-alpha-expected.png: >- * platform/chromium-gpu-win/media/video-transformed-expected.png: >- * platform/chromium-gpu-win/media/video-zoom-controls-expected.png: >- * platform/chromium-gpu-win/platform/chromium/compositing/backface-visibility-transformed-expected.png: Added. >- * platform/chromium-gpu-win/platform/chromium/compositing/huge-layer-rotated-expected.png: >- * platform/chromium-gpu-win/platform/chromium/compositing/tiny-layer-rotated-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-13 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed gardening. >- >- * platform/qt-4.8/Skipped: Skip http/tests/misc/script-async.html until fix. >- * platform/qt-mac/Skipped: Skip new failing tests. >- * platform/qt/test_expectations.txt: Mark slow tests. >- >-2011-07-12 James Robinson <jamesr@chromium.org> >- >- [chromium] Update expectations+baselines for edge AA changes. >- >- * platform/chromium-gpu-linux/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/fixed-in-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/tall-page-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/masks/simple-composited-mask-expected.png: >- * platform/chromium-gpu-linux/media/video-zoom-expected.png: >- * platform/chromium-gpu-linux/platform/chromium/compositing/layout-width-change-expected.png: >- * platform/chromium-gpu-linux/platform/chromium/compositing/perpendicular-layer-sorting-expected.png: Added. >- * platform/chromium-gpu-mac/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-mac/platform/chromium/compositing/layout-width-change-expected.png: >- * platform/chromium-gpu-mac/platform/chromium/compositing/perpendicular-layer-sorting-expected.png: >- * platform/chromium-gpu-win/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/fixed-in-composited-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-win/compositing/iframes/composited-iframe-alignment-expected.png: >- * platform/chromium-gpu-win/platform/chromium/compositing/child-layer-3d-sorting-expected.png: Added. >- * platform/chromium-gpu-win/platform/chromium/compositing/child-layer-3d-sorting-expected.txt: Added. >- * platform/chromium-gpu-win/platform/chromium/compositing/layout-width-change-expected.png: >- * platform/chromium-gpu-win/platform/chromium/compositing/perpendicular-layer-sorting-expected.png: Added. >- * platform/chromium-gpu-win/platform/chromium/compositing/perpendicular-layer-sorting-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-12 David Reveman <reveman@chromium.org> >- >- [Chromium] Use nearest filter method with pixel aligned transforms. >- https://bugs.webkit.org/show_bug.cgi?id=64338 >- >- Reviewed by James Robinson. >- >- Update expected results. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-12 Filip Pizlo <fpizlo@apple.com> >- >- DFG JIT does not implement op_construct. >- https://bugs.webkit.org/show_bug.cgi?id=64066 >- >- Reviewed by Gavin Barraclough. >- >- Added a test for the DFG op_construct regression, where polymorphic constructor >- calls will result in the code being compiled for call but then invoked as a >- constructor. This test will fail if that part of the patch is omitted. >- >- * fast/js/polymorphic-construct-expected.txt: Added. >- * fast/js/polymorphic-construct.html: Added. >- * fast/js/script-tests/polymorphic-construct.js: Added. >- (Foo): >- (): >- >-2011-07-12 Chris Rogers <crogers@google.com> >- >- Enable Web Audio for chromium DRT >- https://bugs.webkit.org/show_bug.cgi?id=64409 >- >- Reviewed by James Robinson. >- >- * platform/chromium/fast/dom/prototype-inheritance-expected.txt: >- >-2011-07-12 Oliver Hunt <oliver@apple.com> >- >- Overzealous type validation in method_check >- https://bugs.webkit.org/show_bug.cgi?id=64415 >- >- Reviewed by Gavin Barraclough. >- >- Make sure we don't trip any assertions when caching access >- to an InternalFunction >- >- * fast/js/script-tests/method-check.js: >- >-2011-07-12 Joseph Pecoraro <joepeck@webkit.org> >- >- Unreviewed. Skipping a few tests which fail due to differing output >- in recent ApplicationCache quota tests. Reenabling the tests is >- tracked by <http://webkit.org/b/64410>. >- >- * platform/mac/Skipped: >- >-2011-07-12 Joseph Pecoraro <joepeck@webkit.org> >- >- Unreviewed. Skipping a few tests which fail due to differing output >- in recent ApplicationCache quota tests. Reenabling the tests is >- tracked by <http://webkit.org/b/64410>. >- >- * platform/qt/Skipped: >- >-2011-07-12 Kenichi Ishibashi <bashi@chromium.org> >- >- [Chromium] SVG text is not rendered sometimes with geometricPrecision >- https://bugs.webkit.org/show_bug.cgi?id=64341 >- >- Add a test for the regression that the text is not rendered with geometricPrecision. >- >- Reviewed by Tony Chang. >- >- * platform/chromium-linux/svg/text/text-with-geometric-precision-expected.png: Added. >- * platform/chromium-linux/svg/text/text-with-geometric-precision-expected.txt: Added. >- * platform/chromium-linux/svg/text/text-with-geometric-precision.svg: Added. >- >-2011-07-12 Alexandru Chiculita <achicu@adobe.com> >- >- Reviewed by David Hyatt. >- >- [CSS Exclusions] Parse wrap-shape property >- https://bugs.webkit.org/show_bug.cgi?id=61726 >- >- * fast/exclusions/parsing-wrap-shape-expected.txt: Added. >- * fast/exclusions/parsing-wrap-shape.html: Added. >- * fast/exclusions/script-tests/parsing-wrap-shape.js: Added. >- (testCSSText): >- (testComputedStyle): >- (testNotInherited): >- (test): >- (negative_test): >- >-2011-07-12 Joseph Pecoraro <joepeck@webkit.org> >- >- ApplicationCache update should not immediately fail when reaching per-origin quota >- https://bugs.webkit.org/show_bug.cgi?id=64177 >- >- Reviewed by Alexey Proskuryakov. >- >- Include spaceNeeded information in the output dumped for appcache quota delegates. >- Add and update tests related to handling of per-origin quotas. >- >- * http/tests/appcache/origin-quota-continued-download-expected.txt: Added. >- * http/tests/appcache/origin-quota-continued-download.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download.manifest: Added. >- New test which checks that there will still be a successful cache >- when the per-origin quota is reached and increased at the end of downloading. >- >- * http/tests/appcache/origin-quota-continued-download-multiple-manifests-expected.txt: Added. >- * http/tests/appcache/origin-quota-continued-download-multiple-manifests.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download-multiple-manifests-1.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download-multiple-manifests-1.manifest: Added. >- * http/tests/appcache/resources/quota-origin-continued-download-multiple-manifests-2.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download-multiple-manifests-2.manifest: Added. >- * http/tests/appcache/resources/quota-origin-continued-download.html: Added. >- * http/tests/appcache/resources/quota-origin-continued-download.manifest: Added. >- New test which checks that the spaceNeeded appropriately lists enough space for >- multiple manifests across multiple frames for the same origin. >- >- * http/tests/appcache/resources/quota-origin-iframe-3.manifest: Fix a typo. >- * http/tests/appcache/origin-quota.html: >- Update the old test to disallow automatic increase of the quota, >- which is the default handling of DRT when reaching the quota. >- >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- * platform/wk2/Skipped: >- Skip the test on ports that don't implement ApplicationCache per-origin quotas. >- >-2011-07-12 Pavel Feldman <pfeldman@google.com> >- >- Web Inspector: introduce UserMetrics for collecting stats in Chromium port. >- https://bugs.webkit.org/show_bug.cgi?id=64350 >- >- Reviewed by Yury Semikhatsky. >- >- * inspector/user-metrics-expected.txt: Added. >- * inspector/user-metrics.html: Added. >- >-2011-07-12 Jeff Timanus <twiz@chromium.org> >- >- Reviewed by Stephen White. >- >- Suppress flaky Chromium layout tests. >- https://bugs.webkit.org/show_bug.cgi?id=64308 >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-12 Noel Gordon <noel.gordon@gmail.com> >- >- Remove results for iframe-outline.html >- https://bugs.webkit.org/show_bug.cgi?id=64343 >- >- fast/frames/iframe-outline.html was reverted in bug 57439 (another test >- added to replace it). Remove the redundant iframe-outline test results. >- >- Reviewed by Tony Chang. >- >- * platform/chromium-win/fast/frames/iframe-outline-expected.png: Removed. >- * platform/chromium/iframe-outline-expected.png: Removed. >- * platform/gtk/fast/frames/iframe-outline-expected.png: Removed. >- * platform/gtk/fast/frames/iframe-outline-expected.txt: Removed. >- >-2011-07-12 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs an implemenation of allowRoundingHacks >- https://bugs.webkit.org/show_bug.cgi?id=63477 >- >- Add platform/mac/fast/text/rounding-hacks-expansion.html to the wk2 Skipped list to get the >- bots green. >- >- * platform/wk2/Skipped: >- >-2011-07-12 Pavel Podivilov <podivilov@chromium.org> >- >- Web Inspector: make TextViewerDelegate methods implementations public in SourceFrame. >- https://bugs.webkit.org/show_bug.cgi?id=64353 >- >- Reviewed by Pavel Feldman. >- >- * inspector/debugger/live-edit.html: >- >-2011-07-12 Adam Roben <aroben@apple.com> >- >- Update Windows expected results for plugins/mouse-events-fixedpos.html after r90742 >- >- * platform/win/plugins/mouse-events-fixedpos-expected.txt: >- >-2011-07-12 Eric Seidel <eric@webkit.org> >- >- [Qt] NRWT should pick up the right httpd config file >- https://bugs.webkit.org/show_bug.cgi?id=64086 >- >- Reviewed by Adam Barth. >- >- Removed this old httpd.conf file (used by Tiger and old linux distros) >- since no supported WebKit ports use it anymore. >- >- * http/conf/httpd.conf: Removed. >- >-2011-07-11 Hironori Bono <hbono@chromium.org> >- >- Reviewed by Adam Roben. >- >- Implement layoutTestController.setTextDirection for WebKit2 and Windows. >- https://bugs.webkit.org/show_bug.cgi?id=61931 >- >- This change implements layoutTextController.setTextDirection for WebKit2 >- and Windows so we can run a layout test added by r87770 on them. Each >- implementation adds a wrapper function for Editor::setBaseWritingDirection() >- so LayoutTestController can call it. >- >- * platform/mac-wk2/Skipped: Removed set-text-direction.html. >- * platform/win/Skipped: ditto. >- >-2011-07-11 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip hittest-on-relative-positioned-children.html in WebKit2. >- >- * platform/wk2/Skipped: >- >-2011-07-11 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Remove WebSocket tests that do not apply to hybi protocol >- https://bugs.webkit.org/show_bug.cgi?id=64288 >- >- Reviewed by Kent Tamura. >- >- Remove tests from http/tests/websocket/tests/hybi that are not meaningful in terms of >- the hybi protocol. The most recent WebSocket protocol draft is available at >- <http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10>, and referred as >- "hybi-10" here. >- >- * http/tests/websocket/tests/hybi/error-detect-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/error-detect.html: Removed. >- Hybi protocol has a completely different scheme of representing frame types. >- Additionally, hybi-10 no longer fires "error" events (which invoke "onerror" handler). >- * http/tests/websocket/tests/hybi/fixed-origin_wsh.py: Removed. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer.html: Removed. >- Variable-length encoding (which is used to represent frame length in hixie-76) is no longer >- used in hybi-10. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer_wsh.py: Removed. >- * http/tests/websocket/tests/hybi/frame-length-overflow-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/frame-length-overflow.html: Removed. Ditto. >- * http/tests/websocket/tests/hybi/frame-length-overflow_wsh.py: Removed. >- * http/tests/websocket/tests/hybi/frame-length-skip-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/frame-length-skip.html: Removed. >- There are two ways to indicate the length of a frame in hixie-76 protocol, but >- hybi-10 has only one method (length-prefixed frames). Skipping unwanted frames will >- be covered by other tests that will be added in a later patch. >- * http/tests/websocket/tests/hybi/frame-length-skip_wsh.py: Removed. >- * http/tests/websocket/tests/hybi/handshake-fail-by-cross-origin-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/handshake-fail-by-cross-origin.html: Removed. >- In hybi-10, servers no longer returns Origin header in handshake response, and clients >- are not required to validate this value. >- * http/tests/websocket/tests/hybi/handshake-fail-by-sub-protocol-mismatch-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/handshake-fail-by-sub-protocol-mismatch.html: Removed. >- In hybi-10, clients are not required to (and must not) compare the values of subprotocols >- in client's request and server's response. >- * http/tests/websocket/tests/hybi/unknown-frame-type_wsh.py: Removed. >- * http/tests/websocket/tests/hybi/url-with-query-for-no-query-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/url-with-query-for-no-query.html: Removed. >- In hybi-10, servers do not provide "Sec-WebSocket-Location" header, and clients are not required >- to validate this value. >- * http/tests/websocket/tests/hybi/websocket-protocol-ignored-expected.txt: Removed. >- * http/tests/websocket/tests/hybi/websocket-protocol-ignored.html: Removed. >- Same as handshake-fail-by-sub-protocol-mismatch.html. >- >-2011-07-11 Ryosuke Niwa <rniwa@webkit.org> >- >- positionForPoint is broken when a block is positioned relatively inside the parent >- https://bugs.webkit.org/show_bug.cgi?id=64298 >- >- Reviewed by Simon Fraser. >- >- Added a test for hit testing on relatively positioned children. >- >- * fast/block/positioning/hittest-on-relative-positioned-children-expected.txt: Added. >- * fast/block/positioning/hittest-on-relative-positioned-children.html: Added. >- >-2011-07-11 Dan Bernstein <mitz@apple.com> >- >- Excessive expansion of justified text when rounding hacks are enabled >- https://bugs.webkit.org/show_bug.cgi?id=64331 >- >- Reviewed by Anders Carlsson. >- >- * platform/mac/fast/text/rounding-hacks-expansion.html: Added. >- * platform/mac/platform/mac/fast/text/rounding-hacks-expansion-expected.png: Added. >- * platform/mac/platform/mac/fast/text/rounding-hacks-expansion-expected.txt: Added. >- >-2011-07-11 Ojan Vafai <ojan@chromium.org> >- >- Win7 rebaselines after http://trac.webkit.org/changeset/90701. >- Should have been part of http://trac.webkit.org/changeset/90716/, >- but the Win7 bot was down at that time. >- >- * platform/chromium-win/http/tests/loading/simple-subframe-expected.png: >- * platform/chromium-win/http/tests/local/file-url-sent-as-referer-expected.png: >- * platform/chromium-win/http/tests/misc/acid2-pixel-expected.png: >- * platform/chromium-win/http/tests/misc/iframe404-expected.png: >- * platform/chromium-win/http/tests/misc/location-replace-crossdomain-expected.png: >- * platform/chromium-win/http/tests/multipart/invalid-image-data-standalone-expected.png: >- * platform/chromium-win/http/tests/navigation/javascriptlink-frames-expected.png: >- * platform/chromium/test_expectations.txt: >- Removing useless duplicated comment line. >- >-2011-07-11 Ojan Vafai <ojan@chromium.org> >- >- Update expectation that was missed because the WIN7 bot was down for a long time. >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Dirk Pranke <dpranke@chromium.org> >- >- update the boilerplate documentation in the test_expectations.txt files >- https://bugs.webkit.org/show_bug.cgi?id=64221 >- >- Reviewed by Eric Seidel. >- >- The test expectations files either had documentation for the >- Chromium port's version of the file (which was also incorrect), >- or were undocumented. This adds a comment with a link to the >- documentation for the file to each. >- >- * platform/chromium/test_expectations.txt: >- * platform/gtk/test_expectations.txt: >- * platform/mac/test_expectations.txt: >- * platform/qt/test_expectations.txt: >- * platform/win/test_expectations.txt: >- >-2011-07-11 Dirk Pranke <dpranke@chromium.org> >- >- Skip plugins/evaluate-js-after-removing-plugin-element.html on Chromium Vista. >- >- https://bugs.webkit.org/show_bug.cgi?id=64319 >- >- Unreviewed, expectations change. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Yi Shen <yi.4.shen@nokia.com> >- >- [Qt] Unreviewed rollout 90779 which may fail the layout-test. >- >- * loader/load-defer-resume-crash-expected.txt: Removed. >- * loader/load-defer-resume-crash.html: Removed. >- * loader/resources/images.html: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs an implementation of layoutTestController.setDefersLoading. >- https://bugs.webkit.org/show_bug.cgi?id=64313 >- >- Add loader/load-defer-resume-crash.html to the WK2 Skipped list in order to get the bots >- green. >- >- * platform/wk2/Skipped: >- >-2011-07-11 Yi Shen <yi.4.shen@nokia.com> >- >- [Qt] ASSERTION FAILED in ResourceHandle::setDefersLoading causes crash >- https://bugs.webkit.org/show_bug.cgi?id=62808 >- >- Added a test for the crash occurs when load deferring is turned off. >- >- Reviewed by Benjamin Poulain. >- >- * loader/load-defer-resume-crash-expected.txt: Added. >- * loader/load-defer-resume-crash.html: Added. >- * loader/resources/images.html: Added. >- * platform/chromium/test_expectations.txt: Skip this test since the LayoutTestController::setDefersLoading is not implemented for chromium. >- >-2011-07-11 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations update. >- >- Mark 2d.gradient.object.update as passing after r90767. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Young Han Lee <joybro@company100.net> >- >- Reviewed by Simon Fraser. >- >- Transition LayoutTest using pause API shows wrong result if it tries to pause a transition after its delay time. >- https://bugs.webkit.org/show_bug.cgi?id=63859 >- >- The existing code to set the m_startTime haven't worked because >- the animation is not the right state to accept the start event. >- This patch just sets the values directly instead of using event. >- >- * transitions/delay-expected.txt: Added. >- * transitions/delay.html: Added. >- >-2011-07-11 Anders Carlsson <andersca@apple.com> >- >- Implement getFormValue for WebKit2 >- https://bugs.webkit.org/show_bug.cgi?id=64294 >- <rdar://problem/3964087> >- >- Remove now passing test. >- >- * platform/wk2/Skipped: >- >-2011-07-11 Ojan Vafai <ojan@chromium.org> >- >- Fix syntax error from r90757. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Jessie Berlin <jberlin@apple.com> >- >- http/tests/cache/history-only-cached-subresource-loads-max-age-https.html timing out on >- Windows and WebKit2 since it was added. >- https://bugs.webkit.org/show_bug.cgi?id=63806 >- >- Add the test to the WK2 Skipped list to get the bots green. >- >- * platform/wk2/Skipped: >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Update Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Unreviewed gardening. >- >- * platform/qt-mac/Skipped: Remove non-existent editing/pasteboard/do-not-copy-body-color.html. >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Update Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Update Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs an implementation of eventSender.beginDragWithFiles. >- https://bugs.webkit.org/show_bug.cgi?id=64285 >- >- Add fast/forms/file-input-change-event.html to the mac-wk2 Skipped list to get the bots >- green. >- >- * platform/wk2/Skipped: >- >-2011-07-11 Andrey Kosyakov <caseq@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: [refactoring] Remove dependencies of components requiring network resource list from network panel >- https://bugs.webkit.org/show_bug.cgi?id=62477 >- >- * http/tests/inspector/resource-har-conversion.html: >- >-2011-07-11 Adam Roben <aroben@apple.com> >- >- Add back the win-xp and win-wk2 results that were deleted in r90699 >- >- Deleting these results caused the tests to start failing on the bots. The only test result I >- didn't add back was >- win-wk2/http/tests/uri/username-with-no-hostname-expected.txt, as that test is not currently >- failing on the bots. >- >- Fixes <http://webkit.org/b/64277> REGRESSION (r90699): 12 svg tests failing on Windows XP >- Debug (Tests) and 13 tests failing on Windows 7 Release (WebKit2 Tests) >- >- * platform/win-wk2/editing/selection/caret-ltr-right-expected.txt: Added. >- * platform/win-wk2/editing/selection/drag-text-delay-expected.txt: Added. >- * platform/win-wk2/fast/css/pseudo-any-expected.txt: Added. >- * platform/win-wk2/fast/forms/textfield-overflow-expected.txt: Added. >- * platform/win-wk2/fast/ruby/after-block-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/after-table-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/before-block-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/before-table-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/plugins/npruntime/embed-property-equality-expected.txt: Added. >- * platform/win-wk2/plugins/resize-from-plugin-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Added. >- * platform/win-xp/svg/W3C-I18N/tspan-direction-rtl-expected.txt: Added. >- * platform/win-xp/svg/text/bidi-tspans-expected.txt: Added. >- >-2011-07-11 Noel Gordon <noel.gordon@gmail.com> >- >- Reviewed by Adam Roben. >- >- New plugin/keyboard-events,mouse-events test expectations for the windows port. >- https://bugs.webkit.org/show_bug.cgi?id=62375 >- >- * platform/win/plugins/keyboard-events-expected.txt: Added. >- * platform/win/plugins/mouse-events-expected.txt: Updated. >- >-2011-07-11 Yael Aharon <yael.aharon@nokia.com> >- >- [Qt]REGRESSION(r90471): It made 4 fast/notifications tests fail on Qt >- https://bugs.webkit.org/show_bug.cgi?id=63255 >- >- Reviewed by Csaba Osztrogonác. >- >- Modify the tests to wait until the icon loading is finished. >- >- * fast/notifications/notifications-double-show.html: >- * fast/notifications/notifications-with-permission.html: >- * platform/qt/Skipped: >- >-2011-07-11 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed gardening. >- >- inspector/cookie-parser.html is a flaky crash >- https://bugs.webkit.org/show_bug.cgi?id=62662 >- >- * platform/qt/test_expectations.txt: Set inspector/cookie-parser.html as flakey test. >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Remove duplicates from Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Update Chromium test expectations after r90698. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Unreviewed gardening. >- >- * platform/qt-mac/Skipped: >- - Remove non-existent editing tests. >- - Remove fast/selectors/unqualified-hover-strict.html, because it is in test_expectations.txt too. >- - Remove http/tests/misc/object-embedding-svg-delayed-size-negotiation-2.htm, because it is in test_expectations.txt too. >- >-2011-07-11 Yury Semikhatsky <yurys@chromium.org> >- >- Unreviewed. Update Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Andras Becsi <abecsi@webkit.org> >- >- [Qt] http/tests/plugins/get-url.html is crashing on the bot >- https://bugs.webkit.org/show_bug.cgi?id=64168 >- >- Rubber-stamped by Csaba Osztrogonác. >- >- * platform/qt/test_expectations.txt: Do not expect the test to crash any more. >- >-2011-07-11 Kenichi Ishibashi <bashi@chromium.org> >- >- Add TestNetscapePlugIn/Tests/FormValue.cpp to DRT build files >- https://bugs.webkit.org/show_bug.cgi?id=64248 >- >- Updates test_expectations. >- >- Reviewed by Kent Tamura. >- >- * platform/chromium/test_expectations.txt: Removed SKIP from plugins/form-value.html. >- >-2011-07-11 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 12/12). >- >- * platform/chromium-gpu-linux/compositing/geometry/outline-change-expected.png: >- * platform/chromium-gpu-linux/compositing/iframes/iframe-copy-on-scroll-expected.png: >- * platform/chromium-gpu-linux/fast/canvas/setWidthResetAfterForcedRender-expected.png: Added. >- * platform/chromium-gpu-win/compositing/geometry/outline-change-expected.png: >- * platform/chromium-gpu-win/compositing/iframes/iframe-copy-on-scroll-expected.png: >- * platform/chromium-gpu-win/fast/canvas/setWidthResetAfterForcedRender-expected.png: Added. >- * platform/chromium-linux/editing/pasteboard/3976872-expected.png: >- * platform/chromium-linux/fast/blockflow/vertical-align-table-baseline-expected.png: >- * platform/chromium-linux/fast/borders/borderRadiusAllStylesAllCorners-expected.png: >- * platform/chromium-linux/fast/canvas/setWidthResetAfterForcedRender-expected.png: >- * platform/chromium-linux/fast/css/acid2-pixel-expected.png: >- * platform/chromium-linux/fast/dom/34176-expected.png: >- * platform/chromium-linux/fast/dom/HTMLElement/bdo-expected.png: >- * platform/chromium-linux/fast/encoding/invalid-UTF-8-expected.png: >- * platform/chromium-linux/fast/frames/viewsource-attribute-expected.png: >- * platform/chromium-linux/fast/html/details-writing-mode-expected.png: >- * platform/chromium-linux/fast/repaint/4774354-expected.png: >- * platform/chromium-linux/fast/repaint/iframe-scroll-repaint-expected.png: Removed. >- * platform/chromium-linux/fast/replaced/outline-replaced-elements-expected.png: >- * platform/chromium-linux/fast/text/atsui-kerning-and-ligatures-expected.png: Added. >- * platform/chromium-linux/fast/text/atsui-multiple-renderers-expected.png: >- * platform/chromium-linux/fast/text/atsui-negative-spacing-features-expected.png: >- * platform/chromium-linux/fast/text/atsui-spacing-features-expected.png: >- * platform/chromium-linux/fast/text/international/003-expected.png: >- * platform/chromium-linux/fast/text/international/hebrew-vowels-expected.png: >- * platform/chromium-linux/http/tests/misc/iframe404-expected.png: >- * platform/chromium-linux/http/tests/navigation/javascriptlink-frames-expected.png: >- * platform/chromium-linux/http/tests/navigation/javascriptlink-frames-expected.txt: Added. >- * platform/chromium-linux/plugins/embed-attributes-style-expected.png: >- * platform/chromium-linux/svg/custom/svg-fonts-fallback-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/45621-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1220-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug20804-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug51140-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14007-2-expected.txt: Added. >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/other/empty_cells-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/other/test4-expected.png: >- * platform/chromium-linux/transforms/2d/transform-borderbox-expected.png: >- * platform/chromium-linux/transforms/2d/transform-fixed-container-expected.png: >- * platform/chromium-linux/transforms/2d/transform-origin-borderbox-expected.png: >- * platform/chromium-mac-leopard/http/tests/navigation/javascriptlink-frames-expected.png: Added. >- * platform/chromium-mac/http/tests/navigation/javascriptlink-frames-expected.png: Added. >- * platform/chromium-win-vista/fast/text/atsui-kerning-and-ligatures-expected.png: >- * platform/chromium-win-vista/fast/text/atsui-spacing-features-expected.png: Removed. >- * platform/chromium-win-vista/http/tests/misc/iframe404-expected.png: Added. >- * platform/chromium-win-vista/http/tests/navigation/javascriptlink-frames-expected.png: Added. >- * platform/chromium-win-xp/fast/blockflow/vertical-align-table-baseline-expected.png: Added. >- * platform/chromium-win-xp/fast/dom/34176-expected.png: Added. >- * platform/chromium-win-xp/fast/text/atsui-negative-spacing-features-expected.png: Added. >- * platform/chromium-win-xp/fast/text/atsui-spacing-features-expected.png: >- * platform/chromium-win-xp/fast/text/international/003-expected.png: Added. >- * platform/chromium-win-xp/fast/text/international/hebrew-vowels-expected.png: Added. >- * platform/chromium-win/editing/pasteboard/3976872-expected.png: >- * platform/chromium-win/fast/blockflow/vertical-align-table-baseline-expected.png: >- * platform/chromium-win/fast/borders/borderRadiusAllStylesAllCorners-expected.png: >- * platform/chromium-win/fast/canvas/setWidthResetAfterForcedRender-expected.png: >- * platform/chromium-win/fast/css/acid2-pixel-expected.png: >- * platform/chromium-win/fast/dom/34176-expected.png: >- * platform/chromium-win/fast/dom/HTMLElement/bdo-expected.png: >- * platform/chromium-win/fast/forms/001-expected.png: >- * platform/chromium-win/fast/forms/input-first-letter-expected.png: >- * platform/chromium-win/fast/frames/viewsource-attribute-expected.png: >- * platform/chromium-win/fast/html/details-writing-mode-expected.png: >- * platform/chromium-win/fast/repaint/4774354-expected.png: >- * platform/chromium-win/fast/replaced/outline-replaced-elements-expected.png: >- * platform/chromium-win/fast/text/atsui-kerning-and-ligatures-expected.png: >- * platform/chromium-win/fast/text/atsui-negative-spacing-features-expected.png: >- * platform/chromium-win/fast/text/atsui-spacing-features-expected.png: >- * platform/chromium-win/fast/text/international/003-expected.png: >- * platform/chromium-win/fast/text/international/003-expected.txt: >- * platform/chromium-win/fast/text/international/hebrew-vowels-expected.png: >- * platform/chromium-win/fast/text/should-use-atsui-expected.png: >- * platform/chromium-win/plugins/embed-attributes-style-expected.png: >- * platform/chromium-win/svg/custom/svg-fonts-fallback-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/45621-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1220-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug15933-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug20804-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug51140-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug51140-expected.txt: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_bottom-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_hidden_table-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_left-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_right-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_caption_top-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_row-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_dirty_reflow_tbody-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_hidden_table-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tbody-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_hidden_tr-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_cell_sibling-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_row_sibling-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_table_caption-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_style_reflow_tbody_sibling-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_td_align_right-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_td_dynamic_deactivate-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_overflow_td_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_left-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_caption_align_right-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_left-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/x_caption_align_right-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/x_colgroup_width_px-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/other/empty_cells-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/other/test4-expected.png: >- * platform/chromium-win/transforms/2d/transform-borderbox-expected.png: >- * platform/chromium-win/transforms/2d/transform-fixed-container-expected.png: >- * platform/chromium-win/transforms/2d/transform-origin-borderbox-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Copy existing WebSocket tests >- https://bugs.webkit.org/show_bug.cgi?id=64242 >- >- Reviewed by Kent Tamura. >- >- Copy the existing WebSocket tests under http/tests/websocket/tests/hybi/ and skip them. >- >- These tests will be used to test the latest WebSocket protocol implementation. They are skipped >- in all ports for now, and will be unskipped when the new protocol implementation is landed in WebCore. >- >- The following modifications are applied to the new tests: >- - Change paths and URLs appeared in the tests and the test results so they fit for the new location. >- - Call layoutTestController.overridePreferences() to enable the new protocol implementation. >- >- * http/tests/websocket/tests/hybi/alert-in-event-handler-expected.txt: Added. >- * http/tests/websocket/tests/hybi/alert-in-event-handler.html: Added. >- * http/tests/websocket/tests/hybi/bad-handshake-crash-expected.txt: Added. >- * http/tests/websocket/tests/hybi/bad-handshake-crash.html: Added. >- * http/tests/websocket/tests/hybi/bad-handshake-crash_wsh.py: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-control-chars-expected.txt: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-control-chars.html: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-empty-expected.txt: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-empty.html: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii-expected.txt: Added. >- * http/tests/websocket/tests/hybi/bad-sub-protocol-non-ascii.html: Added. >- * http/tests/websocket/tests/hybi/bufferedAmount-after-close-expected.txt: Added. >- * http/tests/websocket/tests/hybi/bufferedAmount-after-close.html: Added. >- * http/tests/websocket/tests/hybi/client-close-expected.txt: Added. >- * http/tests/websocket/tests/hybi/client-close.html: Added. >- * http/tests/websocket/tests/hybi/client-close_wsh.py: Added. >- * http/tests/websocket/tests/hybi/close-before-open-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-before-open.html: Added. >- * http/tests/websocket/tests/hybi/close-event-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-event.html: Added. >- * http/tests/websocket/tests/hybi/close-on-navigate-new-location-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-on-navigate-new-location.html: Added. >- * http/tests/websocket/tests/hybi/close-on-unload-and-force-gc-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-on-unload-and-force-gc.html: Added. >- * http/tests/websocket/tests/hybi/close-on-unload-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-on-unload-reference-in-parent-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-on-unload-reference-in-parent.html: Added. >- * http/tests/websocket/tests/hybi/close-on-unload.html: Added. >- * http/tests/websocket/tests/hybi/close-on-unload_wsh.py: Added. >- * http/tests/websocket/tests/hybi/close-unref-websocket-expected.txt: Added. >- * http/tests/websocket/tests/hybi/close-unref-websocket.html: Added. >- * http/tests/websocket/tests/hybi/cross-origin-expected.txt: Added. >- * http/tests/websocket/tests/hybi/cross-origin.html: Added. >- * http/tests/websocket/tests/hybi/echo-challenge_wsh.py: Added. >- * http/tests/websocket/tests/hybi/echo-cookie_wsh.py: Added. >- * http/tests/websocket/tests/hybi/echo-location_wsh.py: Added. >- * http/tests/websocket/tests/hybi/echo_wsh.py: Added. >- * http/tests/websocket/tests/hybi/error-detect-expected.txt: Added. >- * http/tests/websocket/tests/hybi/error-detect.html: Added. >- * http/tests/websocket/tests/hybi/fixed-origin_wsh.py: Added. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer-expected.txt: Added. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer.html: Added. >- * http/tests/websocket/tests/hybi/frame-length-longer-than-buffer_wsh.py: Added. >- * http/tests/websocket/tests/hybi/frame-length-overflow-expected.txt: Added. >- * http/tests/websocket/tests/hybi/frame-length-overflow.html: Added. >- * http/tests/websocket/tests/hybi/frame-length-overflow_wsh.py: Added. >- * http/tests/websocket/tests/hybi/frame-length-skip-expected.txt: Added. >- * http/tests/websocket/tests/hybi/frame-length-skip.html: Added. >- * http/tests/websocket/tests/hybi/frame-length-skip_wsh.py: Added. >- * http/tests/websocket/tests/hybi/frame-lengths-expected.txt: Added. >- * http/tests/websocket/tests/hybi/frame-lengths.html: Added. >- * http/tests/websocket/tests/hybi/handshake-challenge-randomness-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-challenge-randomness.html: Added. >- * http/tests/websocket/tests/hybi/handshake-error-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-error.html: Added. >- * http/tests/websocket/tests/hybi/handshake-error_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-cross-origin-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-cross-origin.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-maxlength-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-maxlength.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-maxlength_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-connection-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-cr-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-cr.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-cr_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-no-upgrade-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null.html: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-prepended-null_wsh.py: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-sub-protocol-mismatch-expected.txt: Added. >- * http/tests/websocket/tests/hybi/handshake-fail-by-sub-protocol-mismatch.html: Added. >- * http/tests/websocket/tests/hybi/hanging-handshake_wsh.py: Added. >- * http/tests/websocket/tests/hybi/httponly-cookie-expected.txt: Added. >- * http/tests/websocket/tests/hybi/httponly-cookie.pl: Added. >- * http/tests/websocket/tests/hybi/long-invalid-header-expected.txt: Added. >- * http/tests/websocket/tests/hybi/long-invalid-header.html: Added. >- * http/tests/websocket/tests/hybi/long-invalid-header_wsh.py: Added. >- * http/tests/websocket/tests/hybi/multiple-connections-expected.txt: Added. >- * http/tests/websocket/tests/hybi/multiple-connections.html: Added. >- * http/tests/websocket/tests/hybi/no-query_wsh.py: Added. >- * http/tests/websocket/tests/hybi/null-character-expected.txt: Added. >- * http/tests/websocket/tests/hybi/null-character.html: Added. >- * http/tests/websocket/tests/hybi/origin-test_wsh.py: Added. >- * http/tests/websocket/tests/hybi/protocol-test_wsh.py: Added. >- * http/tests/websocket/tests/hybi/reload-crash-expected.txt: Added. >- * http/tests/websocket/tests/hybi/reload-crash.html: Added. >- * http/tests/websocket/tests/hybi/resources/close-on-unload-iframe-reference-in-parent.html: Added. >- * http/tests/websocket/tests/hybi/resources/close-on-unload-iframe.html: Added. >- * http/tests/websocket/tests/hybi/resources/reload-crash-iframe.html: Added. >- * http/tests/websocket/tests/hybi/send-after-close-on-unload-expected.txt: Added. >- * http/tests/websocket/tests/hybi/send-after-close-on-unload.html: Added. >- * http/tests/websocket/tests/hybi/send-expected.txt: Added. >- * http/tests/websocket/tests/hybi/send-throw-expected.txt: Added. >- * http/tests/websocket/tests/hybi/send-throw.html: Added. >- * http/tests/websocket/tests/hybi/send.html: Added. >- * http/tests/websocket/tests/hybi/send2_wsh.py: Added. >- * http/tests/websocket/tests/hybi/send_wsh.py: Added. >- * http/tests/websocket/tests/hybi/server-close-expected.txt: Added. >- * http/tests/websocket/tests/hybi/server-close.html: Added. >- * http/tests/websocket/tests/hybi/server-close_wsh.py: Added. >- * http/tests/websocket/tests/hybi/simple-expected.txt: Added. >- * http/tests/websocket/tests/hybi/simple-stress-expected.txt: Added. >- * http/tests/websocket/tests/hybi/simple-stress.html: Added. >- * http/tests/websocket/tests/hybi/simple.html: Added. >- * http/tests/websocket/tests/hybi/simple_wsh.py: Added. >- * http/tests/websocket/tests/hybi/sub-protocol-expected.txt: Added. >- * http/tests/websocket/tests/hybi/sub-protocol-with-space-expected.txt: Added. >- * http/tests/websocket/tests/hybi/sub-protocol-with-space.html: Added. >- * http/tests/websocket/tests/hybi/sub-protocol.html: Added. >- * http/tests/websocket/tests/hybi/unicode-expected.txt: Added. >- * http/tests/websocket/tests/hybi/unicode.html: Added. >- * http/tests/websocket/tests/hybi/unicode_wsh.py: Added. >- * http/tests/websocket/tests/hybi/unknown-frame-type_wsh.py: Added. >- * http/tests/websocket/tests/hybi/url-no-trailing-slash-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-no-trailing-slash.html: Added. >- * http/tests/websocket/tests/hybi/url-parsing-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-parsing.html: Added. >- * http/tests/websocket/tests/hybi/url-with-credential-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-with-credential.html: Added. >- * http/tests/websocket/tests/hybi/url-with-empty-query-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-with-empty-query.html: Added. >- * http/tests/websocket/tests/hybi/url-with-query-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-with-query-for-no-query-expected.txt: Added. >- * http/tests/websocket/tests/hybi/url-with-query-for-no-query.html: Added. >- * http/tests/websocket/tests/hybi/url-with-query.html: Added. >- * http/tests/websocket/tests/hybi/websocket-event-target-expected.txt: Added. >- * http/tests/websocket/tests/hybi/websocket-event-target.html: Added. >- * http/tests/websocket/tests/hybi/websocket-pending-activity-expected.txt: Added. >- * http/tests/websocket/tests/hybi/websocket-pending-activity.html: Added. >- * http/tests/websocket/tests/hybi/websocket-protocol-ignored-expected.txt: Added. >- * http/tests/websocket/tests/hybi/websocket-protocol-ignored.html: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-onmessage-crash-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-onmessage-crash.html: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-shared-worker-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-shared-worker.html: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-worker-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/close-in-worker.html: Added. >- * http/tests/websocket/tests/hybi/workers/resources/close-in-onmessage-crash.js: Added. >- (runTests.try.ws.onopen): >- (runTests.try.ws.onmessage): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hybi/workers/resources/close-in-worker.js: Added. >- (handleConnect.self.postMessage): >- (handleConnect): >- (runTests.try.ws.onopen): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hybi/workers/resources/echo-challenge_wsh.py: Added. >- * http/tests/websocket/tests/hybi/workers/resources/echo_wsh.py: Added. >- * http/tests/websocket/tests/hybi/workers/resources/simple_wsh.py: Added. >- * http/tests/websocket/tests/hybi/workers/resources/worker-handshake-challenge-randomness.js: Added. >- (endTest): >- (runTests.try.ws1.onmessage): >- (runTests.try.ws1.onclose.ws2.onmessage): >- (runTests.try.ws1.onclose.ws2.onclose): >- (runTests.try.ws1.onclose): >- (runTests): >- * http/tests/websocket/tests/hybi/workers/resources/worker-simple.js: Added. >- (handleConnect.self.postMessage): >- (handleConnect): >- (runTests.try.ws.onopen): >- (runTests.try.ws.onmessage): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hybi/workers/shared-worker-simple-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/shared-worker-simple.html: Added. >- * http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/worker-handshake-challenge-randomness.html: Added. >- * http/tests/websocket/tests/hybi/workers/worker-simple-expected.txt: Added. >- * http/tests/websocket/tests/hybi/workers/worker-simple.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- A category "failing websocket tests" is listed at the beginning of Skipped file, >- but there is no such section in the lists. Thus, a new section is inserted. >- * platform/win/Skipped: >- * platform/wk2/Skipped: >- >-2011-07-11 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 11/??). >- >- * platform/chromium-linux/tables/mozilla/marvin/x_th_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_width-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_thead_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tr_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/other/body_col-expected.png: >- * platform/chromium-linux/tables/mozilla/other/cell_widths-expected.png: >- * platform/chromium-linux/tables/mozilla/other/cellspacing-expected.png: >- * platform/chromium-linux/tables/mozilla/other/nested2-expected.png: >- * platform/chromium-linux/tables/mozilla/other/nestedTables-expected.png: >- * platform/chromium-linux/tables/mozilla/other/padding-expected.png: >- * platform/chromium-linux/tables/mozilla/other/test3-expected.png: >- * platform/chromium-linux/tables/mozilla/other/test6-expected.png: >- * platform/chromium-linux/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: >- * platform/chromium-linux/tables/mozilla/other/wa_table_tr_align-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/97619-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1010-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug101759-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug10216-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug106336-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1128-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1164-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug11945-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1262-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug14489-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug1647-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug18770-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug19526-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug21518-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug220653-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug22122-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug25707-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3105-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug42043-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug4294-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug51000-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug56024-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug59252-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug65372-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug6933-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug7113-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug72393-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug7243-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug73629-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug8499-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug92647-1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/core/backgrounds-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/core/col_span2-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/core/cols1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/core/columns-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/core/conflicts-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/appendCells1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/appendCol1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: >- * platform/chromium-linux/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_width-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_thead_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tr_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/other/body_col-expected.png: >- * platform/chromium-win/tables/mozilla/other/cell_widths-expected.png: >- * platform/chromium-win/tables/mozilla/other/cellspacing-expected.png: >- * platform/chromium-win/tables/mozilla/other/nested2-expected.png: >- * platform/chromium-win/tables/mozilla/other/nestedTables-expected.png: >- * platform/chromium-win/tables/mozilla/other/padding-expected.png: >- * platform/chromium-win/tables/mozilla/other/test3-expected.png: >- * platform/chromium-win/tables/mozilla/other/test6-expected.png: >- * platform/chromium-win/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: >- * platform/chromium-win/tables/mozilla/other/wa_table_tr_align-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/97619-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1010-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug101759-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug10216-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug106336-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1128-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1164-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug11945-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1262-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug14489-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug1647-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug18770-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug19526-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug21518-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug220653-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug22122-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug23847-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug24880-1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug25707-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug27993-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3105-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug3166-8-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug42043-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug4294-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug46268-4-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug51000-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug56024-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug58402-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug59252-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug65372-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug67915-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug6933-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug7113-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug72393-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug7243-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug73629-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug80762-2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug8499-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug92647-1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/bugs/bug9879-1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/core/backgrounds-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/core/col_span2-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/core/cols1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/core/columns-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/core/conflicts-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/appendCells1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/appendCellsRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/appendCol1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/appendColGroup1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/insertTbodyExpand1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/dom/insertTbodyRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: >- * platform/chromium-win/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 10/??). >- >- * platform/chromium-linux/tables/mozilla/marvin/x_col_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_span-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_width_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_width_px-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_col_width_rel-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_span-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_border-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_border_px-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_cellpadding-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_cellspacing-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_width_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_table_width_px-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tbody_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_colspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_height-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_nowrap-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_rowspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_td_width-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_colspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_height-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_nowrap-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_rowspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_style-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_th_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_span-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_width_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_width_px-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_col_width_rel-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_span-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_border-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_border_px-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_cellpadding-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_cellpadding_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_cellspacing-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_cellspacing_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_width_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_table_width_px-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tbody_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_colspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_height-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_nowrap-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_rowspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_td_width-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_colspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_height-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_nowrap-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_rowspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_th_valign_middle-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-11 Mustafizur Rahaman <mustaf.here@gmail.com> >- >- Reviewed by James Robinson. >- >- Fix LayoutTests/canvas/philip/tests/2d.composite.uncovered.fill.destination-atop.html >- https://bugs.webkit.org/show_bug.cgi?id=48292 >- >- and >- >- Fix LayoutTests/canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop.html >- https://bugs.webkit.org/show_bug.cgi?id=48302 >- >- * canvas/philip/tests/2d.composite.uncovered.pattern.destination-atop-expected.txt: Added >- a trailing line >- * fast/canvas/canvas-composite-alpha.html: Rebaselined for destination-atop test case >- * platform/chromium/test_expectations.txt: Removed passing test case >- * platform/gtk/Skipped: Ditto >- * platform/mac/Skipped: Ditto >- * platform/qt/Skipped: Ditto >- >-2011-07-11 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 9/??). >- >- * platform/chromium-linux/tables/mozilla/marvin/tables_caption_align_bot-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_caption_align_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_cellpadding-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_colspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_height-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_nowrap-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_rowspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_td_width-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_colspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_height-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_rowspan-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_th_width-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tbody_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/td_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/td_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/td_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/td_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tfoot_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/th_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/th_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/th_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/th_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_align_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_char-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/thead_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_black-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_blue-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_gray-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_green-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_lime-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_navy-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_olive-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_purple-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_red-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_silver-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_teal-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_white-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tr_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_caption_align_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_caption_align_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_caption_class-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_caption_id-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/x_caption_style-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_caption_align_bot-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_caption_align_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_cellpadding-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_colspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_height-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_nowrap-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_rowspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_td_width-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_colspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_height-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_rowspan-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_th_width-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tbody_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/td_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/td_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/td_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/td_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tfoot_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/th_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/th_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/th_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/th_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_align_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_char-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/thead_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_aqua_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_black-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_black_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_blue-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_blue_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_fuchsia-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_fuchsia_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_gray-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_gray_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_green-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_green_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_lime-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_lime_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_maroon-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_maroon_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_navy-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_navy_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_olive-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_olive_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_purple-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_purple_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_red-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_red_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_silver-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_silver_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_teal-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_teal_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_white-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_white_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_yellow-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_bgcolor_yellow_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tr_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_caption_align_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_caption_align_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_caption_class-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_caption_id-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/x_caption_style-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 8/??). >- >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_fixPer-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_per-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_auto-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_autoFix-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_autoPer-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_fix-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_fixPer-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_fix_per-expected.png: >- * platform/chromium-linux/tables/mozilla/core/margins-expected.png: >- * platform/chromium-linux/tables/mozilla/core/misc-expected.png: >- * platform/chromium-linux/tables/mozilla/core/nested1-expected.png: >- * platform/chromium-linux/tables/mozilla/core/one_row-expected.png: >- * platform/chromium-linux/tables/mozilla/core/row_span-expected.png: >- * platform/chromium-linux/tables/mozilla/core/table_frame-expected.png: >- * platform/chromium-linux/tables/mozilla/core/table_heights-expected.png: >- * platform/chromium-linux/tables/mozilla/core/table_widths-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/appendCol2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/appendRowsExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/appendTbodyExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCellsRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCellsShrink1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCellsShrink2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCol1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCol2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteCol3-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteColGroup1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteColGroup2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteRowsRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteRowsShrink1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteTbodyExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCellsExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCellsExpand2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCellsRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCellsRebuild2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertColGroups1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertColGroups2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCols1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCols2-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCols3-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCols4-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertCols5-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertRowsExpand1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/insertRowsRebuild1-expected.png: >- * platform/chromium-linux/tables/mozilla/dom/tableDom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/body_col-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/col_span-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_align_justify-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_span-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_middle-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_valign_top-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_width_pct-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/colgroup_width_px-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_frame_border-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_frame_box-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_overflow_hidden_td-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_row_align_center-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_row_align_left-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/table_row_align_right-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_black-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_blue-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_gray-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_green-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_lime-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_navy-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_olive-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_purple-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_red-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_silver-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_teal-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_white-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_border_1-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_border_2-expected.png: >- * platform/chromium-linux/tables/mozilla/marvin/tables_border_3-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_fixPer-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_per-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_auto-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_autoFix-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_autoPer-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_fix-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_fixPer-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_fix_per-expected.png: >- * platform/chromium-win/tables/mozilla/core/margins-expected.png: >- * platform/chromium-win/tables/mozilla/core/misc-expected.png: >- * platform/chromium-win/tables/mozilla/core/nested1-expected.png: >- * platform/chromium-win/tables/mozilla/core/one_row-expected.png: >- * platform/chromium-win/tables/mozilla/core/row_span-expected.png: >- * platform/chromium-win/tables/mozilla/core/table_frame-expected.png: >- * platform/chromium-win/tables/mozilla/core/table_heights-expected.png: >- * platform/chromium-win/tables/mozilla/core/table_widths-expected.png: >- * platform/chromium-win/tables/mozilla/dom/appendCol2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/appendRowsExpand1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/appendTbodyExpand1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCellsRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCellsShrink1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCellsShrink2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCol1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCol2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteCol3-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteColGroup1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteColGroup2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteRowsRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteRowsShrink1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteTbodyExpand1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCellsExpand1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCellsExpand2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCellsRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCellsRebuild2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertColGroups1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertColGroups2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCols1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCols2-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCols3-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCols4-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertCols5-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertRowsExpand1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/insertRowsRebuild1-expected.png: >- * platform/chromium-win/tables/mozilla/dom/tableDom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/body_col-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/col_span-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_align_justify-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_span-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_valign_middle-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_valign_top-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_width_pct-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/colgroup_width_px-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_frame_border-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_frame_box-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_overflow_hidden_td-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_overflow_td_dynamic_deactivate-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_row_align_center-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_row_align_left-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/table_row_align_right-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_aqua-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_aqua_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_black-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_black_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_blue-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_blue_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_fuchsia-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_fuchsia_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_gray-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_gray_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_green-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_green_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_lime-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_lime_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_maroon-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_maroon_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_navy-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_navy_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_olive-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_olive_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_purple-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_purple_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_red-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_red_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_silver-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_silver_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_teal-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_teal_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_white-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_white_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_yellow-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_bgcolor_yellow_rgb-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_border_1-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_border_2-expected.png: >- * platform/chromium-win/tables/mozilla/marvin/tables_border_3-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 7/??). >- >- * platform/chromium-linux/tables/mozilla/bugs/bug4284-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4385-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug43854-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4427-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4429-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug44505-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug44523-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4501-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4520-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4523-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug45486-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4576-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46268-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46268-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46268-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46268-5-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46268-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46368-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46368-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46623-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46623-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46924-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug46944-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4739-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug47432-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug48028-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug48028-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug50695-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug51037-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5188-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug53690-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug53690-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug53891-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug54450-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug55694-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug56563-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug57300-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug57378-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug57828-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5797-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5798-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5799-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5835-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug5838-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug58402-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug59354-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug60013-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug60749-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug60804-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug60807-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug60992-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug6184-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug6304-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug647-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug67915-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug68998-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug69187-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug69382-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug69382-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7112-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7112-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7121-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug727-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7342-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7471-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug7714-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug78162-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug81934-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug82946-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug8381-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug86708-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug88035-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug88035-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug8858-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug8950-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug9123-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug9123-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug92143-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug92647-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug9271-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug9271-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug965-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug97138-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug98196-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug9879-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug99923-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug99948-expected.png: >- * platform/chromium-linux/tables/mozilla/core/bloomberg-expected.png: >- * platform/chromium-linux/tables/mozilla/core/borders-expected.png: >- * platform/chromium-linux/tables/mozilla/core/box_sizing-expected.png: >- * platform/chromium-linux/tables/mozilla/core/captions-expected.png: >- * platform/chromium-linux/tables/mozilla/core/cell_heights-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_span-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_auto-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoFix-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_autoPer-expected.png: >- * platform/chromium-linux/tables/mozilla/core/col_widths_auto_fix-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4284-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4385-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug43854-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4427-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4429-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug44505-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug44523-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4501-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4520-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4523-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug45486-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4576-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46268-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46268-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46268-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46268-5-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46268-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46368-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46368-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46623-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46623-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46924-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug46944-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4739-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug47432-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug48028-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug48028-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug50695-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug50695-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug51037-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5188-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug53690-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug53690-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug53891-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug54450-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug55694-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug56201-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug56563-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug57300-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug57378-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug57828-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5797-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5798-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5799-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5835-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug5838-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug58402-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug59354-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug60013-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug60749-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug60804-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug60807-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug60992-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug6184-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug6304-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug647-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug67915-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug68998-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug69187-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug69382-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug69382-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7112-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7112-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7121-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug727-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7342-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7471-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug7714-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug78162-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug81934-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug82946-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug8381-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug86708-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug88035-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug88035-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug8858-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug8950-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug9123-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug9123-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug92143-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug92647-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug9271-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug9271-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug965-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug97138-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug98196-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug9879-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug99923-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug99948-expected.png: >- * platform/chromium-win/tables/mozilla/core/bloomberg-expected.png: >- * platform/chromium-win/tables/mozilla/core/borders-expected.png: >- * platform/chromium-win/tables/mozilla/core/box_sizing-expected.png: >- * platform/chromium-win/tables/mozilla/core/captions-expected.png: >- * platform/chromium-win/tables/mozilla/core/cell_heights-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_span-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_auto-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoFix-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoFixPer-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_autoPer-expected.png: >- * platform/chromium-win/tables/mozilla/core/col_widths_auto_fix-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 6/??). >- >- * platform/chromium-linux/tables/mozilla/bugs/bug139524-4-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug14323-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1474-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug149275-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug149275-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug14929-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug15247-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug16252-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug17168-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug175455-4-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug17548-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug17587-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1800-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1802-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1802s-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1809-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1828-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug18359-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug18440-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug18558-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug18955-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug19061-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug19061-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug19356-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug194024-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug19599-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2050-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2065-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug21299-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug21918-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug220536-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug221784-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug221784-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug22246-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug22246-2a-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug22246-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug22246-3a-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug222846-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2267-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2296-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug23235-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug24503-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug24627-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug24661-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2479-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug24880-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug25004-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug25086-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2516-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug25663-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2585-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2684-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug27038-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2757-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2773-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug278385-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug27993-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug28928-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug29058-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug29058-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug29157-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug29326-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug29429-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2962-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug2981-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30273-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30332-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30332-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30418-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30559-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug30692-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3103-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3191-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug32205-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug32205-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug32205-5-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3260-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3263-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug32841-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3309-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug33137-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug34176-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3454-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug35662-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3718-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug38916-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug39209-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug3977-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug40828-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug4093-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug41890-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug42187-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug42443-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug139524-4-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug14323-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1474-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug149275-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug149275-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug14929-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug15247-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug16252-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug17168-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug175455-4-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug17548-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug17587-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1800-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1802-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1802s-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1809-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1818-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1818-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1818-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1818-4-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1828-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug18359-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug18440-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug18558-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug18955-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug19061-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug19061-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug19356-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug194024-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug19599-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2050-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2065-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug21299-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug21918-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug219693-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug219693-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug220536-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug221784-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug221784-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug22246-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug22246-2a-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug22246-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug22246-3a-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug222846-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2267-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2296-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug23235-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug24503-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug24627-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug24661-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2479-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug24880-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug25004-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug25086-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2516-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug25663-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2585-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug26553-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2684-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug27038-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2757-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2773-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug278385-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug27993-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug28928-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug29058-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug29058-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug29157-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug29326-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug29429-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2962-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug2981-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30273-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30332-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30332-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30418-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30559-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug30692-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3103-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3191-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug32205-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug32205-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug32205-5-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3260-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3263-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug32841-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3309-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug33137-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug34176-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3454-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug35662-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3718-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug38916-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug39209-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug3977-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug40828-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug4093-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug41890-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug42187-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug42443-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 5/??). >- >- * platform/chromium-linux/fast/table/border-collapsing/border-collapsing-head-foot-expected.png: >- * platform/chromium-linux/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png: >- * platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-expected.png: >- * platform/chromium-linux/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: >- * platform/chromium-linux/fast/table/click-near-anonymous-table-expected.png: >- * platform/chromium-linux/fast/table/dynamic-cellpadding-expected.png: >- * platform/chromium-linux/fast/table/early-table-layout-expected.png: >- * platform/chromium-linux/fast/table/edge-offsets-expected.png: >- * platform/chromium-linux/fast/table/large-width-expected.png: >- * platform/chromium-linux/fast/table/nobr-expected.png: >- * platform/chromium-linux/fast/table/overflowHidden-expected.png: >- * platform/chromium-linux/fast/table/percent-heights-expected.png: >- * platform/chromium-linux/fast/table/row-height-recalc-expected.png: >- * platform/chromium-linux/fast/table/rowindex-expected.png: >- * platform/chromium-linux/fast/table/rowspan-paint-order-expected.png: >- * platform/chromium-linux/fast/table/rowspan-paint-order-vertical-expected.png: >- * platform/chromium-linux/fast/table/rtl-cell-display-none-assert-expected.png: >- * platform/chromium-linux/fast/table/spanOverlapRepaint-expected.png: >- * platform/chromium-linux/fast/table/table-continuation-outline-paint-crash-expected.png: >- * platform/chromium-linux/fast/table/table-hspace-align-center-expected.png: >- * platform/chromium-linux/fast/table/text-field-baseline-expected.png: >- * platform/chromium-linux/fast/table/unbreakable-images-quirk-expected.png: >- * platform/chromium-linux/fast/table/vertical-align-baseline-expected.png: >- * platform/chromium-linux/fast/text/atsui-small-caps-punctuation-size-expected.png: >- * platform/chromium-linux/fast/text/basic/001-expected.png: >- * platform/chromium-linux/fast/text/basic/006-expected.png: >- * platform/chromium-linux/fast/text/basic/007-expected.png: >- * platform/chromium-linux/fast/text/basic/015-expected.png: >- * platform/chromium-linux/fast/text/capitalize-empty-generated-string-expected.png: >- * platform/chromium-linux/fast/text/cg-vs-atsui-expected.png: >- * platform/chromium-linux/fast/text/in-rendered-text-rtl-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-LDB-2-CSS-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-LDB-2-HTML-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-european-terminators-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: >- * platform/chromium-linux/fast/text/international/bidi-innertext-expected.png: >- * platform/chromium-linux/fast/text/international/rtl-caret-expected.png: >- * platform/chromium-linux/fast/text/international/rtl-white-space-pre-wrap-expected.png: >- * platform/chromium-linux/fast/text/midword-break-hang-expected.png: >- * platform/chromium-linux/fast/text/whitespace/027-expected.png: >- * platform/chromium-linux/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: >- * platform/chromium-linux/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: >- * platform/chromium-linux/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.png: >- * platform/chromium-linux/fast/text/word-break-expected.png: >- * platform/chromium-linux/fast/transforms/rotated-transform-affects-scrolling-1-expected.png: >- * platform/chromium-linux/fast/transforms/rotated-transform-affects-scrolling-2-expected.png: >- * platform/chromium-linux/http/tests/loading/simple-subframe-expected.png: >- * platform/chromium-linux/http/tests/misc/acid2-pixel-expected.png: >- * platform/chromium-linux/http/tests/misc/location-replace-crossdomain-expected.png: >- * platform/chromium-linux/http/tests/multipart/invalid-image-data-standalone-expected.png: >- * platform/chromium-linux/svg/custom/inline-svg-in-xhtml-expected.png: >- * platform/chromium-linux/svg/custom/svg-float-border-padding-expected.png: >- * platform/chromium-linux/svg/zoom/page/zoom-svg-float-border-padding-expected.png: >- * platform/chromium-linux/svg/zoom/text/zoom-svg-float-border-padding-expected.png: >- * platform/chromium-linux/tables/layering/paint-test-layering-1-expected.png: >- * platform/chromium-linux/tables/layering/paint-test-layering-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug10009-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug10036-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug10039-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug101201-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1055-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug10565-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1067-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug106816-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug108340-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug109043-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug110566-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug113235-3-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug113424-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug11384q-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug11384s-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1188-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug11944-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug119786-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12008-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1224-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12268-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12384-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1261-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12709-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug128229-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12908-1-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug12910-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug1302-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug131020-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug13118-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug13196-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug133756-2-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug13484-expected.png: >- * platform/chromium-linux/tables/mozilla/bugs/bug137388-2-expected.png: >- * platform/chromium-win-vista/http/tests/loading/simple-subframe-expected.png: Added. >- * platform/chromium-win-vista/http/tests/misc/acid2-pixel-expected.png: Added. >- * platform/chromium-win-vista/http/tests/misc/location-replace-crossdomain-expected.png: Copied from LayoutTests/platform/chromium-win/fast/table/giantRowspan-expected.png. >- * platform/chromium-win-vista/http/tests/multipart/invalid-image-data-standalone-expected.png: Added. >- * platform/chromium-win-xp/fast/text/basic/006-expected.png: >- * platform/chromium-win-xp/fast/text/cg-vs-atsui-expected.png: >- * platform/chromium-win/fast/table/border-collapsing/border-collapsing-head-foot-expected.png: >- * platform/chromium-win/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png: >- * platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-expected.png: >- * platform/chromium-win/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: >- * platform/chromium-win/fast/table/click-near-anonymous-table-expected.png: >- * platform/chromium-win/fast/table/dynamic-cellpadding-expected.png: >- * platform/chromium-win/fast/table/early-table-layout-expected.png: >- * platform/chromium-win/fast/table/edge-offsets-expected.png: >- * platform/chromium-win/fast/table/giantRowspan-expected.png: >- * platform/chromium-win/fast/table/large-width-expected.png: >- * platform/chromium-win/fast/table/multiple-percent-height-rows-expected.png: >- * platform/chromium-win/fast/table/nobr-expected.png: >- * platform/chromium-win/fast/table/overflowHidden-expected.png: >- * platform/chromium-win/fast/table/percent-heights-expected.png: >- * platform/chromium-win/fast/table/row-height-recalc-expected.png: >- * platform/chromium-win/fast/table/rowindex-expected.png: >- * platform/chromium-win/fast/table/rowspan-paint-order-expected.png: >- * platform/chromium-win/fast/table/rowspan-paint-order-vertical-expected.png: >- * platform/chromium-win/fast/table/rtl-cell-display-none-assert-expected.png: >- * platform/chromium-win/fast/table/spanOverlapRepaint-expected.png: >- * platform/chromium-win/fast/table/table-continuation-outline-paint-crash-expected.png: >- * platform/chromium-win/fast/table/table-hspace-align-center-expected.png: >- * platform/chromium-win/fast/table/text-field-baseline-expected.png: >- * platform/chromium-win/fast/table/unbreakable-images-quirk-expected.png: >- * platform/chromium-win/fast/table/vertical-align-baseline-expected.png: >- * platform/chromium-win/fast/text/atsui-small-caps-punctuation-size-expected.png: >- * platform/chromium-win/fast/text/basic/001-expected.png: >- * platform/chromium-win/fast/text/basic/006-expected.png: >- * platform/chromium-win/fast/text/basic/007-expected.png: >- * platform/chromium-win/fast/text/basic/015-expected.png: >- * platform/chromium-win/fast/text/capitalize-empty-generated-string-expected.png: >- * platform/chromium-win/fast/text/cg-vs-atsui-expected.png: >- * platform/chromium-win/fast/text/in-rendered-text-rtl-expected.png: >- * platform/chromium-win/fast/text/international/bidi-LDB-2-CSS-expected.png: >- * platform/chromium-win/fast/text/international/bidi-LDB-2-HTML-expected.png: >- * platform/chromium-win/fast/text/international/bidi-LDB-2-formatting-characters-expected.png: >- * platform/chromium-win/fast/text/international/bidi-european-terminators-expected.png: >- * platform/chromium-win/fast/text/international/bidi-ignored-for-first-child-inline-expected.png: >- * platform/chromium-win/fast/text/international/bidi-innertext-expected.png: >- * platform/chromium-win/fast/text/international/rtl-caret-expected.png: >- * platform/chromium-win/fast/text/international/rtl-white-space-pre-wrap-expected.png: >- * platform/chromium-win/fast/text/midword-break-hang-expected.png: >- * platform/chromium-win/fast/text/whitespace/027-expected.png: >- * platform/chromium-win/fast/text/whitespace/normal-after-nowrap-breaking-expected.png: >- * platform/chromium-win/fast/text/whitespace/pre-wrap-overflow-selection-expected.png: >- * platform/chromium-win/fast/text/whitespace/pre-wrap-spaces-after-newline-expected.png: >- * platform/chromium-win/fast/text/word-break-expected.png: >- * platform/chromium-win/fast/transforms/rotated-transform-affects-scrolling-1-expected.png: >- * platform/chromium-win/fast/transforms/rotated-transform-affects-scrolling-2-expected.png: >- * platform/chromium-win/svg/custom/inline-svg-in-xhtml-expected.png: >- * platform/chromium-win/svg/custom/repaint-moving-svg-and-div-expected.png: >- * platform/chromium-win/svg/custom/svg-float-border-padding-expected.png: >- * platform/chromium-win/svg/zoom/page/zoom-svg-float-border-padding-expected.png: >- * platform/chromium-win/svg/zoom/text/zoom-svg-float-border-padding-expected.png: >- * platform/chromium-win/tables/layering/paint-test-layering-1-expected.png: >- * platform/chromium-win/tables/layering/paint-test-layering-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug10009-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug10036-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug10039-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug101201-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1055-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug10565-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1067-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug106795-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug106816-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug108340-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug109043-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug110566-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug113235-3-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug113424-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug11384q-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug11384s-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1188-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug11944-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug119786-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12008-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1224-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12268-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12384-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1261-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12709-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug128229-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12908-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug12910-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug1302-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug131020-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug131020-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug13118-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug13169-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug13196-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug133756-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug133948-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug13484-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug137388-1-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug137388-2-expected.png: >- * platform/chromium-win/tables/mozilla/bugs/bug137388-3-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 4/??). >- >- * platform/chromium-linux/fast/forms/button-default-title-expected.png: >- * platform/chromium-linux/fast/forms/button-generated-content-expected.png: >- * platform/chromium-linux/fast/forms/button-inner-block-reuse-expected.png: >- * platform/chromium-linux/fast/forms/button-style-color-expected.png: >- * platform/chromium-linux/fast/forms/caret-rtl-expected.png: >- * platform/chromium-linux/fast/forms/fieldset-align-expected.png: >- * platform/chromium-linux/fast/forms/fieldset-with-float-expected.png: >- * platform/chromium-linux/fast/forms/float-before-fieldset-expected.png: >- * platform/chromium-linux/fast/forms/floating-textfield-relayout-expected.png: >- * platform/chromium-linux/fast/forms/image-border-expected.png: >- * platform/chromium-linux/fast/forms/input-appearance-bkcolor-expected.png: >- * platform/chromium-linux/fast/forms/input-disabled-color-expected.png: >- * platform/chromium-linux/fast/forms/input-value-expected.png: >- * platform/chromium-linux/fast/forms/isindex-placeholder-expected.png: >- * platform/chromium-linux/fast/forms/radio_checked_dynamic-expected.png: >- * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.png: >- * platform/chromium-linux/fast/forms/select-baseline-expected.png: >- * platform/chromium-linux/fast/forms/select-dirty-parent-pref-widths-expected.png: >- * platform/chromium-linux/fast/forms/targeted-frame-submission-expected.png: >- * platform/chromium-linux/fast/forms/text-style-color-expected.png: >- * platform/chromium-linux/fast/frames/frameElement-iframe-expected.png: >- * platform/chromium-linux/fast/frames/iframe-option-crash-expected.png: >- * platform/chromium-linux/fast/frames/iframe-scrolling-attribute-expected.png: >- * platform/chromium-linux/fast/frames/iframe-with-frameborder-expected.png: >- * platform/chromium-linux/fast/frames/onlyCommentInIFrame-expected.png: >- * platform/chromium-linux/fast/frames/take-focus-from-iframe-expected.png: >- * platform/chromium-linux/fast/frames/viewsource-on-image-file-expected.png: >- * platform/chromium-linux/fast/inline/inline-borders-with-bidi-override-expected.png: >- * platform/chromium-linux/fast/inline/inline-box-background-expected.png: >- * platform/chromium-linux/fast/inline/inline-box-background-long-image-expected.png: >- * platform/chromium-linux/fast/inline/inline-box-background-repeat-x-expected.png: >- * platform/chromium-linux/fast/inline/inline-box-background-repeat-y-expected.png: >- * platform/chromium-linux/fast/inline/inline-continuation-borders-expected.png: >- * platform/chromium-linux/fast/inline/outline-continuations-expected.png: >- * platform/chromium-linux/fast/invalid/residual-style-expected.png: >- * platform/chromium-linux/fast/invalid/table-inside-stray-table-content-expected.png: >- * platform/chromium-linux/fast/lists/004-expected.png: >- * platform/chromium-linux/fast/lists/markers-in-selection-expected.png: >- * platform/chromium-linux/fast/lists/ol-start-parsing-expected.png: >- * platform/chromium-linux/fast/lists/olstart-expected.png: >- * platform/chromium-linux/fast/media/viewport-media-query-expected.png: >- * platform/chromium-linux/fast/multicol/table-vertical-align-expected.png: >- * platform/chromium-linux/fast/overflow/002-expected.png: >- * platform/chromium-linux/fast/overflow/image-selection-highlight-expected.png: >- * platform/chromium-linux/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: >- * platform/chromium-linux/fast/overflow/overflow-text-hit-testing-expected.png: >- * platform/chromium-linux/fast/overflow/scrollRevealButton-expected.png: >- * platform/chromium-linux/fast/overflow/scrollRevealButton-expected.txt: Added. >- * platform/chromium-linux/fast/reflections/reflection-overflow-hidden-expected.png: >- * platform/chromium-linux/fast/repaint/clipped-relative-expected.png: >- * platform/chromium-linux/fast/repaint/containing-block-position-change-expected.png: >- * platform/chromium-linux/fast/repaint/delete-into-nested-block-expected.png: >- * platform/chromium-linux/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: >- * platform/chromium-linux/fast/repaint/flexible-box-overflow-expected.png: >- * platform/chromium-linux/fast/repaint/flexible-box-overflow-horizontal-expected.png: >- * platform/chromium-linux/fast/repaint/float-move-during-layout-expected.png: >- * platform/chromium-linux/fast/repaint/inline-block-overflow-expected.png: >- * platform/chromium-linux/fast/repaint/inline-outline-repaint-expected.png: >- * platform/chromium-linux/fast/repaint/layer-outline-expected.png: >- * platform/chromium-linux/fast/repaint/layer-outline-horizontal-expected.png: >- * platform/chromium-linux/fast/repaint/line-overflow-expected.png: >- * platform/chromium-linux/fast/repaint/outline-child-repaint-expected.png: >- * platform/chromium-linux/fast/repaint/outline-repaint-glitch-expected.png: >- * platform/chromium-linux/fast/repaint/outline-shrinking-expected.png: >- * platform/chromium-linux/fast/repaint/overflow-delete-line-expected.png: >- * platform/chromium-linux/fast/repaint/static-to-positioned-expected.png: >- * platform/chromium-linux/fast/repaint/table-cell-move-expected.png: >- * platform/chromium-linux/fast/repaint/text-selection-rect-in-overflow-2-expected.png: >- * platform/chromium-linux/fast/repaint/text-shadow-expected.png: >- * platform/chromium-linux/fast/repaint/text-shadow-horizontal-expected.png: >- * platform/chromium-linux/fast/replaced/005-expected.png: >- * platform/chromium-linux/fast/replaced/007-expected.png: >- * platform/chromium-linux/fast/replaced/inline-box-wrapper-handover-expected.png: >- * platform/chromium-linux/fast/selectors/032-expected.png: >- * platform/chromium-linux/fast/selectors/077-expected.png: >- * platform/chromium-linux/fast/selectors/077b-expected.png: >- * platform/chromium-linux/fast/selectors/078b-expected.png: >- * platform/chromium-linux/fast/table/003-expected.png: >- * platform/chromium-linux/fast/table/004-expected.png: >- * platform/chromium-linux/fast/table/006-expected.png: >- * platform/chromium-linux/fast/table/007-expected.png: >- * platform/chromium-linux/fast/table/009-expected.png: >- * platform/chromium-linux/fast/table/017-expected.png: >- * platform/chromium-linux/fast/table/018-expected.png: >- * platform/chromium-linux/fast/table/020-expected.png: >- * platform/chromium-linux/fast/table/029-expected.png: >- * platform/chromium-linux/fast/table/030-expected.png: >- * platform/chromium-linux/fast/table/035-expected.png: >- * platform/chromium-linux/fast/table/035-vertical-expected.png: >- * platform/chromium-linux/fast/table/038-expected.png: >- * platform/chromium-linux/fast/table/038-vertical-expected.png: >- * platform/chromium-linux/fast/table/039-expected.png: >- * platform/chromium-linux/fast/table/040-expected.png: >- * platform/chromium-linux/fast/table/040-vertical-expected.png: >- * platform/chromium-linux/fast/table/041-expected.png: >- * platform/chromium-linux/fast/table/add-before-anonymous-child-expected.png: >- * platform/chromium-win/fast/forms/button-default-title-expected.png: >- * platform/chromium-win/fast/forms/button-generated-content-expected.png: >- * platform/chromium-win/fast/forms/button-inner-block-reuse-expected.png: >- * platform/chromium-win/fast/forms/button-style-color-expected.png: >- * platform/chromium-win/fast/forms/caret-rtl-expected.png: >- * platform/chromium-win/fast/forms/fieldset-align-expected.png: >- * platform/chromium-win/fast/forms/fieldset-with-float-expected.png: >- * platform/chromium-win/fast/forms/float-before-fieldset-expected.png: >- * platform/chromium-win/fast/forms/floating-textfield-relayout-expected.png: >- * platform/chromium-win/fast/forms/image-border-expected.png: >- * platform/chromium-win/fast/forms/input-appearance-bkcolor-expected.png: >- * platform/chromium-win/fast/forms/input-disabled-color-expected.png: >- * platform/chromium-win/fast/forms/input-value-expected.png: >- * platform/chromium-win/fast/forms/isindex-placeholder-expected.png: >- * platform/chromium-win/fast/forms/radio_checked_dynamic-expected.png: >- * platform/chromium-win/fast/forms/search-vertical-alignment-expected.png: >- * platform/chromium-win/fast/forms/select-baseline-expected.png: >- * platform/chromium-win/fast/forms/select-dirty-parent-pref-widths-expected.png: >- * platform/chromium-win/fast/forms/targeted-frame-submission-expected.png: >- * platform/chromium-win/fast/forms/text-style-color-expected.png: >- * platform/chromium-win/fast/frames/content-opacity-1-expected.png: >- * platform/chromium-win/fast/frames/content-opacity-2-expected.png: >- * platform/chromium-win/fast/frames/frameElement-iframe-expected.png: >- * platform/chromium-win/fast/frames/iframe-option-crash-expected.png: >- * platform/chromium-win/fast/frames/iframe-scrolling-attribute-expected.png: >- * platform/chromium-win/fast/frames/iframe-text-contents-expected.png: >- * platform/chromium-win/fast/frames/iframe-with-frameborder-expected.png: >- * platform/chromium-win/fast/frames/onlyCommentInIFrame-expected.png: >- * platform/chromium-win/fast/frames/take-focus-from-iframe-expected.png: >- * platform/chromium-win/fast/frames/viewsource-on-image-file-expected.png: >- * platform/chromium-win/fast/inline/inline-borders-with-bidi-override-expected.png: >- * platform/chromium-win/fast/inline/inline-box-background-expected.png: >- * platform/chromium-win/fast/inline/inline-box-background-long-image-expected.png: >- * platform/chromium-win/fast/inline/inline-box-background-repeat-x-expected.png: >- * platform/chromium-win/fast/inline/inline-box-background-repeat-y-expected.png: >- * platform/chromium-win/fast/inline/inline-continuation-borders-expected.png: >- * platform/chromium-win/fast/inline/outline-continuations-expected.png: >- * platform/chromium-win/fast/invalid/residual-style-expected.png: >- * platform/chromium-win/fast/invalid/table-inside-stray-table-content-expected.png: >- * platform/chromium-win/fast/layers/self-painting-outline-expected.png: >- * platform/chromium-win/fast/lists/004-expected.png: >- * platform/chromium-win/fast/lists/markers-in-selection-expected.png: >- * platform/chromium-win/fast/lists/ol-start-parsing-expected.png: >- * platform/chromium-win/fast/lists/olstart-expected.png: >- * platform/chromium-win/fast/media/viewport-media-query-expected.png: >- * platform/chromium-win/fast/multicol/table-vertical-align-expected.png: >- * platform/chromium-win/fast/overflow/002-expected.png: >- * platform/chromium-win/fast/overflow/image-selection-highlight-expected.png: >- * platform/chromium-win/fast/overflow/overflow-rtl-inline-scrollbar-expected.png: >- * platform/chromium-win/fast/overflow/overflow-text-hit-testing-expected.png: >- * platform/chromium-win/fast/overflow/scrollRevealButton-expected.png: >- * platform/chromium-win/fast/reflections/reflection-overflow-hidden-expected.png: >- * platform/chromium-win/fast/repaint/clipped-relative-expected.png: >- * platform/chromium-win/fast/repaint/containing-block-position-change-expected.png: >- * platform/chromium-win/fast/repaint/delete-into-nested-block-expected.png: >- * platform/chromium-win/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: >- * platform/chromium-win/fast/repaint/flexible-box-overflow-expected.png: >- * platform/chromium-win/fast/repaint/flexible-box-overflow-horizontal-expected.png: >- * platform/chromium-win/fast/repaint/float-move-during-layout-expected.png: >- * platform/chromium-win/fast/repaint/inline-block-overflow-expected.png: >- * platform/chromium-win/fast/repaint/inline-outline-repaint-expected.png: >- * platform/chromium-win/fast/repaint/layer-outline-expected.png: >- * platform/chromium-win/fast/repaint/layer-outline-horizontal-expected.png: >- * platform/chromium-win/fast/repaint/line-overflow-expected.png: >- * platform/chromium-win/fast/repaint/outline-child-repaint-expected.png: >- * platform/chromium-win/fast/repaint/outline-inset-expected.png: >- * platform/chromium-win/fast/repaint/outline-repaint-glitch-expected.png: >- * platform/chromium-win/fast/repaint/outline-shrinking-expected.png: >- * platform/chromium-win/fast/repaint/overflow-delete-line-expected.png: >- * platform/chromium-win/fast/repaint/static-to-positioned-expected.png: >- * platform/chromium-win/fast/repaint/table-cell-move-expected.png: >- * platform/chromium-win/fast/repaint/text-selection-rect-in-overflow-2-expected.png: >- * platform/chromium-win/fast/repaint/text-shadow-expected.png: >- * platform/chromium-win/fast/repaint/text-shadow-horizontal-expected.png: >- * platform/chromium-win/fast/replaced/005-expected.png: >- * platform/chromium-win/fast/replaced/007-expected.png: >- * platform/chromium-win/fast/replaced/inline-box-wrapper-handover-expected.png: >- * platform/chromium-win/fast/selectors/032-expected.png: >- * platform/chromium-win/fast/selectors/077-expected.png: >- * platform/chromium-win/fast/selectors/077b-expected.png: >- * platform/chromium-win/fast/selectors/078b-expected.png: >- * platform/chromium-win/fast/table/003-expected.png: >- * platform/chromium-win/fast/table/004-expected.png: >- * platform/chromium-win/fast/table/006-expected.png: >- * platform/chromium-win/fast/table/007-expected.png: >- * platform/chromium-win/fast/table/009-expected.png: >- * platform/chromium-win/fast/table/017-expected.png: >- * platform/chromium-win/fast/table/018-expected.png: >- * platform/chromium-win/fast/table/020-expected.png: >- * platform/chromium-win/fast/table/029-expected.png: >- * platform/chromium-win/fast/table/030-expected.png: >- * platform/chromium-win/fast/table/035-expected.png: >- * platform/chromium-win/fast/table/035-vertical-expected.png: >- * platform/chromium-win/fast/table/038-expected.png: >- * platform/chromium-win/fast/table/038-vertical-expected.png: >- * platform/chromium-win/fast/table/039-expected.png: >- * platform/chromium-win/fast/table/040-expected.png: >- * platform/chromium-win/fast/table/040-vertical-expected.png: >- * platform/chromium-win/fast/table/041-expected.png: >- * platform/chromium-win/fast/table/add-before-anonymous-child-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 Kenichi Ishibashi <bashi@chromium.org> >- >- Unreviewed; Skip plugins/form-value.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel expectations for r90701 (part 3/??). >- >- * platform/chromium-linux/editing/selection/7152-1-expected.png: >- * platform/chromium-linux/editing/selection/7152-2-expected.png: >- * platform/chromium-linux/editing/selection/click-start-of-line-expected.png: >- * platform/chromium-linux/editing/selection/iframe-expected.png: >- * platform/chromium-linux/editing/selection/image-before-linebreak-expected.png: >- * platform/chromium-linux/editing/selection/inline-table-expected.png: >- * platform/chromium-linux/editing/selection/mixed-editability-3-expected.png: >- * platform/chromium-linux/editing/selection/mixed-editability-4-expected.png: >- * platform/chromium-linux/editing/selection/mixed-editability-5-expected.png: >- * platform/chromium-linux/editing/selection/mixed-editability-8-expected.png: >- * platform/chromium-linux/editing/selection/mixed-editability-9-expected.png: >- * platform/chromium-linux/editing/selection/move-by-line-001-expected.png: >- * platform/chromium-linux/editing/selection/select-all-iframe-expected.png: >- * platform/chromium-linux/editing/style/5017613-1-expected.png: >- * platform/chromium-linux/editing/style/5017613-2-expected.png: >- * platform/chromium-linux/editing/undo/4063751-expected.png: >- * platform/chromium-linux/editing/unsupported-content/table-type-after-expected.png: >- * platform/chromium-linux/editing/unsupported-content/table-type-before-expected.png: >- * platform/chromium-linux/fast/backgrounds/background-inherit-color-bug-expected.png: >- * platform/chromium-linux/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: >- * platform/chromium-linux/fast/block/basic/013-expected.png: >- * platform/chromium-linux/fast/block/basic/018-expected.png: >- * platform/chromium-linux/fast/block/basic/fieldset-stretch-to-legend-expected.png: >- * platform/chromium-linux/fast/block/basic/text-indent-rtl-expected.png: >- * platform/chromium-linux/fast/block/float/015-expected.png: >- * platform/chromium-linux/fast/block/float/016-expected.png: >- * platform/chromium-linux/fast/block/float/025-expected.png: >- * platform/chromium-linux/fast/block/float/026-expected.png: >- * platform/chromium-linux/fast/block/float/027-expected.png: >- * platform/chromium-linux/fast/block/float/028-expected.png: >- * platform/chromium-linux/fast/block/float/032-expected.png: >- * platform/chromium-linux/fast/block/float/float-avoidance-expected.png: >- * platform/chromium-linux/fast/block/float/nopaint-after-layer-destruction-expected.png: >- * platform/chromium-linux/fast/block/float/nopaint-after-layer-destruction2-expected.png: >- * platform/chromium-linux/fast/block/float/table-relayout-expected.png: >- * platform/chromium-linux/fast/block/float/width-update-after-clear-expected.png: >- * platform/chromium-linux/fast/block/margin-collapse/empty-clear-blocks-expected.png: >- * platform/chromium-linux/fast/block/positioning/height-change-expected.png: >- * platform/chromium-linux/fast/block/positioning/leftmargin-topmargin-expected.png: >- * platform/chromium-linux/fast/block/positioning/relayout-on-position-change-expected.png: >- * platform/chromium-linux/fast/block/positioning/window-height-change-expected.png: >- * platform/chromium-linux/fast/blockflow/fieldsets-expected.png: >- * platform/chromium-linux/fast/borders/rtl-border-01-expected.png: >- * platform/chromium-linux/fast/borders/rtl-border-02-expected.png: >- * platform/chromium-linux/fast/borders/rtl-border-03-expected.png: >- * platform/chromium-linux/fast/borders/rtl-border-04-expected.png: >- * platform/chromium-linux/fast/borders/rtl-border-05-expected.png: >- * platform/chromium-linux/fast/borders/svg-as-border-image-2-expected.png: >- * platform/chromium-linux/fast/borders/svg-as-border-image-expected.png: >- * platform/chromium-linux/fast/css-generated-content/014-expected.png: >- * platform/chromium-linux/fast/css-generated-content/016-expected.png: >- * platform/chromium-linux/fast/css-generated-content/hover-style-change-expected.png: >- * platform/chromium-linux/fast/css/MarqueeLayoutTest-expected.png: >- * platform/chromium-linux/fast/css/apple-prefix-expected.png: >- * platform/chromium-linux/fast/css/border-radius-outline-offset-expected.png: >- * platform/chromium-linux/fast/css/fieldset-display-row-expected.png: >- * platform/chromium-linux/fast/css/find-next-layer-expected.png: >- * platform/chromium-linux/fast/css/first-letter-detach-expected.png: >- * platform/chromium-linux/fast/css/h1-in-section-elements-expected.png: >- * platform/chromium-linux/fast/css/hover-subselector-expected.png: >- * platform/chromium-linux/fast/css/input-search-padding-expected.png: >- * platform/chromium-linux/fast/css/list-outline-expected.png: >- * platform/chromium-linux/fast/css/outline-auto-location-expected.png: >- * platform/chromium-linux/fast/css/resize-corner-tracking-expected.png: >- * platform/chromium-linux/fast/css/rtl-ordering-expected.png: >- * platform/chromium-linux/fast/css/universal-hover-quirk-expected.png: >- * platform/chromium-linux/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png: >- * platform/chromium-linux/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: >- * platform/chromium-linux/fast/dom/HTMLTableElement/colSpan-expected.png: >- * platform/chromium-linux/fast/dom/HTMLTableElement/createCaption-expected.png: >- * platform/chromium-linux/fast/dom/Window/open-existing-pop-up-blocking-expected.png: >- * platform/chromium-linux/fast/dom/clone-node-dynamic-style-expected.png: >- * platform/chromium-linux/fast/dom/css-inline-style-important-expected.png: >- * platform/chromium-linux/fast/dom/isindex-001-expected.png: >- * platform/chromium-linux/fast/dom/isindex-002-expected.png: >- * platform/chromium-linux/fast/dom/row-inner-text-expected.png: >- * platform/chromium-linux/fast/dynamic/012-expected.png: >- * platform/chromium-linux/fast/dynamic/013-expected.png: >- * platform/chromium-linux/fast/dynamic/015-expected.png: >- * platform/chromium-linux/fast/dynamic/selection-highlight-adjust-expected.png: >- * platform/chromium-linux/fast/encoding/utf-16-big-endian-expected.png: >- * platform/chromium-linux/fast/encoding/utf-16-little-endian-expected.png: >- * platform/chromium-linux/fast/forms/006-expected.png: >- * platform/chromium-linux/fast/forms/007-expected.png: >- * platform/chromium-win-vista/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: >- * platform/chromium-win/editing/selection/7152-1-expected.png: >- * platform/chromium-win/editing/selection/7152-2-expected.png: >- * platform/chromium-win/editing/selection/click-start-of-line-expected.png: >- * platform/chromium-win/editing/selection/iframe-expected.png: >- * platform/chromium-win/editing/selection/image-before-linebreak-expected.png: >- * platform/chromium-win/editing/selection/inline-table-expected.png: >- * platform/chromium-win/editing/selection/mixed-editability-3-expected.png: >- * platform/chromium-win/editing/selection/mixed-editability-4-expected.png: >- * platform/chromium-win/editing/selection/mixed-editability-5-expected.png: >- * platform/chromium-win/editing/selection/mixed-editability-8-expected.png: >- * platform/chromium-win/editing/selection/mixed-editability-9-expected.png: >- * platform/chromium-win/editing/selection/move-by-line-001-expected.png: >- * platform/chromium-win/editing/selection/select-all-iframe-expected.png: >- * platform/chromium-win/editing/style/5017613-1-expected.png: >- * platform/chromium-win/editing/style/5017613-2-expected.png: >- * platform/chromium-win/editing/undo/4063751-expected.png: >- * platform/chromium-win/editing/unsupported-content/table-type-after-expected.png: >- * platform/chromium-win/editing/unsupported-content/table-type-before-expected.png: >- * platform/chromium-win/fast/backgrounds/background-inherit-color-bug-expected.png: >- * platform/chromium-win/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize17-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize18-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize19-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize20-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize21-expected.png: >- * platform/chromium-win/fast/backgrounds/size/backgroundSize22-expected.png: >- * platform/chromium-win/fast/block/basic/013-expected.png: >- * platform/chromium-win/fast/block/basic/018-expected.png: >- * platform/chromium-win/fast/block/basic/fieldset-stretch-to-legend-expected.png: >- * platform/chromium-win/fast/block/basic/quirk-percent-height-table-cell-expected.png: >- * platform/chromium-win/fast/block/basic/text-indent-rtl-expected.png: >- * platform/chromium-win/fast/block/float/015-expected.png: >- * platform/chromium-win/fast/block/float/016-expected.png: >- * platform/chromium-win/fast/block/float/025-expected.png: >- * platform/chromium-win/fast/block/float/026-expected.png: >- * platform/chromium-win/fast/block/float/027-expected.png: >- * platform/chromium-win/fast/block/float/028-expected.png: >- * platform/chromium-win/fast/block/float/032-expected.png: >- * platform/chromium-win/fast/block/float/float-avoidance-expected.png: >- * platform/chromium-win/fast/block/float/nopaint-after-layer-destruction-expected.png: >- * platform/chromium-win/fast/block/float/nopaint-after-layer-destruction2-expected.png: >- * platform/chromium-win/fast/block/float/table-relayout-expected.png: >- * platform/chromium-win/fast/block/float/width-update-after-clear-expected.png: >- * platform/chromium-win/fast/block/margin-collapse/empty-clear-blocks-expected.png: >- * platform/chromium-win/fast/block/positioning/height-change-expected.png: >- * platform/chromium-win/fast/block/positioning/leftmargin-topmargin-expected.png: >- * platform/chromium-win/fast/block/positioning/relayout-on-position-change-expected.png: >- * platform/chromium-win/fast/block/positioning/window-height-change-expected.png: >- * platform/chromium-win/fast/blockflow/fieldsets-expected.png: >- * platform/chromium-win/fast/borders/rtl-border-01-expected.png: >- * platform/chromium-win/fast/borders/rtl-border-02-expected.png: >- * platform/chromium-win/fast/borders/rtl-border-03-expected.png: >- * platform/chromium-win/fast/borders/rtl-border-04-expected.png: >- * platform/chromium-win/fast/borders/rtl-border-05-expected.png: >- * platform/chromium-win/fast/borders/svg-as-border-image-2-expected.png: >- * platform/chromium-win/fast/borders/svg-as-border-image-expected.png: >- * platform/chromium-win/fast/borders/table-borders-expected.png: >- * platform/chromium-win/fast/box-shadow/box-shadow-radius-expected.png: >- * platform/chromium-win/fast/box-shadow/inset-box-shadow-radius-expected.png: >- * platform/chromium-win/fast/css-generated-content/014-expected.png: >- * platform/chromium-win/fast/css-generated-content/016-expected.png: >- * platform/chromium-win/fast/css-generated-content/hover-style-change-expected.png: >- * platform/chromium-win/fast/css/MarqueeLayoutTest-expected.png: >- * platform/chromium-win/fast/css/apple-prefix-expected.png: >- * platform/chromium-win/fast/css/border-radius-outline-offset-expected.png: >- * platform/chromium-win/fast/css/fieldset-display-row-expected.png: >- * platform/chromium-win/fast/css/find-next-layer-expected.png: >- * platform/chromium-win/fast/css/first-letter-detach-expected.png: >- * platform/chromium-win/fast/css/h1-in-section-elements-expected.png: >- * platform/chromium-win/fast/css/hover-subselector-expected.png: >- * platform/chromium-win/fast/css/input-search-padding-expected.png: >- * platform/chromium-win/fast/css/list-outline-expected.png: >- * platform/chromium-win/fast/css/outline-auto-location-expected.png: >- * platform/chromium-win/fast/css/resize-corner-tracking-expected.png: >- * platform/chromium-win/fast/css/rtl-ordering-expected.png: >- * platform/chromium-win/fast/css/universal-hover-quirk-expected.png: >- * platform/chromium-win/fast/dom/HTMLLinkElement/pending-stylesheet-count-expected.png: >- * platform/chromium-win/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: >- * platform/chromium-win/fast/dom/HTMLTableElement/colSpan-expected.png: >- * platform/chromium-win/fast/dom/HTMLTableElement/createCaption-expected.png: >- * platform/chromium-win/fast/dom/Window/open-existing-pop-up-blocking-expected.png: >- * platform/chromium-win/fast/dom/attr_dead_doc-expected.png: >- * platform/chromium-win/fast/dom/clone-node-dynamic-style-expected.png: >- * platform/chromium-win/fast/dom/css-inline-style-important-expected.png: >- * platform/chromium-win/fast/dom/isindex-001-expected.png: >- * platform/chromium-win/fast/dom/isindex-002-expected.png: >- * platform/chromium-win/fast/dom/row-inner-text-expected.png: >- * platform/chromium-win/fast/dynamic/012-expected.png: >- * platform/chromium-win/fast/dynamic/013-expected.png: >- * platform/chromium-win/fast/dynamic/015-expected.png: >- * platform/chromium-win/fast/dynamic/selection-highlight-adjust-expected.png: >- * platform/chromium-win/fast/encoding/utf-16-big-endian-expected.png: >- * platform/chromium-win/fast/encoding/utf-16-little-endian-expected.png: >- * platform/chromium-win/fast/forms/006-expected.png: >- * platform/chromium-win/fast/forms/007-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Fix test_expectations.txt >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update win/linux pixel baselines for r90701 (part 2/??) >- >- * platform/chromium-linux/css1/box_properties/padding_left_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_right-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_right_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_top-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_top_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/width-expected.png: >- * platform/chromium-linux/css1/cascade/cascade_order-expected.png: >- * platform/chromium-linux/css1/cascade/important-expected.png: >- * platform/chromium-linux/css1/classification/display-expected.png: >- * platform/chromium-linux/css1/classification/list_style-expected.png: >- * platform/chromium-linux/css1/classification/list_style_image-expected.png: >- * platform/chromium-linux/css1/classification/list_style_position-expected.png: >- * platform/chromium-linux/css1/classification/list_style_type-expected.png: >- * platform/chromium-linux/css1/classification/white_space-expected.png: >- * platform/chromium-linux/css1/color_and_background/background-expected.png: >- * platform/chromium-linux/css1/color_and_background/background_attachment-expected.png: >- * platform/chromium-linux/css1/color_and_background/background_color-expected.png: >- * platform/chromium-linux/css1/color_and_background/background_image-expected.png: >- * platform/chromium-linux/css1/color_and_background/background_position-expected.png: >- * platform/chromium-linux/css1/color_and_background/background_repeat-expected.png: >- * platform/chromium-linux/css1/color_and_background/color-expected.png: >- * platform/chromium-linux/css1/font_properties/font-expected.png: >- * platform/chromium-linux/css1/font_properties/font_family-expected.png: >- * platform/chromium-linux/css1/font_properties/font_size-expected.png: >- * platform/chromium-linux/css1/font_properties/font_style-expected.png: >- * platform/chromium-linux/css1/font_properties/font_variant-expected.png: >- * platform/chromium-linux/css1/font_properties/font_weight-expected.png: >- * platform/chromium-linux/css1/formatting_model/canvas-expected.png: >- * platform/chromium-linux/css1/formatting_model/floating_elements-expected.png: >- * platform/chromium-linux/css1/formatting_model/height_of_lines-expected.png: >- * platform/chromium-linux/css1/formatting_model/inline_elements-expected.png: >- * platform/chromium-linux/css1/formatting_model/replaced_elements-expected.png: >- * platform/chromium-linux/css1/formatting_model/vertical_formatting-expected.png: >- * platform/chromium-linux/css1/pseudo/anchor-expected.png: >- * platform/chromium-linux/css1/pseudo/firstletter-expected.png: >- * platform/chromium-linux/css1/pseudo/firstline-expected.png: >- * platform/chromium-linux/css1/pseudo/multiple_pseudo_elements-expected.png: >- * platform/chromium-linux/css1/pseudo/pseudo_elements_in_selectors-expected.png: >- * platform/chromium-linux/css1/text_properties/letter_spacing-expected.png: >- * platform/chromium-linux/css1/text_properties/line_height-expected.png: >- * platform/chromium-linux/css1/text_properties/text_align-expected.png: >- * platform/chromium-linux/css1/text_properties/text_decoration-expected.png: >- * platform/chromium-linux/css1/text_properties/text_indent-expected.png: >- * platform/chromium-linux/css1/text_properties/text_transform-expected.png: >- * platform/chromium-linux/css1/text_properties/vertical_align-expected.png: >- * platform/chromium-linux/css1/text_properties/word_spacing-expected.png: >- * platform/chromium-linux/css1/units/color_units-expected.png: >- * platform/chromium-linux/css1/units/length_units-expected.png: >- * platform/chromium-linux/css1/units/percentage_units-expected.png: >- * platform/chromium-linux/css1/units/urls-expected.png: >- * platform/chromium-linux/css2.1/t0805-c5516-brdr-c-00-a-expected.png: >- * platform/chromium-linux/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: >- * platform/chromium-linux/css2.1/t0805-c5517-brdr-s-00-c-expected.png: >- * platform/chromium-linux/css2.1/t0805-c5522-brdr-00-b-expected.png: >- * platform/chromium-linux/css2.1/t0805-c5522-ibrdr-00-a-expected.png: >- * platform/chromium-linux/css3/css3-modsel-33-expected.png: >- * platform/chromium-linux/editing/deleting/5099303-expected.png: >- * platform/chromium-linux/editing/deleting/5126166-expected.png: >- * platform/chromium-linux/editing/deleting/5206311-1-expected.png: >- * platform/chromium-linux/editing/deleting/5433862-2-expected.png: >- * platform/chromium-linux/editing/deleting/5483370-expected.png: >- * platform/chromium-linux/editing/deleting/table-cells-expected.png: >- * platform/chromium-linux/editing/execCommand/5481523-expected.png: >- * platform/chromium-linux/editing/execCommand/create-list-with-hr-expected.png: >- * platform/chromium-linux/editing/execCommand/find-after-replace-expected.png: >- * platform/chromium-linux/editing/execCommand/insertHorizontalRule-expected.png: >- * platform/chromium-linux/editing/execCommand/paste-1-expected.png: >- * platform/chromium-linux/editing/execCommand/paste-2-expected.png: >- * platform/chromium-linux/editing/inserting/4278698-expected.png: >- * platform/chromium-linux/editing/inserting/insert-paragraph-01-expected.png: >- * platform/chromium-linux/editing/inserting/insert-paragraph-02-expected.png: >- * platform/chromium-linux/editing/inserting/insert-paragraph-03-expected.png: >- * platform/chromium-linux/editing/inserting/insert-paragraph-04-expected.png: >- * platform/chromium-linux/editing/inserting/paragraph-separator-in-table-1-expected.png: >- * platform/chromium-linux/editing/inserting/paragraph-separator-in-table-2-expected.png: >- * platform/chromium-linux/editing/pasteboard/4076267-2-expected.png: >- * platform/chromium-linux/editing/pasteboard/4076267-3-expected.png: >- * platform/chromium-linux/editing/pasteboard/4076267-expected.png: >- * platform/chromium-linux/editing/pasteboard/5156401-1-expected.png: >- * platform/chromium-linux/editing/pasteboard/5387578-expected.png: >- * platform/chromium-linux/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: >- * platform/chromium-linux/editing/pasteboard/drop-text-without-selection-expected.png: >- * platform/chromium-linux/editing/pasteboard/merge-end-table-expected.png: >- * platform/chromium-linux/editing/pasteboard/subframe-dragndrop-1-expected.png: >- * platform/chromium-linux/editing/pasteboard/undoable-fragment-removes-expected.png: >- * platform/chromium-linux/editing/selection/4402375-expected.png: >- * platform/chromium-linux/editing/selection/4776665-expected.png: >- * platform/chromium-linux/editing/selection/4818145-expected.png: >- * platform/chromium-linux/editing/selection/4889598-expected.png: >- * platform/chromium-linux/editing/selection/4895428-2-expected.png: >- * platform/chromium-linux/editing/selection/4960137-expected.png: >- * platform/chromium-linux/editing/selection/4975120-expected.png: >- * platform/chromium-linux/editing/selection/5057506-2-expected.png: >- * platform/chromium-linux/editing/selection/5057506-expected.png: >- * platform/chromium-linux/editing/selection/6476-expected.png: >- * platform/chromium-win/css1/box_properties/padding_left_inline-expected.png: >- * platform/chromium-win/css1/box_properties/padding_right-expected.png: >- * platform/chromium-win/css1/box_properties/padding_right_inline-expected.png: >- * platform/chromium-win/css1/box_properties/padding_top-expected.png: >- * platform/chromium-win/css1/box_properties/padding_top_inline-expected.png: >- * platform/chromium-win/css1/box_properties/width-expected.png: >- * platform/chromium-win/css1/cascade/cascade_order-expected.png: >- * platform/chromium-win/css1/cascade/important-expected.png: >- * platform/chromium-win/css1/classification/display-expected.png: >- * platform/chromium-win/css1/classification/list_style-expected.png: >- * platform/chromium-win/css1/classification/list_style_image-expected.png: >- * platform/chromium-win/css1/classification/list_style_position-expected.png: >- * platform/chromium-win/css1/classification/list_style_type-expected.png: >- * platform/chromium-win/css1/classification/white_space-expected.png: >- * platform/chromium-win/css1/color_and_background/background-expected.png: >- * platform/chromium-win/css1/color_and_background/background_attachment-expected.png: >- * platform/chromium-win/css1/color_and_background/background_color-expected.png: >- * platform/chromium-win/css1/color_and_background/background_image-expected.png: >- * platform/chromium-win/css1/color_and_background/background_position-expected.png: >- * platform/chromium-win/css1/color_and_background/background_repeat-expected.png: >- * platform/chromium-win/css1/color_and_background/color-expected.png: >- * platform/chromium-win/css1/font_properties/font-expected.png: >- * platform/chromium-win/css1/font_properties/font_family-expected.png: >- * platform/chromium-win/css1/font_properties/font_size-expected.png: >- * platform/chromium-win/css1/font_properties/font_style-expected.png: >- * platform/chromium-win/css1/font_properties/font_variant-expected.png: >- * platform/chromium-win/css1/font_properties/font_weight-expected.png: >- * platform/chromium-win/css1/formatting_model/canvas-expected.png: >- * platform/chromium-win/css1/formatting_model/floating_elements-expected.png: >- * platform/chromium-win/css1/formatting_model/height_of_lines-expected.png: >- * platform/chromium-win/css1/formatting_model/inline_elements-expected.png: >- * platform/chromium-win/css1/formatting_model/replaced_elements-expected.png: >- * platform/chromium-win/css1/formatting_model/vertical_formatting-expected.png: >- * platform/chromium-win/css1/pseudo/anchor-expected.png: >- * platform/chromium-win/css1/pseudo/firstletter-expected.png: >- * platform/chromium-win/css1/pseudo/firstline-expected.png: >- * platform/chromium-win/css1/pseudo/multiple_pseudo_elements-expected.png: >- * platform/chromium-win/css1/pseudo/pseudo_elements_in_selectors-expected.png: >- * platform/chromium-win/css1/text_properties/letter_spacing-expected.png: >- * platform/chromium-win/css1/text_properties/line_height-expected.png: >- * platform/chromium-win/css1/text_properties/text_align-expected.png: >- * platform/chromium-win/css1/text_properties/text_decoration-expected.png: >- * platform/chromium-win/css1/text_properties/text_indent-expected.png: >- * platform/chromium-win/css1/text_properties/text_transform-expected.png: >- * platform/chromium-win/css1/text_properties/vertical_align-expected.png: >- * platform/chromium-win/css1/text_properties/word_spacing-expected.png: >- * platform/chromium-win/css1/units/color_units-expected.png: >- * platform/chromium-win/css1/units/length_units-expected.png: >- * platform/chromium-win/css1/units/percentage_units-expected.png: >- * platform/chromium-win/css1/units/urls-expected.png: >- * platform/chromium-win/css2.1/t0805-c5516-brdr-c-00-a-expected.png: >- * platform/chromium-win/css2.1/t0805-c5516-ibrdr-c-00-a-expected.png: >- * platform/chromium-win/css2.1/t0805-c5517-brdr-s-00-c-expected.png: >- * platform/chromium-win/css2.1/t0805-c5522-brdr-00-b-expected.png: >- * platform/chromium-win/css2.1/t0805-c5522-ibrdr-00-a-expected.png: >- * platform/chromium-win/css3/css3-modsel-33-expected.png: >- * platform/chromium-win/editing/deleting/5099303-expected.png: >- * platform/chromium-win/editing/deleting/5126166-expected.png: >- * platform/chromium-win/editing/deleting/5206311-1-expected.png: >- * platform/chromium-win/editing/deleting/5433862-2-expected.png: >- * platform/chromium-win/editing/deleting/5483370-expected.png: >- * platform/chromium-win/editing/deleting/table-cells-expected.png: >- * platform/chromium-win/editing/execCommand/5481523-expected.png: >- * platform/chromium-win/editing/execCommand/create-list-with-hr-expected.png: >- * platform/chromium-win/editing/execCommand/find-after-replace-expected.png: >- * platform/chromium-win/editing/execCommand/insertHorizontalRule-expected.png: >- * platform/chromium-win/editing/execCommand/paste-1-expected.png: >- * platform/chromium-win/editing/execCommand/paste-2-expected.png: >- * platform/chromium-win/editing/inserting/4278698-expected.png: >- * platform/chromium-win/editing/inserting/insert-paragraph-01-expected.png: >- * platform/chromium-win/editing/inserting/insert-paragraph-02-expected.png: >- * platform/chromium-win/editing/inserting/insert-paragraph-03-expected.png: >- * platform/chromium-win/editing/inserting/insert-paragraph-04-expected.png: >- * platform/chromium-win/editing/inserting/paragraph-separator-in-table-1-expected.png: >- * platform/chromium-win/editing/inserting/paragraph-separator-in-table-2-expected.png: >- * platform/chromium-win/editing/pasteboard/4076267-2-expected.png: >- * platform/chromium-win/editing/pasteboard/4076267-3-expected.png: >- * platform/chromium-win/editing/pasteboard/4076267-expected.png: >- * platform/chromium-win/editing/pasteboard/5156401-1-expected.png: >- * platform/chromium-win/editing/pasteboard/5387578-expected.png: >- * platform/chromium-win/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.png: >- * platform/chromium-win/editing/pasteboard/drop-text-without-selection-expected.png: >- * platform/chromium-win/editing/pasteboard/merge-end-table-expected.png: >- * platform/chromium-win/editing/pasteboard/subframe-dragndrop-1-expected.png: >- * platform/chromium-win/editing/pasteboard/undoable-fragment-removes-expected.png: >- * platform/chromium-win/editing/selection/4402375-expected.png: >- * platform/chromium-win/editing/selection/4776665-expected.png: >- * platform/chromium-win/editing/selection/4818145-expected.png: >- * platform/chromium-win/editing/selection/4889598-expected.png: >- * platform/chromium-win/editing/selection/4895428-2-expected.png: >- * platform/chromium-win/editing/selection/4960137-expected.png: >- * platform/chromium-win/editing/selection/4975120-expected.png: >- * platform/chromium-win/editing/selection/5057506-2-expected.png: >- * platform/chromium-win/editing/selection/5057506-expected.png: >- * platform/chromium-win/editing/selection/6476-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Add win/linux pixel baselines for r90701 (part 1/20) >- >- * platform/chromium-linux/css1/basic/class_as_selector-expected.png: >- * platform/chromium-linux/css1/basic/comments-expected.png: >- * platform/chromium-linux/css1/basic/containment-expected.png: >- * platform/chromium-linux/css1/basic/contextual_selectors-expected.png: >- * platform/chromium-linux/css1/basic/grouping-expected.png: >- * platform/chromium-linux/css1/basic/id_as_selector-expected.png: >- * platform/chromium-linux/css1/basic/inheritance-expected.png: >- * platform/chromium-linux/css1/box_properties/border-expected.png: >- * platform/chromium-linux/css1/box_properties/border_bottom-expected.png: >- * platform/chromium-linux/css1/box_properties/border_bottom_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_bottom_width-expected.png: >- * platform/chromium-linux/css1/box_properties/border_bottom_width_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_color-expected.png: >- * platform/chromium-linux/css1/box_properties/border_color_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_left-expected.png: >- * platform/chromium-linux/css1/box_properties/border_left_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_left_width-expected.png: >- * platform/chromium-linux/css1/box_properties/border_left_width_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_right-expected.png: >- * platform/chromium-linux/css1/box_properties/border_right_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_right_width-expected.png: >- * platform/chromium-linux/css1/box_properties/border_right_width_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_top-expected.png: >- * platform/chromium-linux/css1/box_properties/border_top_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_top_width-expected.png: >- * platform/chromium-linux/css1/box_properties/border_top_width_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/border_width-expected.png: >- * platform/chromium-linux/css1/box_properties/border_width_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/clear-expected.png: >- * platform/chromium-linux/css1/box_properties/clear_float-expected.png: >- * platform/chromium-linux/css1/box_properties/float-expected.png: >- * platform/chromium-linux/css1/box_properties/float_elements_in_series-expected.png: >- * platform/chromium-linux/css1/box_properties/float_margin-expected.png: >- * platform/chromium-linux/css1/box_properties/float_on_text_elements-expected.png: >- * platform/chromium-linux/css1/box_properties/height-expected.png: >- * platform/chromium-linux/css1/box_properties/margin-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_bottom-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_bottom_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_left-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_left_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_right-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_right_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_top-expected.png: >- * platform/chromium-linux/css1/box_properties/margin_top_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/padding-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_bottom-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_bottom_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_inline-expected.png: >- * platform/chromium-linux/css1/box_properties/padding_left-expected.png: >- * platform/chromium-win/css1/basic/class_as_selector-expected.png: >- * platform/chromium-win/css1/basic/comments-expected.png: >- * platform/chromium-win/css1/basic/containment-expected.png: >- * platform/chromium-win/css1/basic/contextual_selectors-expected.png: >- * platform/chromium-win/css1/basic/grouping-expected.png: >- * platform/chromium-win/css1/basic/id_as_selector-expected.png: >- * platform/chromium-win/css1/basic/inheritance-expected.png: >- * platform/chromium-win/css1/box_properties/border-expected.png: >- * platform/chromium-win/css1/box_properties/border_bottom-expected.png: >- * platform/chromium-win/css1/box_properties/border_bottom_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_bottom_width-expected.png: >- * platform/chromium-win/css1/box_properties/border_bottom_width_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_color-expected.png: >- * platform/chromium-win/css1/box_properties/border_color_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_left-expected.png: >- * platform/chromium-win/css1/box_properties/border_left_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_left_width-expected.png: >- * platform/chromium-win/css1/box_properties/border_left_width_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_right-expected.png: >- * platform/chromium-win/css1/box_properties/border_right_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_right_width-expected.png: >- * platform/chromium-win/css1/box_properties/border_right_width_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_top-expected.png: >- * platform/chromium-win/css1/box_properties/border_top_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_top_width-expected.png: >- * platform/chromium-win/css1/box_properties/border_top_width_inline-expected.png: >- * platform/chromium-win/css1/box_properties/border_width-expected.png: >- * platform/chromium-win/css1/box_properties/border_width_inline-expected.png: >- * platform/chromium-win/css1/box_properties/clear-expected.png: >- * platform/chromium-win/css1/box_properties/clear_float-expected.png: >- * platform/chromium-win/css1/box_properties/float-expected.png: >- * platform/chromium-win/css1/box_properties/float_elements_in_series-expected.png: >- * platform/chromium-win/css1/box_properties/float_margin-expected.png: >- * platform/chromium-win/css1/box_properties/float_on_text_elements-expected.png: >- * platform/chromium-win/css1/box_properties/height-expected.png: >- * platform/chromium-win/css1/box_properties/margin-expected.png: >- * platform/chromium-win/css1/box_properties/margin_bottom-expected.png: >- * platform/chromium-win/css1/box_properties/margin_bottom_inline-expected.png: >- * platform/chromium-win/css1/box_properties/margin_inline-expected.png: >- * platform/chromium-win/css1/box_properties/margin_left-expected.png: >- * platform/chromium-win/css1/box_properties/margin_left_inline-expected.png: >- * platform/chromium-win/css1/box_properties/margin_right-expected.png: >- * platform/chromium-win/css1/box_properties/margin_right_inline-expected.png: >- * platform/chromium-win/css1/box_properties/margin_top-expected.png: >- * platform/chromium-win/css1/box_properties/margin_top_inline-expected.png: >- * platform/chromium-win/css1/box_properties/padding-expected.png: >- * platform/chromium-win/css1/box_properties/padding_bottom-expected.png: >- * platform/chromium-win/css1/box_properties/padding_bottom_inline-expected.png: >- * platform/chromium-win/css1/box_properties/padding_inline-expected.png: >- * platform/chromium-win/css1/box_properties/padding_left-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Windows expectation updates for r90701 >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 Kenichi Ishibashi <bashi@chromium.org> >- >- Let plugins participate in form submission >- https://bugs.webkit.org/show_bug.cgi?id=13061 >- >- Adds a test that checks getting form value from plugins. >- This test will pass only mac Leopard for now. >- >- Reviewed by Anders Carlsson. >- >- * platform/chromium/test_expectations.txt: Added an entry for plugins/form-value.html. >- * platform/gtk/Skipped: Ditto. >- * platform/mac-snowleopard/Skipped: Ditto. >- * platform/qt/Skipped: Ditto. >- * platform/win/Skipped: Ditto. >- * platform/wk2/Skipped: Ditto. >- * plugins/form-value-expected.txt: Added. >- * plugins/form-value.html: Added. >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] More expectation fixes. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Add more test expectations for r90701 >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-10 Tom Hudson <tomhudson@google.com> >- >- Reviewed by James Robinson. >- >- GraphicsContextSkia::drawConvexPolygon doesn't pay attention to shouldAntialias >- https://bugs.webkit.org/show_bug.cgi?id=61369 >- >- * platform/chromium/test_expectations.txt: Temporarily add roughly >- 1100 images that were incorrectly being antialiased; will remove >- once they've been rebaselined off of the bots. >- >-2011-07-10 Adam Barth <abarth@webkit.org> >- >- Optmize LayoutTest resutls by removing redundant results. >- >- Rubber-stamped by Eric Seidel. >- >- * platform/chromium-gpu-linux/compositing/geometry/foreground-layer-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/iframes/invisible-nested-iframe-show-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/overflow/clip-descendents-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-add-remove-child-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-resize-expected.txt: Removed. >- * platform/chromium-linux-x86/fast/backgrounds/border-radius-split-background-expected.png: Removed. >- * platform/chromium-linux-x86/fast/backgrounds/border-radius-split-background-image-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/border-antialiasing-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/border-antialiasing-expected.txt: Removed. >- * platform/chromium-linux-x86/fast/borders/border-radius-constraints-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/border-radius-huge-assert-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/border-radius-split-inline-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusAllStylesAllCorners-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusArcs01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDashed02-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDashed03-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDotted01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDouble01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDouble02-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusDouble03-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusInset01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusInvalidColor-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusOutset01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusSolid01-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusSolid02-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusSolid03-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/borderRadiusSolid04-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/different-color-borders-expected.png: Removed. >- * platform/chromium-linux-x86/fast/borders/fieldsetBorderRadius-expected.png: Removed. >- * platform/chromium-linux-x86/fast/box-shadow/inset-box-shadows-expected.png: Removed. >- * platform/chromium-linux-x86/fast/box-shadow/inset-expected.png: Removed. >- * platform/chromium-linux-x86/fast/box-shadow/inset-with-extraordinary-radii-and-border-expected.png: Removed. >- * platform/chromium-linux-x86/fast/box-shadow/spread-multiple-inset-expected.png: Removed. >- * platform/chromium-linux-x86/fast/clip/overflow-border-radius-clip-expected.png: Removed. >- * platform/chromium-linux-x86/fast/css/last-of-type-pseudo-class-expected.png: Removed. >- * platform/chromium-linux-x86/fast/css/nested-rounded-corners-expected.png: Removed. >- * platform/chromium-linux-x86/fast/gradients/css3-linear-right-angle-gradients-expected.png: Removed. >- * platform/chromium-linux-x86/fast/gradients/css3-repeating-linear-gradients2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-child-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-child-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-details-child-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-details-child-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-summary-child-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-add-summary-child-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-nested-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-nested-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-remove-child-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-remove-child-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-remove-summary-child-1-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-remove-summary-child-2-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-replace-summary-child-expected.png: Removed. >- * platform/chromium-linux-x86/fast/html/details-replace-summary-child-expected.txt: Removed. >- * platform/chromium-linux-x86/fast/html/details-replace-text-expected.png: Removed. >- * platform/chromium-linux-x86/fast/overflow/border-radius-clipping-expected.png: Removed. >- * platform/chromium-linux-x86/fast/repaint/border-radius-repaint-expected.png: Removed. >- * platform/chromium-linux-x86/fast/replaced/outline-replaced-elements-expected.png: Removed. >- * platform/chromium-linux-x86/fast/transforms/shadows-expected.png: Removed. >- * platform/chromium-linux-x86/fullscreen/full-screen-iframe-zIndex-expected.png: Removed. >- * platform/chromium-linux-x86/fullscreen/full-screen-zIndex-after-expected.png: Removed. >- * platform/chromium-linux-x86/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Removed. >- * platform/chromium-linux-x86/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Removed. >- * platform/chromium-linux-x86/media/video-zoom-controls-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1/filters-felem-01-b-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1/shapes-rect-01-t-expected.png: Removed. >- * platform/chromium-linux-x86/svg/W3C-SVG-1.1/shapes-rect-02-t-expected.png: Removed. >- * platform/chromium-linux-x86/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Removed. >- * platform/chromium-linux-x86/svg/as-image/svg-as-background-with-relative-size-expected.png: Removed. >- * platform/chromium-linux-x86/svg/as-image/svg-as-background-with-relative-size-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/as-image/svg-as-background-with-viewBox-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/as-object/object-box-sizing-no-width-height-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/dasharrayOrigin-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/embedding-external-svgs-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/embedding-external-svgs-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/fractional-rects-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/gradient-rotated-bbox-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/invalid-fill-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/invalid-fill-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/invalid-fill-hex-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/invalid-stroke-hex-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/invalid-uri-stroke-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-no-size-attributes-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-height-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-height-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-width-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-width-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-width-height-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-no-width-height-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-no-width-height-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/custom/rounded-rects-expected.png: Removed. >- * platform/chromium-linux-x86/svg/custom/svg-fonts-in-html-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png: Removed. >- * platform/chromium-linux-x86/svg/filters/feBlend-invalid-mode-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/filters/feConvolveFilter-y-bounds-expected.png: Removed. >- * platform/chromium-linux-x86/svg/filters/feDropShadow-expected.png: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/001-expected.png: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/001-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/002-expected.png: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/002-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/003-expected.png: Removed. >- * platform/chromium-linux-x86/svg/hixie/intrinsic/003-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/in-html/by-reference-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/text/scaling-font-with-geometric-precision-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/wicd/rightsizing-grid-expected.png: Removed. >- * platform/chromium-linux-x86/svg/wicd/rightsizing-grid-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-rightsizing-a-expected.png: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-rightsizing-a-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-rightsizing-b-expected.png: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-rightsizing-b-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-scalable-background-image1-expected.png: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-scalable-background-image1-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/wicd/test-scalable-background-image2-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: Removed. >- * platform/chromium-linux-x86/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/zoom/page/zoom-foreignObject-expected.txt: Removed. >- * platform/chromium-linux-x86/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Removed. >- * platform/chromium-linux-x86/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/drag-select-1-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/range-between-block-and-inline-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/select-across-readonly-input-1-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/select-across-readonly-input-2-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/select-across-readonly-input-3-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/select-across-readonly-input-4-expected.txt: Removed. >- * platform/chromium-linux/editing/selection/select-across-readonly-input-5-expected.txt: Removed. >- * platform/chromium-linux/fast/block/positioning/vertical-rl/001-expected.txt: Removed. >- * platform/chromium-linux/fast/borders/border-antialiasing-expected.txt: Removed. >- * platform/chromium-linux/fast/css/percentage-non-integer-expected.txt: Removed. >- * platform/chromium-linux/fast/css/preserve-user-specified-zoom-level-on-reload-expected.txt: Removed. >- * platform/chromium-linux/fast/dom/DeviceOrientation/window-property-expected.txt: Removed. >- * platform/chromium-linux/fast/dom/HTMLAnchorElement/set-href-attribute-hash-expected.txt: Removed. >- * platform/chromium-linux/fast/dom/HTMLProgressElement/progress-element-with-child-crash-expected.txt: Removed. >- * platform/chromium-linux/fast/dom/Window/window-properties-device-orientation-expected.txt: Removed. >- * platform/chromium-linux/fast/forms/cursor-at-editable-content-boundary-expected.txt: Removed. >- * platform/chromium-linux/fast/forms/form-added-to-table-expected.txt: Removed. >- * platform/chromium-linux/fast/forms/input-readonly-autoscroll-expected.txt: Removed. >- * platform/chromium-linux/fast/forms/preserveFormDuringResidualStyle-expected.txt: Removed. >- * platform/chromium-linux/fast/forms/select-background-none-expected.txt: Removed. >- * platform/chromium-linux/fast/gradients/css3-repeating-linear-gradients2-expected.png: Removed. >- * platform/chromium-linux/fast/inline-block/inline-block-vertical-align-expected.txt: Removed. >- * platform/chromium-linux/fast/lists/005-vertical-expected.txt: Removed. >- * platform/chromium-linux/fast/lists/006-vertical-expected.txt: Removed. >- * platform/chromium-linux/fast/lists/007-vertical-expected.txt: Removed. >- * platform/chromium-linux/fast/lists/008-vertical-expected.txt: Removed. >- * platform/chromium-linux/fast/lists/009-vertical-expected.txt: Removed. >- * platform/chromium-linux/fast/multicol/column-rules-expected.txt: Removed. >- * platform/chromium-linux/fast/multicol/layers-in-multicol-expected.txt: Removed. >- * platform/chromium-linux/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.txt: Removed. >- * platform/chromium-linux/fast/table/fixed-table-non-cell-in-row-expected.txt: Removed. >- * platform/chromium-linux/fast/table/inline-form-assert-expected.txt: Removed. >- * platform/chromium-linux/fast/table/insert-cell-before-form-expected.txt: Removed. >- * platform/chromium-linux/fast/table/insert-row-before-form-expected.txt: Removed. >- * platform/chromium-linux/fast/table/table-and-parts-outline-expected.txt: Removed. >- * platform/chromium-linux/fast/text/capitalize-empty-generated-string-expected.txt: Removed. >- * platform/chromium-linux/fast/text/international/bidi-linebreak-001-expected.txt: Removed. >- * platform/chromium-linux/fast/text/international/bidi-linebreak-002-expected.txt: Removed. >- * platform/chromium-linux/fast/text/international/bidi-linebreak-003-expected.txt: Removed. >- * platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-expected.txt: Removed. >- * platform/chromium-linux/fast/text/justify-padding-distribution-expected.png: Removed. >- * platform/chromium-linux/fast/text/softHyphen-expected.txt: Removed. >- * platform/chromium-linux/fast/text/word-break-soft-hyphen-expected.txt: Removed. >- * platform/chromium-linux/fast/xsl/xslt-missing-namespace-in-xslt-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/manifest-redirect-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/resource-redirect-2-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/resource-redirect-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/wrong-content-type-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/wrong-signature-2-expected.txt: Removed. >- * platform/chromium-linux/http/tests/appcache/wrong-signature-expected.txt: Removed. >- * platform/chromium-linux/http/tests/loading/bad-scheme-subframe-expected.txt: Removed. >- * platform/chromium-linux/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Removed. >- * platform/chromium-linux/http/tests/security/aboutBlank/xss-DENIED-set-opener-expected.txt: Removed. >- * platform/chromium-linux/http/tests/security/cross-origin-xsl-BLOCKED-expected.txt: Removed. >- * platform/chromium-linux/http/tests/security/xss-DENIED-frame-name-expected.txt: Removed. >- * platform/chromium-linux/platform/chromium/fast/text/text-stroke-with-border-expected.txt: Removed. >- * platform/chromium-linux/printing/page-count-relayout-shrink-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1/masking-path-05-f-expected.txt: Removed. >- * platform/chromium-linux/svg/W3C-SVG-1.1/paths-data-12-t-expected.txt: Removed. >- * platform/chromium-linux/svg/as-image/svg-as-background-with-relative-size-expected.txt: Removed. >- * platform/chromium-linux/svg/as-image/svg-as-background-with-viewBox-expected.txt: Removed. >- * platform/chromium-linux/svg/batik/text/textDecoration2-expected.txt: Removed. >- * platform/chromium-linux/svg/batik/text/textLayout-expected.txt: Removed. >- * platform/chromium-linux/svg/batik/text/textPCDATA-expected.txt: Removed. >- * platform/chromium-linux/svg/css/path-gradient-stroke-shadow-expected.png: Removed. >- * platform/chromium-linux/svg/custom/dominant-baseline-hanging-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/embedding-external-svgs-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/image-rescale-expected.png: Removed. >- * platform/chromium-linux/svg/custom/image-rescale-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/invalid-fill-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/invalid-fill-hex-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/invalid-stroke-hex-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/invalid-uri-stroke-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/mouse-move-on-svg-container-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/mouse-move-on-svg-container-standalone-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/mouse-move-on-svg-root-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/mouse-move-on-svg-root-standalone-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-no-size-attributes-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-explicit-height-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-explicit-width-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-no-width-height-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-linux/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-linux/svg/custom/small-rect-scale-expected.png: Removed. >- * platform/chromium-linux/svg/custom/text-linking-expected.txt: Removed. >- * platform/chromium-linux/svg/filters/feBlend-invalid-mode-expected.txt: Removed. >- * platform/chromium-linux/svg/filters/feConvolveFilter-y-bounds-expected.png: Removed. >- * platform/chromium-linux/svg/filters/feDisplacementMap-expected.png: Removed. >- * platform/chromium-linux/svg/filters/filter-on-filter-for-text-expected.txt: Removed. >- * platform/chromium-linux/svg/filters/filter-on-tspan-expected.txt: Removed. >- * platform/chromium-linux/svg/hixie/intrinsic/001-expected.txt: Removed. >- * platform/chromium-linux/svg/hixie/intrinsic/002-expected.txt: Removed. >- * platform/chromium-linux/svg/in-html/by-reference-expected.txt: Removed. >- * platform/chromium-linux/svg/text/scaling-font-with-geometric-precision-expected.txt: Removed. >- * platform/chromium-linux/svg/wicd/test-rightsizing-a-expected.txt: Removed. >- * platform/chromium-linux/svg/wicd/test-rightsizing-b-expected.txt: Removed. >- * platform/chromium-linux/svg/wicd/test-scalable-background-image1-expected.txt: Removed. >- * platform/chromium-linux/svg/wicd/test-scalable-background-image2-expected.txt: Removed. >- * platform/chromium-linux/svg/zoom/page/zoom-foreignObject-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/adforce_imgis_com-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug16012-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug2516-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug30559-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug32447-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug34538-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug4527-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug78162-expected.txt: Removed. >- * platform/chromium-linux/tables/mozilla/bugs/bug96343-expected.txt: Removed. >- * platform/chromium-linux/transforms/2d/transform-borderbox-expected.txt: Removed. >- * platform/chromium-linux/transforms/2d/transform-origin-borderbox-expected.txt: Removed. >- * platform/chromium-linux/websocket/tests/bad-sub-protocol-control-chars-expected.txt: Removed. >- * platform/chromium-mac-leopard/css2.1/t1202-counter-04-b-expected.txt: Removed. >- * platform/chromium-mac-leopard/css2.1/t1202-counters-04-b-expected.txt: Removed. >- * platform/chromium-mac-leopard/editing/deleting/delete-tab-003-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/deleting/delete-ws-fixup-001-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/inserting/insert-tab-003-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/blockflow/border-vertical-lr-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/css/focus-ring-detached-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/css/focus-ring-multiline-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/css/font-face-default-font-expected.png: Removed. >- * platform/chromium-mac-leopard/fast/forms/basic-selects-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/forms/file-input-direction-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-AN-after-L-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-AN-after-empty-run-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-CS-after-AN-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-mirror-he-ar-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/bidi-neutral-run-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/text/international/thai-baht-space-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/text-intro-02-b-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/text-intro-05-t-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/coords-viewattr-01-b-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/masking-intro-01-f-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/circular-marker-reference-2-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/linking-a-03-b-preserveAspectRatio-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/linking-a-03-b-viewTarget-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/linking-a-03-b-zoomAndPan-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/non-circular-marker-reference-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/stroked-pattern-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/text-rotated-gradient-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/custom/use-detach-expected.png: Removed. >- * platform/chromium-mac-leopard/svg/custom/use-detach-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/hixie/links/001-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/text/bidi-text-anchor-direction-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/text/bidi-text-query-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/text/bidi-tspans-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/text/small-fonts-2-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Removed. >- * platform/chromium-mac-leopard/svg/zoom/text/zoom-coords-viewattr-01-b-expected.txt: Removed. >- * platform/chromium-mac/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt: Removed. >- * platform/chromium-mac/fast/block/basic/truncation-rtl-expected.txt: Removed. >- * platform/chromium-mac/fast/block/positioning/rtl-fixed-positioning-expected.txt: Removed. >- * platform/chromium-mac/fast/borders/table-borders-expected.txt: Removed. >- * platform/chromium-mac/fast/css/background-clip-values-expected.png: Removed. >- * platform/chromium-mac/fast/css/stylesheet-candidate-nodes-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/dom/getElementsByClassName/011-expected.txt: Removed. >- * platform/chromium-mac/fast/forms/input-number-unacceptable-style-expected.txt: Removed. >- * platform/chromium-mac/fast/forms/select-background-none-expected.txt: Removed. >- * platform/chromium-mac/fast/invalid/missing-end-tag-expected.txt: Removed. >- * platform/chromium-mac/fast/js/console-non-string-values-expected.txt: Removed. >- * platform/chromium-mac/fast/js/number-toExponential-expected.txt: Removed. >- * platform/chromium-mac/fast/js/number-toprecision-expected.txt: Removed. >- * platform/chromium-mac/fast/lists/003-vertical-expected.txt: Removed. >- * platform/chromium-mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.txt: Removed. >- * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.txt: Removed. >- * platform/chromium-mac/fast/multicol/span/span-as-immediate-columns-child-expected.txt: Removed. >- * platform/chromium-mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.txt: Removed. >- * platform/chromium-mac/fast/parser/external-entities-expected.txt: Removed. >- * platform/chromium-mac/fast/parser/xhtml-alternate-entities-expected.txt: Removed. >- * platform/chromium-mac/fast/repaint/inline-vertical-rl-overflow-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/after-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/after-table-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/base-shorter-than-text-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/before-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/before-table-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/text/find-kana-expected.txt: Removed. >- * platform/chromium-mac/fast/text/justify-ideograph-simple-expected.png: Removed. >- * platform/chromium-mac/fast/url/path-url-expected.txt: Removed. >- * platform/chromium-mac/fast/url/scheme-expected.txt: Removed. >- * platform/chromium-mac/fast/xmlhttprequest/xmlhttprequest-nonexistent-file-expected.txt: Removed. >- * platform/chromium-mac/fast/xsl/mozilla-tests-expected.txt: Removed. >- * platform/chromium-mac/fast/xsl/xslt-extra-content-at-end-expected.txt: Removed. >- * platform/chromium-mac/http/tests/security/cross-frame-access-get-expected.txt: Removed. >- * platform/chromium-mac/http/tests/security/xssAuditor/javascript-link-HTML-entities-null-char-expected.txt: Removed. >- * platform/chromium-mac/http/tests/xmlhttprequest/xmlhttprequest-missing-file-exception-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.12.1.1-0-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.12.1.1-0-3-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.12.2-0-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.12.3-0-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.10-0-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.10-0-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.10-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.10-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-0-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-0-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-0-3-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-10-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-11-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-12-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-13-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-14-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-15-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-16-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-17-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-18-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-19-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-2-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-20-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-21-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-3-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-4-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-5-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-6-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-7-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-8-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.13-2-9-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.14-2-4-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.3-4-22-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.3-4-25-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.2.3.6-4-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-3-26-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-3-27-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-5-1-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-5-12-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-5-14-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-5-16-expected.txt: Removed. >- * platform/chromium-mac/ietestcenter/Javascript/15.4.4.15-8-9-expected.txt: Removed. >- * platform/chromium-mac/svg/W3C-SVG-1.1/animate-elem-21-t-expected.txt: Removed. >- * platform/chromium-mac/svg/W3C-SVG-1.1/animate-elem-29-b-expected.txt: Removed. >- * platform/chromium-mac/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Removed. >- * platform/chromium-mac/svg/W3C-SVG-1.1/shapes-ellipse-01-t-expected.txt: Removed. >- * platform/chromium-mac/svg/W3C-SVG-1.1/struct-image-10-t-expected.png: Removed. >- * platform/chromium-mac/svg/custom/gradient-stroke-width-expected.txt: Removed. >- * platform/chromium-mac/svg/custom/use-invalid-pattern-expected.txt: Removed. >- * platform/chromium-mac/svg/custom/use-invalid-style-expected.txt: Removed. >- * platform/chromium-mac/svg/text/bidi-embedded-direction-expected.png: Removed. >- * platform/chromium-mac/svg/text/bidi-embedded-direction-expected.txt: Removed. >- * platform/chromium-mac/tables/mozilla_expected_failures/bugs/bug56024-expected.txt: Removed. >- * platform/chromium-win-vista/fast/borders/border-antialiasing-expected.png: Removed. >- * platform/chromium-win-vista/fast/borders/border-antialiasing-expected.txt: Removed. >- * platform/chromium-win-vista/fast/dom/HTMLAnchorElement/set-href-attribute-hash-expected.txt: Removed. >- * platform/chromium-win-vista/fast/forms/validation-message-appearance-expected.txt: Removed. >- * platform/chromium-win-vista/fast/gradients/css3-linear-right-angle-gradients-expected.png: Removed. >- * platform/chromium-win-vista/fast/gradients/css3-repeating-linear-gradients2-expected.png: Removed. >- * platform/chromium-win-vista/fullscreen/full-screen-iframe-zIndex-expected.png: Removed. >- * platform/chromium-win-vista/fullscreen/full-screen-zIndex-after-expected.png: Removed. >- * platform/chromium-win-vista/http/tests/appcache/manifest-redirect-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/appcache/resource-redirect-2-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/appcache/resource-redirect-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/appcache/wrong-content-type-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/appcache/wrong-signature-2-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/appcache/wrong-signature-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Removed. >- * platform/chromium-win-vista/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Removed. >- * platform/chromium-win-vista/http/tests/security/aboutBlank/xss-DENIED-set-opener-expected.txt: Removed. >- * platform/chromium-win-vista/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Removed. >- * platform/chromium-win-vista/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: Removed. >- * platform/chromium-win-vista/svg/as-image/svg-as-background-with-relative-size-expected.png: Removed. >- * platform/chromium-win-vista/svg/as-image/svg-as-background-with-relative-size-expected.txt: Removed. >- * platform/chromium-win-vista/svg/as-image/svg-as-background-with-viewBox-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/embedding-external-svgs-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/embedding-external-svgs-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-fill-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-fill-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-fill-hex-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-fill-hex-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-stroke-hex-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-stroke-hex-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-uri-stroke-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/invalid-uri-stroke-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-no-size-attributes-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-height-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-height-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-width-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-width-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-width-height-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-explicit-width-height-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-no-width-height-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-no-width-height-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Removed. >- * platform/chromium-win-vista/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Removed. >- * platform/chromium-win-vista/svg/custom/small-rect-scale-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-bias-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-divisor-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-edgeMode-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-in-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelMatrix-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-kernelUnitLength-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-order-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-targetX-attr-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/dynamic-updates/SVGTextElement-svgdom-lengthAdjust-prop-expected.png: Removed. >- * platform/chromium-win-vista/svg/filters/feBlend-invalid-mode-expected.txt: Removed. >- * platform/chromium-win-vista/svg/filters/feConvolveFilter-y-bounds-expected.png: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/001-expected.png: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/001-expected.txt: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/002-expected.png: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/002-expected.txt: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/003-expected.png: Removed. >- * platform/chromium-win-vista/svg/hixie/intrinsic/003-expected.txt: Removed. >- * platform/chromium-win-vista/svg/in-html/by-reference-expected.txt: Removed. >- * platform/chromium-win-vista/svg/text/scaling-font-with-geometric-precision-expected.png: Removed. >- * platform/chromium-win-vista/svg/text/scaling-font-with-geometric-precision-expected.txt: Removed. >- * platform/chromium-win-vista/svg/text/text-fonts-01-t-expected.txt: Removed. >- * platform/chromium-win-vista/svg/wicd/rightsizing-grid-expected.txt: Removed. >- * platform/chromium-win-vista/svg/wicd/test-rightsizing-a-expected.png: Removed. >- * platform/chromium-win-vista/svg/wicd/test-rightsizing-a-expected.txt: Removed. >- * platform/chromium-win-vista/svg/wicd/test-rightsizing-b-expected.txt: Removed. >- * platform/chromium-win-vista/svg/wicd/test-scalable-background-image1-expected.txt: Removed. >- * platform/chromium-win-vista/svg/wicd/test-scalable-background-image2-expected.png: Removed. >- * platform/chromium-win-vista/svg/wicd/test-scalable-background-image2-expected.txt: Removed. >- * platform/chromium-win-vista/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: Removed. >- * platform/chromium-win-vista/svg/zoom/page/zoom-coords-viewattr-01-b-expected.txt: Removed. >- * platform/chromium-win-vista/svg/zoom/page/zoom-foreignObject-expected.txt: Removed. >- * platform/chromium-win-xp/css2.1/t0805-c5519-brdr-r-01-e-expected.png: Removed. >- * platform/chromium-win-xp/css2.1/t0805-c5519-brdr-r-01-e-expected.txt: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c414-flt-fit-01-d-g-expected.png: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c414-flt-fit-01-d-g-expected.txt: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5525-fltblck-00-d-ag-expected.png: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5525-fltblck-00-d-ag-expected.txt: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5525-flthw-00-c-g-expected.png: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5525-flthw-00-c-g-expected.txt: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5526-flthw-00-c-g-expected.png: Removed. >- * platform/chromium-win-xp/css2.1/t0905-c5526-flthw-00-c-g-expected.txt: Removed. >- * platform/chromium-win-xp/fast/forms/input-appearance-spinbutton-layer-expected.png: Removed. >- * platform/chromium-win-xp/platform/chromium/fast/text/text-stroke-with-border-expected.png: Removed. >- * platform/chromium-win-xp/svg/custom/circular-marker-reference-2-expected.txt: Removed. >- * platform/chromium-win-xp/svg/custom/non-circular-marker-reference-expected.txt: Removed. >- * platform/chromium-win-xp/svg/custom/non-scaling-stroke-markers-expected.txt: Removed. >- * platform/chromium-win-xp/svg/hixie/links/001-expected.txt: Removed. >- * platform/chromium-win/fast/css/css3-nth-tokens-script-expected.txt: Removed. >- * platform/chromium-win/fast/css/css3-nth-tokens-style-expected.txt: Removed. >- * platform/chromium-win/fast/dom/getElementsByClassName/011-expected.txt: Removed. >- * platform/chromium-win/fast/forms/cursor-at-editable-content-boundary-expected.txt: Removed. >- * platform/chromium-win/fast/js/console-non-string-values-expected.txt: Removed. >- * platform/chromium-win/fast/js/function-prototype-expected.txt: Removed. >- * platform/chromium-win/fast/js/kde/exception_propagation-expected.txt: Removed. >- * platform/chromium-win/fast/js/number-toExponential-expected.txt: Removed. >- * platform/chromium-win/fast/js/number-toprecision-expected.txt: Removed. >- * platform/chromium-win/fast/repaint/inline-vertical-rl-overflow-expected.txt: Removed. >- * platform/chromium-win/fast/text/justification-padding-mid-word-expected.txt: Removed. >- * platform/chromium-win/fast/url/path-url-expected.txt: Removed. >- * platform/chromium-win/fast/url/scheme-expected.txt: Removed. >- * platform/chromium-win/http/tests/security/cross-frame-access-get-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.12.1.1-0-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.12.1.1-0-3-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.12.2-0-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.12.3-0-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.10-0-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.10-0-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.10-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.10-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-0-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-0-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-0-3-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-10-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-11-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-12-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-13-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-14-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-15-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-16-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-17-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-18-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-19-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-2-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-20-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-21-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-3-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-4-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-5-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-6-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-7-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-8-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.13-2-9-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.14-2-4-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.3-4-22-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.3-4-25-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.2.3.6-4-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-3-26-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-3-27-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-5-1-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-5-12-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-5-14-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-5-16-expected.txt: Removed. >- * platform/chromium-win/ietestcenter/Javascript/15.4.4.15-8-9-expected.txt: Removed. >- * platform/chromium-win/svg/custom/gradient-stroke-width-expected.txt: Removed. >- * platform/chromium-win/svg/custom/pattern-rotate-expected.txt: Removed. >- * platform/chromium-win/svg/dom/length-list-parser-expected.txt: Removed. >- * platform/chromium-win/svg/dom/path-parser-expected.txt: Removed. >- * platform/chromium-win/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.txt: Removed. >- * platform/chromium-win/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.txt: Removed. >- * platform/gtk/editing/pasteboard/page-zoom-expected.txt: Removed. >- * platform/gtk/fast/borders/outline-alpha-block-expected.txt: Removed. >- * platform/gtk/fast/borders/outline-alpha-inline-expected.txt: Removed. >- * platform/gtk/fast/canvas/canvas-toDataURL-case-insensitive-mimetype-expected.txt: Removed. >- * platform/gtk/fast/forms/onselect-textarea-expected.txt: Removed. >- * platform/gtk/fast/table/simple_paint-expected.txt: Removed. >- * platform/gtk/http/tests/security/contentSecurityPolicy/report-uri-expected.txt: Removed. >- * platform/gtk/http/tests/security/contentSecurityPolicy/report-uri-from-child-frame-expected.txt: Removed. >- * platform/gtk/svg/custom/text-zoom-expected.txt: Removed. >- * platform/mac-leopard/accessibility/table-with-aria-role-expected.txt: Removed. >- * platform/mac-leopard/fast/canvas/webgl/css-webkit-canvas-expected.png: Removed. >- * platform/mac-leopard/fast/canvas/webgl/css-webkit-canvas-repaint-expected.png: Removed. >- * platform/mac-leopard/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.txt: Removed. >- * platform/mac-leopard/fast/multicol/span/span-margin-collapsing-expected.txt: Removed. >- * platform/mac-leopard/fast/ruby/base-shorter-than-text-expected.txt: Removed. >- * platform/mac-leopard/fast/text/emphasis-combined-text-expected.txt: Removed. >- * platform/mac-leopard/http/tests/xmlhttprequest/basic-auth-nopassword-expected.txt: Removed. >- * platform/mac-leopard/media/controls-strict-mode-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-08-t-expected.png: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/animate-elem-84-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/painting-marker-03-f-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/paths-data-04-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/paths-data-05-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/paths-data-06-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/paths-data-07-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/paths-data-08-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/shapes-circle-01-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/shapes-circle-02-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-02-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/struct-frag-03-t-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/text-text-01-b-expected.txt: Removed. >- * platform/mac-leopard/svg/W3C-SVG-1.1/text-text-03-b-expected.txt: Removed. >- * platform/mac-leopard/svg/batik/text/smallFonts-expected.txt: Removed. >- * platform/mac-leopard/svg/carto.net/button-expected.txt: Removed. >- * platform/mac-leopard/svg/carto.net/combobox-expected.txt: Removed. >- * platform/mac-leopard/svg/carto.net/textbox-expected.txt: Removed. >- * platform/mac-leopard/svg/carto.net/window-expected.txt: Removed. >- * platform/mac-leopard/svg/clip-path/clip-in-mask-expected.txt: Removed. >- * platform/mac-leopard/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.txt: Removed. >- * platform/mac-leopard/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.txt: Removed. >- * platform/mac-leopard/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/circular-marker-reference-2-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/image-rescale-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/js-late-clipPath-and-object-creation-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/js-late-clipPath-creation-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/marker-default-width-height-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/non-circular-marker-reference-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/non-scaling-stroke-markers-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/path-textPath-simulation-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/stroke-width-large-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/stroked-pattern-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/text-rotated-gradient-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/tref-update-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/use-detach-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/use-referencing-nonexisting-symbol-expected.txt: Removed. >- * platform/mac-leopard/svg/custom/viewBox-hit-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/error/017-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/links/001-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/mixed/004-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/mixed/005-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/001-expected.txt: Removed. >- * platform/mac-leopard/svg/hixie/viewbox/preserveAspectRatio/002-expected.txt: Removed. >- * platform/mac-leopard/svg/text/font-size-below-point-five-2-expected.txt: Removed. >- * platform/mac-leopard/svg/text/scaled-font-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-squeeze-1-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-squeeze-2-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-squeeze-3-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-squeeze-4-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-stretch-1-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-stretch-2-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-stretch-3-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacing-stretch-4-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.txt: Removed. >- * platform/mac-leopard/svg/text/select-x-list-3-expected.txt: Removed. >- * platform/mac-leopard/svg/text/small-fonts-2-expected.txt: Removed. >- * platform/mac-leopard/svg/text/small-fonts-3-expected.txt: Removed. >- * platform/mac-leopard/svg/text/small-fonts-expected.txt: Removed. >- * platform/mac-leopard/svg/text/small-fonts-in-html5-expected.txt: Removed. >- * platform/mac-leopard/svg/text/text-text-01-b-expected.txt: Removed. >- * platform/mac-leopard/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Removed. >- * platform/mac-snowleopard/fast/forms/input-placeholder-visibility-1-expected.txt: Removed. >- * platform/mac-snowleopard/fast/forms/input-placeholder-visibility-2-expected.txt: Removed. >- * platform/mac-snowleopard/fast/forms/input-placeholder-visibility-3-expected.txt: Removed. >- * platform/mac-wk2/fast/forms/cursor-at-editable-content-boundary-expected.txt: Removed. >- * platform/mac-wk2/media/controls-without-preload-expected.txt: Removed. >- * platform/win-wk2/editing/selection/caret-ltr-right-expected.txt: Removed. >- * platform/win-wk2/editing/selection/drag-text-delay-expected.txt: Removed. >- * platform/win-wk2/fast/css/pseudo-any-expected.txt: Removed. >- * platform/win-wk2/fast/forms/textfield-overflow-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/after-block-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/after-table-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/before-block-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/before-table-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Removed. >- * platform/win-wk2/http/tests/uri/username-with-no-hostname-expected.txt: Removed. >- * platform/win-wk2/plugins/npruntime/embed-property-equality-expected.txt: Removed. >- * platform/win-wk2/plugins/resize-from-plugin-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/g-dirLTR-ubNone-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/g-dirLTR-ubOverride-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/g-dirRTL-ubNone-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/g-dirRTL-ubOverride-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/text-dirLTR-ubNone-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/text-dirRTL-ubNone-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/text-dirRTL-ubOverride-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/tspan-dirLTR-ubEmbed-in-rtl-context-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/tspan-dirLTR-ubNone-in-rtl-context-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/tspan-dirRTL-ubOverride-in-rtl-context-expected.txt: Removed. >- * platform/win-xp/svg/W3C-I18N/tspan-direction-rtl-expected.txt: Removed. >- * platform/win-xp/svg/text/bidi-tspans-expected.txt: Removed. >- * platform/win/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Removed. >- * platform/win/editing/inserting/4960120-1-expected.txt: Removed. >- * platform/win/editing/pasteboard/5761530-1-expected.txt: Removed. >- * platform/win/editing/pasteboard/drag-image-to-contenteditable-in-iframe-expected.txt: Removed. >- * platform/win/editing/selection/select-text-overflow-ellipsis-expected.txt: Removed. >- * platform/win/fast/css/box-shadow-and-border-radius-expected.txt: Removed. >- * platform/win/fast/css/opacity-float-expected.txt: Removed. >- * platform/win/fast/css/resize-corner-tracking-expected.txt: Removed. >- * platform/win/fast/dom/HTMLTextAreaElement/reset-textarea-expected.txt: Removed. >- * platform/win/fast/dom/horizontal-scrollbar-when-dir-change-expected.txt: Removed. >- * platform/win/fast/events/panScroll-click-hyperlink-expected.txt: Removed. >- * platform/win/fast/forms/basic-textareas-expected.txt: Removed. >- * platform/win/fast/forms/basic-textareas-quirks-expected.txt: Removed. >- * platform/win/fast/forms/search-cancel-button-style-sharing-expected.txt: Removed. >- * platform/win/fast/forms/search-display-none-cancel-button-expected.txt: Removed. >- * platform/win/fast/forms/search-placeholder-value-changed-expected.txt: Removed. >- * platform/win/fast/forms/textAreaLineHeight-expected.txt: Removed. >- * platform/win/fast/forms/textarea-metrics-expected.txt: Removed. >- * platform/win/fast/forms/textarea-placeholder-pseudo-style-expected.txt: Removed. >- * platform/win/fast/forms/textarea-placeholder-set-attribute-expected.txt: Removed. >- * platform/win/fast/forms/textarea-placeholder-set-value-expected.txt: Removed. >- * platform/win/fast/forms/textarea-scrollbar-expected.txt: Removed. >- * platform/win/fast/forms/textarea-scrolled-type-expected.txt: Removed. >- * platform/win/fast/forms/textarea-setinnerhtml-expected.txt: Removed. >- * platform/win/fast/images/favicon-as-image-expected.txt: Removed. >- * platform/win/fast/overflow/overflow-x-y-expected.txt: Removed. >- * platform/win/fast/parser/entity-comment-in-textarea-expected.txt: Removed. >- * platform/win/fast/parser/open-comment-in-textarea-expected.txt: Removed. >- * platform/win/fast/text/atsui-negative-spacing-features-expected.txt: Removed. >- * platform/win/fast/text/international/bidi-control-chars-treated-as-ZWS-expected.txt: Removed. >- * platform/win/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.txt: Removed. >- * platform/win/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/win/svg/W3C-SVG-1.1/animate-elem-82-t-expected.txt: Removed. >- * platform/win/svg/W3C-SVG-1.1/coords-trans-01-b-expected.txt: Removed. >- * platform/win/svg/W3C-SVG-1.1/extend-namespace-01-f-expected.png: Removed. >- * platform/win/svg/batik/masking/maskRegions-expected.txt: Removed. >- * platform/win/svg/custom/broken-internal-references-expected.txt: Removed. >- * platform/win/svg/custom/junk-data-expected.txt: Removed. >- * platform/win/svg/filters/feColorMatrix-values-expected.txt: Removed. >- * platform/win/svg/zoom/page/zoom-mask-with-percentages-expected.txt: Removed. >- * platform/win/tables/mozilla/bugs/bug30559-expected.txt: Removed. >- >-2011-07-10 Adam Barth <abarth@webkit.org> >- >- Remove LayoutTests/platform/android and LayoutTests/platform/android-v8 >- https://bugs.webkit.org/show_bug.cgi?id=64240 >- >- Reviewed by Sam Weinig. >- >- These results directories are basically empty and haven't been touched >- in almost a year. There are not maintained and are almost certantly >- out of date. >- >- * platform/android: Removed. >- * platform/android-v8: Removed. >- * platform/android-v8/fast: Removed. >- * platform/android-v8/fast/dom: Removed. >- * platform/android-v8/fast/dom/DeviceMotion: Removed. >- * platform/android-v8/fast/dom/DeviceMotion/window-property-expected.txt: Removed. >- * platform/android-v8/fast/dom/DeviceOrientation: Removed. >- * platform/android-v8/fast/dom/DeviceOrientation/window-property-expected.txt: Removed. >- * platform/android/fast: Removed. >- * platform/android/fast/text: Removed. >- * platform/android/fast/text/hyphenate-character-expected.txt: Removed. >- * platform/android/fast/text/hyphens-expected.txt: Removed. >- >-2011-07-10 Dan Bernstein <mitz@apple.com> >- >- <rdar://problem/9750062> REGRESSION: Button text missing in many iTunes Store pages >- https://bugs.webkit.org/show_bug.cgi?id=64236 >- >- Reviewed by Maciej Stachowiak. >- >- * fast/css/empty-display-none-expected.txt: Added. >- * fast/css/empty-display-none.html: Added. >- >-2011-07-08 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; new chromium GPU pixel results for overflow-scroll-expected. >- >- * platform/chromium-gpu-mac/compositing/overflow/overflow-scroll-expected.png: >- * platform/chromium-gpu-win/compositing/overflow/overflow-scroll-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-08 Adam Roben <aroben@apple.com> >- >- Skip all HTMLProgressElement tests on Windows >- >- <http://webkit.org/b/49769> tracks implementing this element on Windows. For now it's just a >- source of failing tests. >- >- * platform/win/Skipped: Skip the entire HTMLProgressElement directory so we don't have to >- keep adding new tests one-by-one. >- >-2011-07-08 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test_expectations update. >- >- Add some MAC GPU failing tests from r90464. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-08 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test_expectations update. >- >- Add some WIN GPU failing tests from r90464 to test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-08 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test rebaseline. >- >- New baseline for a failing test on GPU linux introduced in r90646. >- >- * platform/chromium-gpu-linux/platform/chromium/compositing/layout-width-change-expected.png: >- >-2011-07-08 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations cleanup. >- >- Removed some duplicate expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-08 David Reveman <reveman@chromium.org> >- >- Reviewed by Stephen White. >- >- [Chromium] Edge anti-aliasing for composited layers. >- https://bugs.webkit.org/show_bug.cgi?id=61388 >- >- * platform/chromium/compositing/tiny-layer-rotated-expected.png: Added. >- * platform/chromium/compositing/tiny-layer-rotated-expected.txt: Added. >- * platform/chromium/compositing/tiny-layer-rotated.html: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-08 Mihnea Ovidenie <mihnea@adobe.com> >- >- [CSSRegions]Parse content: -webkit-from-flow >- https://bugs.webkit.org/show_bug.cgi?id=63133 >- >- Reviewed by David Hyatt. >- >- * fast/regions/content-webkit-from-flow-parsing-expected.txt: Added. >- * fast/regions/content-webkit-from-flow-parsing.html: Added. >- * fast/regions/script-tests/content-webkit-from-flow-parsing.js: Added. >- >-2011-07-08 Vsevolod Vlasov <vsevik@chromium.org> >- >- REGRESSION (r90557): http/tests/inspector/network/network-embed.html fails >- https://bugs.webkit.org/show_bug.cgi?id=64103 >- >- Unreviewed test fix (typo). >- >- * http/tests/inspector/network/network-embed.html: >- >-2011-07-08 Pavel Feldman <pfeldman@google.com> >- >- Web Inspector: styles-disable-then-delete was flaky. >- https://bugs.webkit.org/show_bug.cgi?id=64170 >- >- Reviewed by Yury Semikhatsky. >- >- * inspector/styles/styles-add-invalid-property.html: >- * inspector/styles/styles-disable-then-delete.html: >- >-2011-07-08 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: inspector/styles/styles-url-linkify.html is flaky. >- https://bugs.webkit.org/show_bug.cgi?id=64171 >- >- Added image files because the behavior differs when they are not available. >- >- Unreviewed test fix: added image files. >- >- * inspector/styles/resources/fromcss.png: Added. >- * inspector/styles/resources/iframed.png: Added. >- * inspector/styles/styles-url-linkify-expected.txt: >- >-2011-07-08 Andras Becsi <abecsi@webkit.org> >- >- [Qt] http/tests/plugins/get-url.html is crashing on the bot >- https://bugs.webkit.org/show_bug.cgi?id=64168 >- >- Unreviewed gardening. >- >- The cause of the crash revealed itself as a side effect thus >- it is better to expect the test to CRASH rather than skipping it. >- >- * platform/qt/Skipped: Unskip test. >- * platform/qt/test_expectations.txt: Mark as CRASH >- >-2011-07-08 Andras Becsi <abecsi@webkit.org> >- >- [Qt] http/tests/plugins/get-url.html is crashing on the bot >- https://bugs.webkit.org/show_bug.cgi?id=64168 >- >- Unreviewed gardening. >- >- * platform/qt/Skipped: Skip the test. >- >-2011-07-08 Alexander Pavlov <apavlov@chromium.org> >- >- Web Inspector: CSS inspector gets confused about specificity of !important properties >- https://bugs.webkit.org/show_bug.cgi?id=64074 >- >- Reviewed by Yury Semikhatsky. >- >- * inspector/elements/elements-panel-styles-expected.txt: >- * inspector/elements/resources/elements-panel-styles.css: >- (#container .foo): >- (.foo): >- >-2011-07-08 Andrey Kosyakov <caseq@chromium.org> >- >- Web Inspector: secure access to extensions API >- https://bugs.webkit.org/show_bug.cgi?id=64080 >- >- Reviewed by Pavel Feldman. >- >- * inspector/extensions/extensions.html: add explicit base paths to extension resource being loaded. >- >-2011-07-08 Andras Becsi <abecsi@webkit.org> >- >- Add BUG modifier which was accidentally removed in the previous commit >- >- Unreviewed. >- >- * platform/qt/test_expectations.txt: >- >-2011-07-08 Andras Becsi <abecsi@webkit.org> >- >- [Qt] Some tests are flaky with NRWT >- https://bugs.webkit.org/show_bug.cgi?id=64002 >- >- Unreviewed gardening. >- >- * platform/qt/test_expectations.txt: Skip fast/forms/textfield-overflow-by-value-update.html >- because it sometimes does not produce any output. >- >-2011-07-08 Andras Becsi <abecsi@webkit.org> >- >- Rebaseline expected file after r90567 >- >- Unreviewed. >- >- * inspector/styles/styles-url-linkify-expected.txt: >- >-2011-07-07 Alexander Pavlov <apavlov@chromium.org> >- >- Web Inspector: Adding CSS properties results in messy style rules >- https://bugs.webkit.org/show_bug.cgi?id=63622 >- >- Reviewed by Pavel Feldman. >- >- * inspector/styles/styles-formatting-expected.txt: Added. >- * inspector/styles/styles-formatting.html: Added. >- * inspector/styles/styles-new-API-expected.txt: >- * inspector/styles/styles-new-API.html: >- >-2011-07-08 Alexander Pavlov <apavlov@chromium.org> >- >- Web Inspector: Quotes are rendered as " in the DOM tree >- https://bugs.webkit.org/show_bug.cgi?id=64154 >- >- Reviewed by Yury Semikhatsky. >- >- * inspector/elements/elements-panel-structure-expected.txt: >- * inspector/elements/elements-panel-structure.html: >- >-2011-07-08 Yury Semikhatsky <yurys@chromium.org> >- >- Web Inspector: typing undefined = 1 in console crashes browser >- https://bugs.webkit.org/show_bug.cgi?id=64155 >- >- Reviewed by Pavel Feldman. >- >- * inspector/console/console-eval-undefined-override-expected.txt: Added. >- * inspector/console/console-eval-undefined-override.html: Added. >- * platform/chromium/inspector/console/console-eval-undefined-override-expected.txt: Added. >- >-2011-07-08 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed. Moving test expectation from platform-specific to generic. >- >- * fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent-expected.txt. >- >-2011-07-07 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Clear cookies after test in httponly-cookie.pl >- https://bugs.webkit.org/show_bug.cgi?id=64145 >- >- Reviewed by Kent Tamura. >- >- This test leaks cookies, which would cause a test failure if we put >- a copy of this test under http/tests/websocket/tests. >- >- To avoid this issue, cookies should be removed before the test ends. >- >- * http/tests/websocket/tests/hixie76/httponly-cookie.pl: >- After the test, send an XHR request to itself with a query parameter, >- which erases cookies used in this test by setting "Max-Age=0". >- >-2011-07-07 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update baseline files for input-appearance-range.html. >- >- * platform/chromium-linux/fast/forms/input-appearance-range-expected.png: >- * platform/chromium-mac-leopard/fast/forms/input-appearance-range-expected.png: >- * platform/chromium-mac/fast/forms/input-appearance-range-expected.png: Removed. >- * platform/chromium-win/fast/forms/input-appearance-range-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-07-07 MORITA Hajime <morrita@google.com> >- >- dump-as-markup.js should support shadow tree >- https://bugs.webkit.org/show_bug.cgi?id=62447 >- >- Reviewed by Ryosuke Niwa. >- >- - Added shadow support to Markup._get() >- - Updated expectations caused by this change. >- - Added explanatory test cases for shadows. >- >- * editing/inserting/5607069-2-expected.txt: >- * editing/inserting/5607069-3-expected.txt: >- * editing/pasteboard/copy-null-characters-expected.txt: >- * editing/selection/dump-as-markup-expected.txt: >- * editing/selection/dump-as-markup-form-text-expected.txt: >- * fast/parser/object-with-textarea-fallback-expected.txt: >- * fast/dom/HTMLMeterElement/meter-element-markup-expected.txt: Added. >- * fast/dom/HTMLMeterElement/meter-element-markup.html: Added. >- * fast/dom/HTMLProgressElement/progress-element-markup-expected.txt: Added. >- * fast/dom/HTMLProgressElement/progress-element-markup.html: Added. >- * fast/dom/HTMLMeterElement/meter-element-markup.html: >- * fast/dom/HTMLProgressElement/progress-element-markup.html: >- * resources/dump-as-markup.js: >- (Markup._get): >- >-2011-07-07 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Use jsTestIsAsync and finishJSTest() in httponly-cookie.pl >- https://bugs.webkit.org/show_bug.cgi?id=64087 >- >- Reviewed by Kent Tamura. >- >- * http/tests/websocket/tests/hixie76/httponly-cookie.pl: >- >-2011-07-07 James Robinson <jamesr@chromium.org> >- >- [chromium] Add text baseline for spanOverlapsCanvas >- >- * platform/chromium-gpu-win/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-07 Gavin Peters <gavinp@chromium.org> >- >- Reviewed by Alexey Proskuryakov. >- >- fast/dom/HTMLLinkElement/link-and-subresource-test.html is flaky on chromium debug bots >- https://bugs.webkit.org/show_bug.cgi?id=60097 >- >- The culprit was that CachedResource:stopLoading() was using *this >- after a call to checkNotify(), which isn't kosher. This patch >- uses a CachedResourceHandle to keep the CachedResource alive. >- >- The test is a very close copy of the eponymous >- link-and-subresource-test.html, only substituting invalid >- resources for the valid ones in that test. The reproduction is >- timing related, and happens much more consistantly with an invalid >- resource for whatever reason. >- >- * fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent-expected.txt: Added. >- * fast/dom/HTMLLinkElement/link-and-subresource-test-nonexistent.html: Added. >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-07-07 Jeff Timanus <twiz@chromium.org> >- >- Reviewed by Stephen White. >- >- Mark layout tests as failing in Chromium after skia roll r1799:r1814 >- https://bugs.webkit.org/show_bug.cgi?id=64121 >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-07 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Rob Buis. >- >- SVGAnimatedPath needs fallback for 'by' animation >- https://bugs.webkit.org/show_bug.cgi?id=63865 >- >- Test fallback to 'to' animation for 'by' animated SVGPath. >- >- * svg/animations/script-tests/svgpath-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgpath-animation-1-expected.txt: Added. >- * svg/animations/svgpath-animation-1.html: Added. >- >-2011-07-07 Gustavo Noronha Silva <gns@gnome.org> >- >- Unreviewed. >- >- Re-skip the inspector tests, they are still timing out on the >- release bot for some reason. >- >- * platform/gtk/Skipped: >- >-2011-07-07 Adam Roben <aroben@apple.com> >- >- Skip another test that uses beginDragWithFiles on Windows >- >- * platform/win/Skipped: Added fast/forms/file-input-change-event.html. >- >-2011-07-07 Dan Bernstein <mitz@apple.com> >- >- <rdar://problem/9737435> Re-enable -webkit-column-break-inside: avoid >- https://bugs.webkit.org/show_bug.cgi?id=64102 >- >- Reviewed by Simon Fraser. >- >- * fast/multicol/break-properties-expected.txt: >- * fast/multicol/break-properties.html: >- >-2011-07-07 Andras Becsi <abecsi@webkit.org> >- >- [Qt]REGRESSION(r90471): It made 4 fast/notifications tests fail on Qt >- https://bugs.webkit.org/show_bug.cgi?id=63255 >- >- Unreviewed gardening. >- >- * platform/qt/Skipped: Skip tests. >- >-2011-07-07 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by David Hyatt. >- >- Partial layout when a flex-box has visibility: collapse >- https://bugs.webkit.org/show_bug.cgi?id=63776 >- >- Those tests checks some variation of the same underlying issue. >- >- * fast/flexbox/crash-button-input-autofocus-expected.txt: Added. >- * fast/flexbox/crash-button-input-autofocus.html: Added. >- * fast/flexbox/crash-button-keygen-expected.txt: Added. >- * fast/flexbox/crash-button-keygen.html: Added. >- * fast/flexbox/crash-button-relayout-expected.txt: Added. >- * fast/flexbox/crash-button-relayout.html: Added. >- >-2011-07-07 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: URL links in styles open new tab instead of showing resources panel. >- https://bugs.webkit.org/show_bug.cgi?id=64090 >- >- Reviewed by Pavel Feldman. >- >- * inspector/styles/styles-url-linkify-expected.txt: >- * inspector/styles/styles-url-linkify.html: >- >-2011-07-07 Andras Becsi <abecsi@webkit.org> >- >- REGRESSION(90557) http/tests/inspector/network/network-embed.html fails >- https://bugs.webkit.org/show_bug.cgi?id=64103 >- >- Unreviewed gardening. >- >- * platform/qt/Skipped: Skip test. >- >-2011-07-07 Xan Lopez <xlopez@igalia.com> >- >- Unreviewed. >- >- Enable inspector tests again (they should work now), and skip test >- that is timing out in all GTK+ bots. >- >- * platform/gtk/Skipped: >- >-2011-07-07 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Move resetting NetworkResourcesData out of tests unrelated to replacement testing. >- https://bugs.webkit.org/show_bug.cgi?id=64078 >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/network-test.js: >- (initialize_NetworkTest.InspectorTest.resetInspectorResourcesData.nextStep): >- (initialize_NetworkTest.InspectorTest.resetInspectorResourcesData): >- (resetInspectorResourcesData): >- * http/tests/inspector/network/network-clear-cache-expected.txt: >- * http/tests/inspector/network/network-clear-cache.html-disabled: >- * http/tests/inspector/network/network-clear-cookies-expected.txt: >- * http/tests/inspector/network/network-clear-cookies.html-disabled: >- * http/tests/inspector/network/network-embed-expected.txt: >- * http/tests/inspector/network/network-embed.html: >- * http/tests/inspector/network/network-xhr-async-expected.txt: >- * http/tests/inspector/network/network-xhr-async.html: >- * http/tests/inspector/network/network-xhr-sync-expected.txt: >- * http/tests/inspector/network/network-xhr-sync.html: >- >-2011-07-07 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Resources panel shows only one resource when multiple resources have the same url. >- https://bugs.webkit.org/show_bug.cgi?id=63936 >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/resource-tree/resource-tree-non-unique-url-expected.txt: Added. >- * http/tests/inspector/resource-tree/resource-tree-non-unique-url.html: Added. >- * http/tests/inspector/resource-tree/resource-tree-test.js: >- (initialize_ResourceTreeTest.InspectorTest.dumpResourcesTree): >- * http/tests/inspector/resource-tree/resources/resource-tree-non-unique-url-iframe.html: Added. >- * http/tests/inspector/resource-tree/resources/styles-non-unique-url.css: Added. >- (body): >- >-2011-07-07 Philippe Normand <pnormand@igalia.com> >- >- Reviewed by Eric Carlson. >- >- GTK: media/video-src-invalid-poster.html Failed >- https://bugs.webkit.org/show_bug.cgi?id=61160 >- >- Wait for loadstart event to check the poster dimensions and avoid a >- potential timeout of the test. >- >- * media/video-src-invalid-poster-expected.txt: >- * media/video-src-invalid-poster.html: >- * platform/gtk/Skipped: >- >-2011-07-07 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Add support for clearing cache and cookies from network panel. >- https://bugs.webkit.org/show_bug.cgi?id=63999 >- >- Added clear cache and cookies tests. Since no port currently supports >- this functionality, the tests are disabled. >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/network/network-clear-cache-expected.txt: Added. >- * http/tests/inspector/network/network-clear-cache.html-disabled: Added. >- * http/tests/inspector/network/network-clear-cookies-expected.txt: Added. >- * http/tests/inspector/network/network-clear-cookies.html-disabled: Added. >- * http/tests/inspector/network/resources/random-cached.php: Added. >- * http/tests/inspector/network/resources/set-cookie.php: Added. >- >-2011-07-07 Shinya Kawanaka <shinyak@google.com> >- >- Added more key bindings for input[type=range]. >- https://bugs.webkit.org/show_bug.cgi?id=52262 >- >- Added PageUp/PageDown/Home/End key bindings tests for input[type=range]. >- >- Reviewed by Kent Tamura. >- >- * fast/forms/range-keyoperation-expected.txt: Regenerated. >- * fast/forms/range-keyoperation.html: Added more key bindings tests. >- >-2011-07-06 Mihnea Ovidenie <mihnea@adobe.com> >- >- Reviewed by David Hyatt. >- >- [CSSRegions] Parse flow property >- https://bugs.webkit.org/show_bug.cgi?id=61730 >- >- * fast/regions/script-tests/TEMPLATE.html: Added. >- * fast/regions/script-tests/webkit-flow-parsing.js: Added. >- (test): >- (testComputedStyle): >- (testNotInherited): >- * fast/regions/webkit-flow-parsing-expected.txt: Added. >- * fast/regions/webkit-flow-parsing.html: Added. >- >-2011-07-06 MORITA Hajime <morrita@google.com> >- >- [ShadowContentElement] Redundant RenderText objects are created on the content boundaries. >- https://bugs.webkit.org/show_bug.cgi?id=63977 >- >- Reviewed by Dimitri Glazkov. >- >- This test have two set of fixture DOM tree: >- One is for shadow tree which has one content element, >- another is for light DOM tree, whose root is to have a shadow DOM. >- >- Then the test makes 2 complete DOM trees (DOM tree with shadow and >- flattened dom) for each combination of the fixture items. And >- compare their layout result. >- >- * fast/dom/shadow/content-element-renderers-expected.txt: Added. >- * fast/dom/shadow/content-element-renderers.html: Added. >- >-2011-07-06 Juan C. Montemayor <jmont@apple.com> >- >- ASSERT_NOT_REACHED running test 262 >- https://bugs.webkit.org/show_bug.cgi?id=63951 >- >- Added a test to check compliance with reserved words in strict mode. >- Updated test results. >- >- Reviewed by Gavin Barraclough. >- >- * fast/js/kde/parse-expected.txt: >- * fast/js/reserved-words-as-property-expected.txt: >- * fast/js/reserved-words-strict-expected.txt: Added. >- * fast/js/reserved-words-strict.html: Added. >- * fast/js/script-tests/reserved-words-strict.js: Added. >- (isReserved): >- * platform/chromium/fast/js/reserved-words-strict-expected.txt: Added. >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T13-expected.txt: >- >-2011-07-06 Johnny Ding <jnd@chromium.org> >- >- https://bugs.webkit.org/show_bug.cgi?id=63857 >- Remove some crash expectation after implementing "createPopupMenu" >- >- Reviewed by Tony Chang. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Update Chromium GPU expectations with downstream changes >- (http://crrev.com/91625/). >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Sreeram Ramachandran <sreeram@chromium.org> >- >- Fix fast/loader/page-dismissal-modal-dialogs.html. >- https://bugs.webkit.org/show_bug.cgi?id=64020 >- >- Fix by removing an unnecessary call to setPopupBlockingEnabled() (which >- doesn't seem to be implemented in WebKit2's layoutTestController). >- >- Reviewed by Adam Roben. >- >- * fast/loader/page-dismissal-modal-dialogs.html: >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Fix duplicate Chromium expectations from r90500 and add additional flakiness >- expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Add Chromium Windows 7 timeout expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Add Chromium flaky expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Ryosuke Niwa <rniwa@webkit.org> >- >- REGRESSION (r90275): 18 editing tests failing on Windows 7 Release (WebKit2 Tests) >- https://bugs.webkit.org/show_bug.cgi?id=64019 >- >- These tests just need rebaselines. While Windows WebKit port ignores editing delegate dumps, Windows WebKit2 does not. >- Since rebaselined in r90275 should only affect Mac port, we need to undo rebaselines done in r90275 for Windows port. >- >- * platform/win/editing/deleting/delete-br-002-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-002-expected.txt. >- * platform/win/editing/deleting/delete-br-004-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-004-expected.txt. >- * platform/win/editing/deleting/delete-br-005-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-005-expected.txt. >- * platform/win/editing/deleting/delete-br-006-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-006-expected.txt. >- * platform/win/editing/deleting/delete-br-009-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-009-expected.txt. >- * platform/win/editing/deleting/delete-br-010-expected.txt: Copied from LayoutTests/platform/mac/editing/deleting/delete-br-010-expected.txt. >- * platform/win/editing/inserting/insert-3800346-fix-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-3800346-fix-expected.txt. >- * platform/win/editing/inserting/insert-at-end-01-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-01-expected.txt. >- * platform/win/editing/inserting/insert-at-end-02-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-at-end-02-expected.txt. >- * platform/win/editing/inserting/insert-div-010-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-div-010-expected.txt. >- * platform/win/editing/inserting/insert-div-013-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-div-013-expected.txt. >- * platform/win/editing/inserting/insert-div-015-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-div-015-expected.txt. >- * platform/win/editing/inserting/insert-div-019-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-div-019-expected.txt. >- * platform/win/editing/inserting/insert-paragraph-03-expected.txt: Copied from LayoutTests/platform/mac/editing/inserting/insert-paragraph-03-expected.txt. >- * platform/win/editing/selection/4932260-1-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/4932260-1-expected.txt. >- * platform/win/editing/selection/move-by-word-001-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/move-by-word-001-expected.txt. >- * platform/win/editing/selection/triple-click-in-pre-expected.txt: Copied from LayoutTests/platform/mac/editing/selection/triple-click-in-pre-expected.txt. >- * platform/win/editing/style: Added. >- * platform/win/editing/style/create-block-for-style-008-expected.txt: Copied from LayoutTests/platform/mac/editing/style/create-block-for-style-008-expected.txt. >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Remove Chromium Mac failing expectation for fast/text/font-size-zero.html >- (fixed by r89933) >- >- Add Chromium Windows and Linux baselines for >- fast/forms/textfield-overflow-by-value-update.html (needed due to >- different form control metrics). >- >- Remove a bunch of commented out test expectations. >- >- * platform/chromium-mac/svg/hittest/svg-rect-hit-expected.txt: Removed. >- * platform/chromium-win/fast/forms/textfield-overflow-by-value-update-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Nate Chapin <japhet@chromium.org> >- >- Test updates for https://bugs.webkit.org/show_bug.cgi?id=62066. >- >- Reviewed by Adam Barth. >- >- * http/tests/loading/cross-origin-XHR-willLoadRequest-expected.txt: >- * http/tests/misc/favicon-loads-with-icon-loading-override-expected.txt: >- * http/tests/misc/link-rel-icon-beforeload-expected.txt: >- >-2011-07-06 Mihai Parparita <mihaip@chromium.org> >- >- Rebaseline some imagemap focus ring tests for Chromium Mac (mainly for >- Leopard, due to text anti-aliasing differences). >- >- * platform/chromium-mac/fast/images/imagemap-case-expected.png: Removed. >- * platform/chromium/test_expectations.txt: >- * platform/mac-leopard/fast/images/imagemap-case-expected.png: Added. >- * platform/mac-leopard/fast/images/imagemap-focus-ring-expected.png: Added. >- * platform/mac-leopard/fast/images/imagemap-focus-ring-outline-color-expected.png: Added. >- * platform/mac-leopard/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Added. >- * platform/mac-leopard/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Added. >- >-2011-07-06 Andras Becsi <abecsi@webkit.org> >- >- [Qt] Seems that I still don't get the syntax right >- >- Unreviewed. >- >- * platform/qt/test_expectations.txt: Use BUGWK instead of BUG. >- >-2011-07-06 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed. Fixed test_expectations syntax. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed. Marked media/video-delay-load-event.html as flaky. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Andras Becsi <abecsi@webkit.org> >- >- [Qt] Fix the syntax of test_expectations.txt >- >- Unreviewed gardening. >- >- * platform/qt/test_expectations.txt: Add a bug for the flaky tests. >- >-2011-07-06 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed, mark fast/events/click-focus-anchor.html as flaky. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-06 Andras Becsi <abecsi@webkit.org> >- >- [Qt] Try to make the bot green by marking tests flaky. >- >- Rubber-stamped by Andreas Kling. >- >- * platform/qt/test_expectations.txt: >- >-2011-07-06 Andras Becsi <abecsi@webkit.org> >- >- [Qt] DumpRenderTree needs a beginDragWithFiles implementation >- https://bugs.webkit.org/show_bug.cgi?id=50902 >- >- Unreviewed gardening. >- >- * platform/qt/Skipped: Skip failing test added in r90438. >- >-2011-07-06 Xan Lopez <xlopez@igalia.com> >- >- Unreviewed. >- >- Remove non-existing test from Skipped. >- >- * platform/gtk/Skipped: >- >-2011-07-06 Xan Lopez <xlopez@igalia.com> >- >- Unreviewed. >- >- Missed these inspector tests before. >- >- * platform/gtk/Skipped: >- >-2011-07-06 Xan Lopez <xlopez@igalia.com> >- >- Unreviewed. >- >- Skip inspector tests while we figure why they fail in the >- NWRT/debug bots. >- >- * platform/gtk/Skipped: >- >-2011-07-05 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Move current WebSocket tests to a new directory >- https://bugs.webkit.org/show_bug.cgi?id=63931 >- >- Reviewed by Kent Tamura. >- >- In order to put tests for new WebSocket protocol, existing tests for the old protocol >- need to be moved to a subdirectory (namely "hixie76"). >- >- Minimum changes have been made to tests and test results, such as: >- - Update links to resource files (e.g. "../../../js-test-pre.js" to "../../../../js-test-pre.js"), and >- - Update WebSocket URLs in the tests (i.e. adding "hixie76/" to ws:// and wss:// URLs). >- >- Skipped and test_expectations.txt are also updated accordingly. >- >- * http/tests/websocket/tests/handler_map.txt: >- This is the only file left in the current directory. This file defines the handler location >- to which accesses to the root directory (e.g. "ws://example.com/") are redirected, and >- cannot be moved. >- * http/tests/websocket/tests/hixie76/alert-in-event-handler-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/alert-in-event-handler-expected.txt. >- * http/tests/websocket/tests/hixie76/alert-in-event-handler.html: Renamed from LayoutTests/http/tests/websocket/tests/alert-in-event-handler.html. >- * http/tests/websocket/tests/hixie76/bad-handshake-crash-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/bad-handshake-crash-expected.txt. >- * http/tests/websocket/tests/hixie76/bad-handshake-crash.html: Renamed from LayoutTests/http/tests/websocket/tests/bad-handshake-crash.html. >- * http/tests/websocket/tests/hixie76/bad-handshake-crash_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/bad-handshake-crash_wsh.py. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars.html: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-control-chars.html. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-empty-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-empty-expected.txt. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-empty.html: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-empty.html. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-non-ascii-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-non-ascii-expected.txt. >- * http/tests/websocket/tests/hixie76/bad-sub-protocol-non-ascii.html: Renamed from LayoutTests/http/tests/websocket/tests/bad-sub-protocol-non-ascii.html. >- * http/tests/websocket/tests/hixie76/bufferedAmount-after-close-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/bufferedAmount-after-close-expected.txt. >- * http/tests/websocket/tests/hixie76/bufferedAmount-after-close.html: Renamed from LayoutTests/http/tests/websocket/tests/bufferedAmount-after-close.html. >- * http/tests/websocket/tests/hixie76/client-close-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/client-close-expected.txt. >- * http/tests/websocket/tests/hixie76/client-close.html: Renamed from LayoutTests/http/tests/websocket/tests/client-close.html. >- * http/tests/websocket/tests/hixie76/client-close_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/client-close_wsh.py. >- * http/tests/websocket/tests/hixie76/close-before-open-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-before-open-expected.txt. >- * http/tests/websocket/tests/hixie76/close-before-open.html: Renamed from LayoutTests/http/tests/websocket/tests/close-before-open.html. >- * http/tests/websocket/tests/hixie76/close-event-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-event-expected.txt. >- * http/tests/websocket/tests/hixie76/close-event.html: Renamed from LayoutTests/http/tests/websocket/tests/close-event.html. >- * http/tests/websocket/tests/hixie76/close-on-navigate-new-location-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-on-navigate-new-location-expected.txt. >- * http/tests/websocket/tests/hixie76/close-on-navigate-new-location.html: Renamed from LayoutTests/http/tests/websocket/tests/close-on-navigate-new-location.html. >- * http/tests/websocket/tests/hixie76/close-on-unload-and-force-gc-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload-and-force-gc-expected.txt. >- * http/tests/websocket/tests/hixie76/close-on-unload-and-force-gc.html: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload-and-force-gc.html. >- * http/tests/websocket/tests/hixie76/close-on-unload-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload-expected.txt. >- * http/tests/websocket/tests/hixie76/close-on-unload-reference-in-parent-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload-reference-in-parent-expected.txt. >- * http/tests/websocket/tests/hixie76/close-on-unload-reference-in-parent.html: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload-reference-in-parent.html. >- * http/tests/websocket/tests/hixie76/close-on-unload.html: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload.html. >- * http/tests/websocket/tests/hixie76/close-on-unload_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/close-on-unload_wsh.py. >- * http/tests/websocket/tests/hixie76/close-unref-websocket-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/close-unref-websocket-expected.txt. >- * http/tests/websocket/tests/hixie76/close-unref-websocket.html: Renamed from LayoutTests/http/tests/websocket/tests/close-unref-websocket.html. >- * http/tests/websocket/tests/hixie76/cross-origin-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/cross-origin-expected.txt. >- * http/tests/websocket/tests/hixie76/cross-origin.html: Renamed from LayoutTests/http/tests/websocket/tests/cross-origin.html. >- * http/tests/websocket/tests/hixie76/echo-challenge_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/echo-challenge_wsh.py. >- * http/tests/websocket/tests/hixie76/echo-cookie_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/echo-cookie_wsh.py. >- * http/tests/websocket/tests/hixie76/echo-location_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/echo-location_wsh.py. >- * http/tests/websocket/tests/hixie76/echo_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/echo_wsh.py. >- * http/tests/websocket/tests/hixie76/error-detect-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/error-detect-expected.txt. >- * http/tests/websocket/tests/hixie76/error-detect.html: Renamed from LayoutTests/http/tests/websocket/tests/error-detect.html. >- * http/tests/websocket/tests/hixie76/fixed-origin_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/fixed-origin_wsh.py. >- * http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-longer-than-buffer-expected.txt. >- * http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer.html: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-longer-than-buffer.html. >- * http/tests/websocket/tests/hixie76/frame-length-longer-than-buffer_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-longer-than-buffer_wsh.py. >- * http/tests/websocket/tests/hixie76/frame-length-overflow-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-overflow-expected.txt. >- * http/tests/websocket/tests/hixie76/frame-length-overflow.html: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-overflow.html. >- * http/tests/websocket/tests/hixie76/frame-length-overflow_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-overflow_wsh.py. >- * http/tests/websocket/tests/hixie76/frame-length-skip-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-skip-expected.txt. >- * http/tests/websocket/tests/hixie76/frame-length-skip.html: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-skip.html. >- * http/tests/websocket/tests/hixie76/frame-length-skip_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/frame-length-skip_wsh.py. >- * http/tests/websocket/tests/hixie76/frame-lengths-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/frame-lengths-expected.txt. >- * http/tests/websocket/tests/hixie76/frame-lengths.html: Renamed from LayoutTests/http/tests/websocket/tests/frame-lengths.html. >- * http/tests/websocket/tests/hixie76/handshake-challenge-randomness-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-challenge-randomness-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-challenge-randomness.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-challenge-randomness.html. >- * http/tests/websocket/tests/hixie76/handshake-error-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-error-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-error.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-error.html. >- * http/tests/websocket/tests/hixie76/handshake-error_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-error_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-cross-origin-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-cross-origin-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-cross-origin.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-cross-origin.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-maxlength-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-maxlength.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-maxlength_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-maxlength_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-connection-header-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-connection-header.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-connection-header_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-connection-header_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-cr-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-cr.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-cr_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-cr_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-upgrade-header-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-upgrade-header.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-no-upgrade-header_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-no-upgrade-header_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-prepended-null-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-prepended-null.html. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-prepended-null_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-prepended-null_wsh.py. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-sub-protocol-mismatch-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-sub-protocol-mismatch-expected.txt. >- * http/tests/websocket/tests/hixie76/handshake-fail-by-sub-protocol-mismatch.html: Renamed from LayoutTests/http/tests/websocket/tests/handshake-fail-by-sub-protocol-mismatch.html. >- * http/tests/websocket/tests/hixie76/hanging-handshake_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/hanging-handshake_wsh.py. >- * http/tests/websocket/tests/hixie76/httponly-cookie-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/httponly-cookie-expected.txt. >- * http/tests/websocket/tests/hixie76/httponly-cookie.pl: Renamed from LayoutTests/http/tests/websocket/tests/httponly-cookie.pl. >- * http/tests/websocket/tests/hixie76/long-invalid-header-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/long-invalid-header-expected.txt. >- * http/tests/websocket/tests/hixie76/long-invalid-header.html: Renamed from LayoutTests/http/tests/websocket/tests/long-invalid-header.html. >- * http/tests/websocket/tests/hixie76/long-invalid-header_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/long-invalid-header_wsh.py. >- * http/tests/websocket/tests/hixie76/multiple-connections-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/multiple-connections-expected.txt. >- * http/tests/websocket/tests/hixie76/multiple-connections.html: Renamed from LayoutTests/http/tests/websocket/tests/multiple-connections.html. >- * http/tests/websocket/tests/hixie76/no-query_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/no-query_wsh.py. >- * http/tests/websocket/tests/hixie76/null-character-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/null-character-expected.txt. >- * http/tests/websocket/tests/hixie76/null-character.html: Renamed from LayoutTests/http/tests/websocket/tests/null-character.html. >- * http/tests/websocket/tests/hixie76/origin-test_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/origin-test_wsh.py. >- * http/tests/websocket/tests/hixie76/protocol-test_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/protocol-test_wsh.py. >- * http/tests/websocket/tests/hixie76/reload-crash-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/reload-crash-expected.txt. >- * http/tests/websocket/tests/hixie76/reload-crash.html: Renamed from LayoutTests/http/tests/websocket/tests/reload-crash.html. >- * http/tests/websocket/tests/hixie76/resources/close-on-unload-iframe-reference-in-parent.html: Renamed from LayoutTests/http/tests/websocket/tests/resources/close-on-unload-iframe-reference-in-parent.html. >- * http/tests/websocket/tests/hixie76/resources/close-on-unload-iframe.html: Renamed from LayoutTests/http/tests/websocket/tests/resources/close-on-unload-iframe.html. >- * http/tests/websocket/tests/hixie76/resources/reload-crash-iframe.html: Added. >- * http/tests/websocket/tests/hixie76/send-after-close-on-unload-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/send-after-close-on-unload-expected.txt. >- * http/tests/websocket/tests/hixie76/send-after-close-on-unload.html: Renamed from LayoutTests/http/tests/websocket/tests/send-after-close-on-unload.html. >- * http/tests/websocket/tests/hixie76/send-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/send-expected.txt. >- * http/tests/websocket/tests/hixie76/send-throw-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/send-throw-expected.txt. >- * http/tests/websocket/tests/hixie76/send-throw.html: Renamed from LayoutTests/http/tests/websocket/tests/send-throw.html. >- * http/tests/websocket/tests/hixie76/send.html: Renamed from LayoutTests/http/tests/websocket/tests/send.html. >- * http/tests/websocket/tests/hixie76/send2_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/send2_wsh.py. >- * http/tests/websocket/tests/hixie76/send_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/send_wsh.py. >- * http/tests/websocket/tests/hixie76/server-close-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/server-close-expected.txt. >- * http/tests/websocket/tests/hixie76/server-close.html: Renamed from LayoutTests/http/tests/websocket/tests/server-close.html. >- * http/tests/websocket/tests/hixie76/server-close_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/server-close_wsh.py. >- * http/tests/websocket/tests/hixie76/simple-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/simple-expected.txt. >- * http/tests/websocket/tests/hixie76/simple-stress-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/simple-stress-expected.txt. >- * http/tests/websocket/tests/hixie76/simple-stress.html: Renamed from LayoutTests/http/tests/websocket/tests/simple-stress.html. >- * http/tests/websocket/tests/hixie76/simple.html: Renamed from LayoutTests/http/tests/websocket/tests/simple.html. >- * http/tests/websocket/tests/hixie76/simple_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/simple_wsh.py. >- * http/tests/websocket/tests/hixie76/sub-protocol-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/sub-protocol-expected.txt. >- * http/tests/websocket/tests/hixie76/sub-protocol-with-space-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/sub-protocol-with-space-expected.txt. >- * http/tests/websocket/tests/hixie76/sub-protocol-with-space.html: Renamed from LayoutTests/http/tests/websocket/tests/sub-protocol-with-space.html. >- * http/tests/websocket/tests/hixie76/sub-protocol.html: Renamed from LayoutTests/http/tests/websocket/tests/sub-protocol.html. >- * http/tests/websocket/tests/hixie76/unicode-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/unicode-expected.txt. >- * http/tests/websocket/tests/hixie76/unicode.html: Renamed from LayoutTests/http/tests/websocket/tests/unicode.html. >- * http/tests/websocket/tests/hixie76/unicode_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/unicode_wsh.py. >- * http/tests/websocket/tests/hixie76/unknown-frame-type_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/unknown-frame-type_wsh.py. >- * http/tests/websocket/tests/hixie76/url-no-trailing-slash-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-no-trailing-slash-expected.txt. >- * http/tests/websocket/tests/hixie76/url-no-trailing-slash.html: Renamed from LayoutTests/http/tests/websocket/tests/url-no-trailing-slash.html. >- * http/tests/websocket/tests/hixie76/url-parsing-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-parsing-expected.txt. >- * http/tests/websocket/tests/hixie76/url-parsing.html: Renamed from LayoutTests/http/tests/websocket/tests/url-parsing.html. >- * http/tests/websocket/tests/hixie76/url-with-credential-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-with-credential-expected.txt. >- * http/tests/websocket/tests/hixie76/url-with-credential.html: Renamed from LayoutTests/http/tests/websocket/tests/url-with-credential.html. >- * http/tests/websocket/tests/hixie76/url-with-empty-query-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-with-empty-query-expected.txt. >- * http/tests/websocket/tests/hixie76/url-with-empty-query.html: Renamed from LayoutTests/http/tests/websocket/tests/url-with-empty-query.html. >- * http/tests/websocket/tests/hixie76/url-with-query-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-with-query-expected.txt. >- * http/tests/websocket/tests/hixie76/url-with-query-for-no-query-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/url-with-query-for-no-query-expected.txt. >- * http/tests/websocket/tests/hixie76/url-with-query-for-no-query.html: Renamed from LayoutTests/http/tests/websocket/tests/url-with-query-for-no-query.html. >- * http/tests/websocket/tests/hixie76/url-with-query.html: Renamed from LayoutTests/http/tests/websocket/tests/url-with-query.html. >- * http/tests/websocket/tests/hixie76/websocket-event-target-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/websocket-event-target-expected.txt. >- * http/tests/websocket/tests/hixie76/websocket-event-target.html: Renamed from LayoutTests/http/tests/websocket/tests/websocket-event-target.html. >- * http/tests/websocket/tests/hixie76/websocket-pending-activity-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/websocket-pending-activity-expected.txt. >- * http/tests/websocket/tests/hixie76/websocket-pending-activity.html: Renamed from LayoutTests/http/tests/websocket/tests/websocket-pending-activity.html. >- * http/tests/websocket/tests/hixie76/websocket-protocol-ignored-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/websocket-protocol-ignored-expected.txt. >- * http/tests/websocket/tests/hixie76/websocket-protocol-ignored.html: Renamed from LayoutTests/http/tests/websocket/tests/websocket-protocol-ignored.html. >- * http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-onmessage-crash-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/close-in-onmessage-crash.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-onmessage-crash.html. >- * http/tests/websocket/tests/hixie76/workers/close-in-shared-worker-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-shared-worker-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/close-in-shared-worker.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-shared-worker.html. >- * http/tests/websocket/tests/hixie76/workers/close-in-worker-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-worker-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/close-in-worker.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/close-in-worker.html. >- * http/tests/websocket/tests/hixie76/workers/resources/close-in-onmessage-crash.js: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/close-in-onmessage-crash.js. >- (runTests.try.ws.onopen): >- (runTests.try.ws.onmessage): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hixie76/workers/resources/close-in-worker.js: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/close-in-worker.js. >- (handleConnect.self.postMessage): >- (handleConnect): >- (runTests.try.ws.onopen): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hixie76/workers/resources/echo-challenge_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/echo-challenge_wsh.py. >- * http/tests/websocket/tests/hixie76/workers/resources/echo_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/echo_wsh.py. >- * http/tests/websocket/tests/hixie76/workers/resources/simple_wsh.py: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/simple_wsh.py. >- * http/tests/websocket/tests/hixie76/workers/resources/worker-handshake-challenge-randomness.js: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/worker-handshake-challenge-randomness.js. >- (endTest): >- (runTests.try.ws1.onmessage): >- (runTests.try.ws1.onclose.ws2.onmessage): >- (runTests.try.ws1.onclose.ws2.onclose): >- (runTests.try.ws1.onclose): >- (runTests): >- * http/tests/websocket/tests/hixie76/workers/resources/worker-simple.js: Renamed from LayoutTests/http/tests/websocket/tests/workers/resources/worker-simple.js. >- (handleConnect.self.postMessage): >- (handleConnect): >- (runTests.try.ws.onopen): >- (runTests.try.ws.onmessage): >- (runTests.try.ws.onclose): >- (runTests): >- * http/tests/websocket/tests/hixie76/workers/shared-worker-simple-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/shared-worker-simple-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/shared-worker-simple.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/shared-worker-simple.html. >- * http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/worker-handshake-challenge-randomness-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/worker-handshake-challenge-randomness.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/worker-handshake-challenge-randomness.html. >- * http/tests/websocket/tests/hixie76/workers/worker-simple-expected.txt: Renamed from LayoutTests/http/tests/websocket/tests/workers/worker-simple-expected.txt. >- * http/tests/websocket/tests/hixie76/workers/worker-simple.html: Renamed from LayoutTests/http/tests/websocket/tests/workers/worker-simple.html. >- * http/tests/websocket/tests/resources/reload-crash-iframe.html: Removed. >- * platform/chromium-linux/http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars-expected.txt: Renamed from LayoutTests/platform/chromium-linux/http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt. >- * platform/chromium-linux/http/tests/websocket/tests/hixie76/url-parsing-expected.txt: Renamed from LayoutTests/platform/chromium-win/http/tests/websocket/tests/url-parsing-expected.txt. >- * platform/chromium-mac/http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars-expected.txt: Renamed from LayoutTests/platform/chromium-mac/http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt. >- * platform/chromium-mac/http/tests/websocket/tests/hixie76/url-parsing-expected.txt: Renamed from LayoutTests/platform/chromium-linux/http/tests/websocket/tests/url-parsing-expected.txt. >- * platform/chromium-win/http/tests/websocket/tests/hixie76/bad-sub-protocol-control-chars-expected.txt: Renamed from LayoutTests/platform/chromium-win/http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt. >- * platform/chromium-win/http/tests/websocket/tests/hixie76/url-parsing-expected.txt: Renamed from LayoutTests/platform/chromium-mac/http/tests/websocket/tests/url-parsing-expected.txt. >- * platform/chromium/test_expectations.txt: >- * platform/qt-arm/Skipped: >- * platform/qt-wk2/Skipped: >- * platform/qt/http/tests/websocket/tests/hixie76/bad-sub-protocol-non-ascii-expected.txt: Renamed from LayoutTests/platform/qt/http/tests/websocket/tests/bad-sub-protocol-non-ascii-expected.txt. >- * platform/win/Skipped: >- >-2011-07-05 Kentaro Hara <haraken@google.com> >- >- Trigger a 'change' event whenever selected files are changed >- https://bugs.webkit.org/show_bug.cgi?id=63929 >- >- Reviewed by Kent Tamura. >- >- Record previously selected files and then compare them with newly selected files. >- If the previously selected files and their order are not equal to those of >- the newly selected files, we trigger the 'change' event. >- >- * fast/forms/file-input-change-event-expected.txt: Added. >- * fast/forms/file-input-change-event.html: Added. >- >-2011-06-29 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Alexey Proskuryakov. >- >- [Mac] REGRESSION (r88415): Range slider doesn't have focus appearance. >- https://bugs.webkit.org/show_bug.cgi?id=63573 >- >- * fast/forms/input-appearance-range.html: >- Give a focus on a slider to check focus appearance. >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/forms/input-appearance-range-expected.png: >- >-2011-07-05 Eric Seidel <eric@webkit.org> >- >- buildbot needs to understand whether NRWT exited early after having too many failures >- https://bugs.webkit.org/show_bug.cgi?id=63839 >- >- Reviewed by Adam Barth. >- >- Teach the new results.html how to display a warning when testing exited early. >- The warning isn't quite as nice as ORWT since I couldn't figure out how to >- find the total tests run, or total unexpected crashes. I figure >- this is enough to get us going and we can refine it further. >- >- * fast/harness/results.html: >- >-2011-07-05 Sam Weinig <sam@webkit.org> >- >- Null deref accessing CustomEvent.detail >- <rdar://problem/9724577> >- https://bugs.webkit.org/show_bug.cgi?id=63885 >- >- Reviewed by Anders Carlsson. >- >- Add test which exercises an initialized details property on >- a CustomEvent instance. >- >- * fast/events/custom-event-uninitialized-expected.txt: Added. >- * fast/events/custom-event-uninitialized.html: Added. >- >-2011-07-05 Gavin Barraclough <barraclough@apple.com> >- >- https://bugs.webkit.org/show_bug.cgi?id=63947 >- ASSERT running Object.preventExtensions(Math.sin) >- >- Reviewed by Oliver Hunt. >- >- This is due to calling scope() on a hostFunction as a part of >- calling createPrototypeProperty to reify the prototype property. >- But host functions don't have a prototype property anyway! >- >- Add test case for calling preventExtensions on a host function. >- >- * fast/js/preventExtensions-expected.txt: >- * fast/js/script-tests/preventExtensions.js: >- >-2011-07-04 Gavin Barraclough <barraclough@apple.com> >- >- https://bugs.webkit.org/show_bug.cgi?id=63880 >- Evaluation order of conversions of operands to >, >= incorrect. >- >- Reviewed by Sam Weinig. >- >- Updated layout test results. Two of these tests now pass, however for >- the third we now need to check in failing results, since the test is >- incorrect! >- >- The problem if that the test author has made the mistake of thinking >- that the evaluation order for the operands to '>' is RHS then LHS. >- This is due to a quirk in the way the spec is written. The greater >- than opeator is defined to call the abstract relational comparison >- algorithm with 'leftFirst' set to false, and as such conversion is >- performed on the second operand ('y') first (see 11.8.5). However >- the abstract relational comparison algorith is performing a less >- than comaprison, and the greater than operator calls this algorithm >- with the operands to the greater than operator reversed (see 11.8.2). >- As such, the second operand to the abstract comaparison is the LHS >- of the greater than. This bug also affects the corresponding less >- than or equals test, where we already we have failing results checked >- in, and again it is the test that is wrong (for the same reason). >- >- * fast/js/exception-sequencing-binops2-expected.txt: >- * sputnik/Conformance/11_Expressions/11.8_Relational_Operators/11.8.2_The_Greater_than_Operator/S11.8.2_A2.3_T1-expected.txt: >- * sputnik/Conformance/11_Expressions/11.8_Relational_Operators/11.8.4_The_Grater_than_or_equal_Operator/S11.8.4_A2.3_T1-expected.txt: >- >-2011-07-05 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed. Marked css2.1/20110323/replaced-intrinsic-ratio-001.htm as flaky on mac. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-05 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed. Removed custom chromium-linux baselines for >- navigator-detached-no-crash.html & register-protocol-handler.html >- >- * platform/chromium-linux/fast/dom/navigator-detached-no-crash-expected.txt: Removed. >- * platform/chromium-linux/fast/dom/register-protocol-handler-expected.txt: Removed. >- >-2011-07-04 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Show content for plugin requests in network panel. >- https://bugs.webkit.org/show_bug.cgi?id=30080 >- >- Added tests for plugin content saving and replacing in NetworkResourcesData. >- Adjusted older tests to use new window.internals method setInspectorResourcesDataSizeLimits >- to ensure NetworkResourcesData is in the correct state before test. >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/network/network-content-replacement-embed-expected.txt: Added. >- * http/tests/inspector/network/network-content-replacement-embed.html: Added. >- * http/tests/inspector/network/network-content-replacement-xhr-expected.txt: Added. >- * http/tests/inspector/network/network-content-replacement-xhr.html: Added. >- * http/tests/inspector/network/network-embed-expected.txt: Added. >- * http/tests/inspector/network/network-embed.html: Added. >- * http/tests/inspector/network/network-xhr-async-expected.txt: >- * http/tests/inspector/network/network-xhr-async.html: >- * http/tests/inspector/network/network-xhr-sync-expected.txt: >- * http/tests/inspector/network/network-xhr-sync.html: >- * http/tests/inspector/network/resources/cp1251.xml: Added. >- * http/tests/inspector/network/resources/plugin-data.php: Added. >- * http/tests/inspector/network/resources/resource.php: >- * http/tests/inspector/network/resources/utf8.xml: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Kinuko Yasuda <kinuko@chromium.org> >- >- [Chromium] LayoutTests/fast/filesystem/workers/simple-persistent-sync.html is failing on chromium worker tests >- https://bugs.webkit.org/show_bug.cgi?id=63906 >- >- The expected text file needs to be updated to reflect the recent API change for adding the prefix vendor (i.e. requestFileSystem -> webkitRequestFileSystem). >- >- Unreviewed; chromium test expectations change. >- >- * fast/filesystem/workers/simple-persistent-sync-expected.txt: >- >-2011-07-05 Shinya Kawanaka <shinyak@google.com> >- >- Reviewed by Kent Tamura. >- >- The default step is used when the step attribute of input[type='number'] is "any". >- https://bugs.webkit.org/show_bug.cgi?id=57723 >- >- Changed Layout tests to use the default step when the step attribute of >- input[type='number'] is "any". >- >- * fast/forms/input-stepup-stepdown-from-renderer-expected.txt: Regenerated. >- * fast/forms/script-tests/input-stepup-stepdown-from-renderer.js: >- >-2011-07-04 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=16652 >- Firefox and JavaScriptCore differ in Number.toString(integer) >- >- Our arbitrary radix (2..36) toString conversion is inaccurate. >- This is partly because it uses doubles to perform math that requires >- higher accuracy, and partly becasue it does not attempt to correctly >- detect where to terminate, instead relying on a simple 'epsilon'. >- >- * fast/js/number-toString-expected.txt: >- - Update expected results from FAIL to PASS. >- >-2011-07-04 Mihai Parparita <mihaip@chromium.org> >- >- As of r90372 there are WebKit2 Mac-specific tests; don't expect those to >- pass in Chromium, just like other platform-specific tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Kent Tamura <tkent@chromium.org> >- >- REGRESSION (r87067): Text overflows from short height text field. >- https://bugs.webkit.org/show_bug.cgi?id=61768 >- >- Reviewed by Dimitri Glazkov. >- >- * fast/forms/textfield-overflow-by-value-update.html: Added. >- * platform/chromium/test_expectations.txt: Add textfield-overflow-by-value-update.html. >- * platform/mac/fast/forms/textfield-overflow-by-value-update-expected.png: Added. >- * platform/mac/fast/forms/textfield-overflow-by-value-update-expected.txt: Added. >- >-2011-07-04 MORITA Hajime <morrita@google.com> >- >- Accessing ShadowRoot.nodeList causes an assertion failure. >- http://webkit.org/b/63798 >- >- Reviewed by Dimitri Glazkov. >- >- * fast/dom/shadow/shadow-root-node-list-expected.txt: Added. >- * fast/dom/shadow/shadow-root-node-list.html: Added. >- >-2011-07-04 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations change. >- >- Mark four tests as passing on the GPU step. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r90373. >- http://trac.webkit.org/changeset/90373 >- https://bugs.webkit.org/show_bug.cgi?id=63917 >- >- Breaks Qt Linux Release minimal (Requested by vsevik on >- #webkit). >- >- * http/tests/inspector/network/network-content-replacement-embed-expected.txt: Removed. >- * http/tests/inspector/network/network-content-replacement-embed.html: Removed. >- * http/tests/inspector/network/network-content-replacement-xhr-expected.txt: Removed. >- * http/tests/inspector/network/network-content-replacement-xhr.html: Removed. >- * http/tests/inspector/network/network-embed-expected.txt: Removed. >- * http/tests/inspector/network/network-embed.html: Removed. >- * http/tests/inspector/network/network-xhr-async-expected.txt: >- * http/tests/inspector/network/network-xhr-async.html: >- * http/tests/inspector/network/network-xhr-sync-expected.txt: >- * http/tests/inspector/network/network-xhr-sync.html: >- * http/tests/inspector/network/resources/cp1251.xml: Removed. >- * http/tests/inspector/network/resources/plugin-data.php: Removed. >- * http/tests/inspector/network/resources/resource.php: >- * http/tests/inspector/network/resources/utf8.xml: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Show content for plugin requests in network panel. >- https://bugs.webkit.org/show_bug.cgi?id=30080 >- >- Reviewed by Pavel Feldman. >- >- * http/tests/inspector/network/network-content-replacement-embed-expected.txt: Added. >- * http/tests/inspector/network/network-content-replacement-embed.html: Added. >- * http/tests/inspector/network/network-content-replacement-xhr-expected.txt: Added. >- * http/tests/inspector/network/network-content-replacement-xhr.html: Added. >- * http/tests/inspector/network/network-embed-expected.txt: Added. >- * http/tests/inspector/network/network-embed.html: Added. >- * http/tests/inspector/network/network-xhr-async-expected.txt: >- * http/tests/inspector/network/network-xhr-async.html: >- * http/tests/inspector/network/network-xhr-sync-expected.txt: >- * http/tests/inspector/network/network-xhr-sync.html: >- * http/tests/inspector/network/resources/cp1251.xml: Added. >- * http/tests/inspector/network/resources/plugin-data.php: Added. >- * http/tests/inspector/network/resources/resource.php: >- * http/tests/inspector/network/resources/utf8.xml: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Anders Carlsson <andersca@apple.com> >- >- NP_RemoveProperty is not called back by Safari when delete npObject.prop is encountered in JavaScript >- https://bugs.webkit.org/show_bug.cgi?id=63915 >- <rdar://problem/7124300> >- >- Reviewed by Sam Weinig. >- >- Add a test. I made this Mac-WebKit2 specific for now since no other plug-in implementations support this, >- and there doesn't seem to be a way to make a WebKit2 specific test. >- >- * platform/mac-wk2/plugins/npruntime/remove-property-from-javascript-expected.txt: Added. >- * platform/mac-wk2/plugins/npruntime/remove-property-from-javascript.html: Added. >- >-2011-07-04 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations change. >- >- Mark two tests as failing on the GPU step. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: network-preflight-options.html test is flaky. >- https://bugs.webkit.org/show_bug.cgi?id=63904 >- >- Unreviewed test fix. >- >- * http/tests/inspector/network-preflight-options-expected.txt: >- * http/tests/inspector/network-preflight-options.html: >- * platform/qt/Skipped: >- >-2011-07-04 Andras Becsi <abecsi@webkit.org> >- >- [Qt] http/tests/inspector/network-preflight-options.html fails frequently >- https://bugs.webkit.org/show_bug.cgi?id=63910 >- >- Unreviewed. >- >- * platform/qt/Skipped: Skip http/tests/inspector/network-preflight-options.html. >- >-2011-07-04 Vsevolod Vlasov <vsevik@chromium.org> >- >- Web Inspector: Resources loaded to Resources Panel from InspectorPageAgent do not have mime type set. >- https://bugs.webkit.org/show_bug.cgi?id=63701 >- >- Added a test that checks mime type when resources are loaded from cache by InspectorPageAgent. >- >- Reviewed by Yury Semikhatsky. >- >- * http/tests/inspector/resource-tree/resource-tree-mimetype-expected.txt: Added. >- * http/tests/inspector/resource-tree/resource-tree-mimetype.html: Added. >- * http/tests/inspector/resource-tree/resources/empty.png: Added. >- >-2011-07-04 Marcus Bulach <bulach@chromium.org> >- >- [chromium] Updates expectations for failures on svg/animations/svgtransform-animation-1.html >- https://bugs.webkit.org/show_bug.cgi?id=63902 >- >- Unreviewed expectations fix. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-04 Marcus Bulach <bulach@chromium.org> >- >- [chromium] Rebaseline following r90338 >- https://bugs.webkit.org/show_bug.cgi?id=63896 >- >- Unreviewed rebaseline. >- >- * platform/chromium-linux/plugins/mouse-click-plugin-clears-selection-expected.png: Added. >- * platform/chromium-mac/plugins/mouse-click-plugin-clears-selection-expected.png: Added. >- * platform/chromium-mac/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- * platform/chromium-win-vista/plugins/mouse-click-plugin-clears-selection-expected.png: Added. >- >-2011-07-04 Andrey Kosyakov <caseq@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: [Extensions API] audit formatter names should begin with create >- https://bugs.webkit.org/show_bug.cgi?id=63802 >- >- * inspector/extensions/extensions-audits-api-expected.txt: >- * inspector/extensions/extensions-audits.html: >- >-2011-07-04 Yuta Kitamura <yutak@chromium.org> >- >- WebSocket: Use jsTestIsAsync and finishJSTest() wherever possible in WebSocket tests >- https://bugs.webkit.org/show_bug.cgi?id=63892 >- >- Reviewed by Kent Tamura. >- >- Use jsTestIsAsync and finishJSTest() in WebSocket tests which are run asynchronously. >- Script tags loading js-test-post-function.js must be removed, and instead js-test-post.js >- must be loaded after each test. >- >- * http/tests/websocket/tests/alert-in-event-handler.html: >- * http/tests/websocket/tests/bad-handshake-crash.html: >- * http/tests/websocket/tests/bad-sub-protocol-control-chars.html: >- This test is done synchronously, thus there is no need to use jsTestIsAsync and >- finishJSTest(). As we are moving away from js-test-post-function.js, >- isSuccessfullyParsed() should not be used anymore. >- * http/tests/websocket/tests/bad-sub-protocol-empty.html: >- * http/tests/websocket/tests/bad-sub-protocol-non-ascii.html: >- * http/tests/websocket/tests/bufferedAmount-after-close.html: >- * http/tests/websocket/tests/close-before-open.html: >- * http/tests/websocket/tests/close-on-navigate-new-location.html: >- * http/tests/websocket/tests/close-on-unload-and-force-gc.html: >- * http/tests/websocket/tests/close-on-unload-reference-in-parent.html: >- * http/tests/websocket/tests/close-on-unload.html: >- * http/tests/websocket/tests/close-unref-websocket.html: >- * http/tests/websocket/tests/cross-origin.html: >- * http/tests/websocket/tests/error-detect.html: >- * http/tests/websocket/tests/frame-length-longer-than-buffer.html: >- * http/tests/websocket/tests/frame-length-overflow.html: >- Add close tags for <body> and <html> elements which were not present for some reason. >- * http/tests/websocket/tests/frame-length-skip.html: >- * http/tests/websocket/tests/handshake-challenge-randomness.html: >- * http/tests/websocket/tests/handshake-error.html: >- * http/tests/websocket/tests/handshake-fail-by-cross-origin.html: >- * http/tests/websocket/tests/handshake-fail-by-maxlength.html: >- * http/tests/websocket/tests/handshake-fail-by-no-connection-header.html: >- * http/tests/websocket/tests/handshake-fail-by-no-cr.html: >- * http/tests/websocket/tests/handshake-fail-by-no-upgrade-header.html: >- * http/tests/websocket/tests/handshake-fail-by-prepended-null.html: >- * http/tests/websocket/tests/handshake-fail-by-sub-protocol-mismatch.html: >- * http/tests/websocket/tests/long-invalid-header.html: >- * http/tests/websocket/tests/null-character.html: >- * http/tests/websocket/tests/reload-crash.html: >- * http/tests/websocket/tests/send-after-close-on-unload.html: >- * http/tests/websocket/tests/send-throw.html: >- * http/tests/websocket/tests/send.html: >- * http/tests/websocket/tests/simple.html: >- * http/tests/websocket/tests/sub-protocol-with-space.html: >- * http/tests/websocket/tests/sub-protocol.html: >- * http/tests/websocket/tests/unicode.html: >- * http/tests/websocket/tests/url-no-trailing-slash.html: >- * http/tests/websocket/tests/url-parsing.html: >- * http/tests/websocket/tests/url-with-credential.html: >- * http/tests/websocket/tests/url-with-empty-query.html: >- * http/tests/websocket/tests/url-with-query-for-no-query.html: >- * http/tests/websocket/tests/url-with-query.html: >- * http/tests/websocket/tests/websocket-event-target.html: >- * http/tests/websocket/tests/websocket-protocol-ignored.html: >- >-2011-07-03 Balazs Kelemen <kbalazs@webkit.org> >- >- [Qt][WK2] Remove passing tests from the qt-wk2 list >- https://bugs.webkit.org/show_bug.cgi?id=63877 >- >- Reviewed by Kenneth Rohde Christiansen. >- >- * platform/qt-wk2/Skipped: >- >-2011-07-03 Dominic Cooney <dominicc@chromium.org> >- >- The value property of an indeterminate progress element should be zero >- https://bugs.webkit.org/show_bug.cgi?id=63861 >- >- Reviewed by Kent Tamura. >- >- Updates test result, and adds a test for setting value < 0. >- >- * fast/dom/HTMLProgressElement/script-tests/set-progress-properties.js: >- * fast/dom/HTMLProgressElement/set-progress-properties-expected.txt: >- >-2011-07-03 Yuta Kitamura <yutak@chromium.org> >- >- Reviewed by Kent Tamura. >- >- WebSocket: pywebsocket handlers should raise exception to abort the connection >- https://bugs.webkit.org/show_bug.cgi?id=63794 >- >- pywebsocket automatically sends handshake response when web_socket_do_extra_handshake() >- finishes, and starts closing handshake (sends a close frame and waits for client's response) >- after web_socket_transfer_data() exits. To stop this behavior, a handler must raise an >- exception. >- >- Some of our handlers send broken handshake in web_socket_do_extra_handshake(). If this handler >- function exits without raising an exception, pywebsocket automatically sends another handshake >- response, which is not really necessary. Normally this extra handshake message is not a problem, >- because the client does not read any data beyond the end of the first (broken) handshake if >- the client is working correctly. However, if the client erroneously accepts the first handshake, >- it will be hard to diagnose the problem because of the extra message. The same can happen for >- web_socket_transfer_data(). >- >- Generally, pywebsocket handlers should raise an exception if they do not want to send any more >- data. However, this fact has been overlooked in past changes, and handlers in many tests exit >- normally where they should raise an exception. This change fix these errors. >- >- * http/tests/websocket/tests/bad-handshake-crash_wsh.py: >- * http/tests/websocket/tests/frame-length-overflow_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-maxlength_wsh.py: >- Do not need to cycle until disconnection. >- * http/tests/websocket/tests/handshake-fail-by-no-connection-header_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-no-cr_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-no-upgrade-header_wsh.py: >- * http/tests/websocket/tests/long-invalid-header_wsh.py: >- Some ports (Chromium) intercept handshake messages and do not pass server's response >- to WebCore until they find the end of handshake response (i.e. "\r\n\r\n" and 16-byte data). >- If the handler aborts the connection without sending this end-of-response marker, entire >- response is ignored, which causes the test to fail. >- >-2011-07-03 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r90347. >- http://trac.webkit.org/changeset/90347 >- https://bugs.webkit.org/show_bug.cgi?id=63886 >- >- Build breaks on Leopard, Chromium-win, WinCairo, and WinCE. >- (Requested by tkent on #webkit). >- >- * fast/js/number-toString-expected.txt: >- >-2011-07-01 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=16652 >- Firefox and JavaScriptCore differ in Number.toString(integer) >- >- Our arbitrary radix (2..36) toString conversion is inaccurate. >- This is partly because it uses doubles to perform math that requires >- higher accuracy, and partly becasue it does not attempt to correctly >- detect where to terminate, instead relying on a simple 'epsilon'. >- >- * fast/js/number-toString-expected.txt: >- - Update expected results from FAIL to PASS. >- >-2011-07-03 Robert Hogan <robert@webkit.org> >- >- Restore scroll position on page reloads scheduled by <meta http-equiv="refresh" content="XX"/> >- https://bugs.webkit.org/show_bug.cgi?id=62482 >- >- If a <meta http-equiv="refresh"> directive schedules a page reload rather than >- a redirect restore the scroll position after the reload. Do the same on location.reload(). >- >- Reviewed by Adam Barth. >- >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2.html: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier.html: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh.html: Added. >- * http/tests/navigation/scrollstate-after-location-reload-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-location-reload.html: Added. >- >-2011-07-03 Dirk Schulze <krit@webkit.org> >- >- SVGAnimateTransform accumulate=sum restarts on every repeat >- https://bugs.webkit.org/show_bug.cgi?id=63876 >- >- Reviewed by Nikolas Zimmermann. >- >- Test accumulate=sum on SVGAnimateTransform. The animation shouldn't start with initial value >- on every repeat for accumulation. >- >- * svg/animations/script-tests/svgtransform-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgtransform-animation-1-expected.txt: Added. >- * svg/animations/svgtransform-animation-1.html: Added. >- >-2011-07-03 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r90342. >- http://trac.webkit.org/changeset/90342 >- https://bugs.webkit.org/show_bug.cgi?id=63875 >- >- Newly added tests fail on Mac, GTK, and Win7 (Requested by >- abarth on #webkit). >- >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-expected.txt: Removed. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2-expected.txt: Removed. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2.html: Removed. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-expected.txt: Removed. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier.html: Removed. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh.html: Removed. >- * http/tests/navigation/scrollstate-after-location-reload-expected.txt: Removed. >- * http/tests/navigation/scrollstate-after-location-reload.html: Removed. >- >-2011-07-03 Robert Hogan <robert@webkit.org> >- >- Skip Qt platform-specific test after r90341 >- https://bugs.webkit.org/show_bug.cgi?id=45455 >- >- Unreviewed, skip test. >- >- The Skipped list needs the platform-specific path of the test. >- >- * platform/qt/Skipped: >- >-2011-07-03 Robert Hogan <robert@webkit.org> >- >- Restore scroll position on page reloads scheduled by <meta http-equiv="refresh" content="XX"/> >- https://bugs.webkit.org/show_bug.cgi?id=62482 >- >- If a <meta http-equiv="refresh"> directive schedules a page reload rather than >- a redirect restore the scroll position after the reload. Do the same on location.reload(). >- >- Reviewed by Adam Barth. >- >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-2.html: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh-fragment-identifier.html: Added. >- * http/tests/navigation/scrollstate-after-http-equiv-refresh.html: Added. >- * http/tests/navigation/scrollstate-after-location-reload-expected.txt: Added. >- * http/tests/navigation/scrollstate-after-location-reload.html: Added. >- >-2011-04-02 Robert Hogan <robert@webkit.org> >- >- Reviewed by Benjamin Poulain. >- >- [Qt] Support third-party cookie policy for Qt clients >- >- Add a new test and move third-party cookie tests to 'pending >- unskipping' for when bots move to 4.8. >- >- See also: http://gitorious.org/qt/qt/merge_requests/1205 >- (commit 154402f56dcf8303a6ce601a52215226af8d31ba) >- http://bugreports.qt.nokia.com/browse/QTBUG-13601 >- >- https://bugs.webkit.org/show_bug.cgi?id=45455 >- >- * platform/qt/http/tests/cookies/strict-third-party-cookie-blocking.html: Added. >- * platform/qt/http/tests/cookies/strict-third-party-cookie-blocking-expected.txt: Added. >- This test is a stricter version of third-party-cookie-relaxing.html with >- the expected behaviour that all third-party cookies are blocked. >- * platform/qt/Skipped: Prepare tests for unskipping on Qt-4.8. >- * platform/qt/http/tests/cookies/third-party-cookie-relaxing-expected.txt: Added. >- Qt returns cookie lists in a different order from other ports. >- >-2011-07-03 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Alexey Proskuryakov. >- >- Web Inspector: Preflight OPTIONS requests are not shown on network panel for asynchronous XHRs. >- https://bugs.webkit.org/show_bug.cgi?id=63712 >- >- * http/tests/inspector/network-preflight-options-expected.txt: >- * http/tests/inspector/network-preflight-options.html: >- >-2011-07-03 Robert Hogan <robert@webkit.org> >- >- Add platform-specific results after r90338 >- >- Unreviewed, add platform-specific results for new rendertree test. >- https://bugs.webkit.org/show_bug.cgi?id=30355 >- >- http://trac.webkit.org/changeset/90338 >- >- * platform/gtk/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- * platform/qt-mac/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- * plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- >-2011-06-23 Robert Hogan <robert@webkit.org> >- >- Reviewed by Simon Hausmann. >- >- [Qt] Windowless Plugins : <input> cursor blinks even after transferring focus to plugin >- https://bugs.webkit.org/show_bug.cgi?id=30355 >- >- Unfortunately this has to be a rendertree test, as there is no rendertext way of >- determining if a selection is still highlighted. >- >- * platform/chromium/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- * platform/qt/plugins/mouse-click-plugin-clears-selection-expected.txt: Added. >- * plugins/mouse-click-plugin-clears-selection.html: Added. >- >-2011-07-02 Mihai Parparita <mihaip@chromium.org> >- >- Remove failing expectation for fast/events/panScroll-click-hyperlink.html >- (Chromium still doesn't pass the test, since it doesn't have pan >- scrolling enabled, but r90235 added failing expectations for the Windows >- port, which Chromium Win and Linux pick up) >- >- Also remove flaky expectations for some tests that have not failed as >- far back as the flakiness dashboard has data for. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-02 Anders Carlsson <andersca@apple.com> >- >- Update skipped list. >- >- * platform/wk2/Skipped: >- >-2011-07-02 Mihai Parparita <mihaip@chromium.org> >- >- Remove Chromium Leopard failing expectations for two tests (fast/dom/ >- HTMLMeterElement/meter-writing-mode.html and fast/images/ >- imagemap-focus-ring-zoom.html) sice they pass now. Fix bug links. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-02 Mihai Parparita <mihaip@chromium.org> >- >- Meant to actually remove expectations in r90322, not just comment them >- out. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-02 Mihai Parparita <mihaip@chromium.org> >- >- Add Chromium Mac Snow Leopard baselines for editing/selection/vertical* >- since the regular Mac baselines can't be used due to single-pixel >- differences in character rendering (presumably caused by 32-bit vs. >- 64-bit binaries). >- >- * platform/chromium-mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-07-02 Mihai Parparita <mihaip@chromium.org> >- >- Chromium expectations update: >- - Add failing expectation for fast/css/last-of-type-pseudo-class.html, >- which fails in debug only. >- - Remove Chromium-specific baselines for fast/js/reserved-words.html, >- the test now passes with the regular baselines. >- >- * platform/chromium-mac/fast/js/reserved-words-expected.txt: Removed. >- * platform/chromium-win/fast/js/reserved-words-expected.txt: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-07-02 Kent Tamura <tkent@chromium.org> >- >- [GTK] Update expectation of fast/forms/input-file-re-render.html >- https://bugs.webkit.org/show_bug.cgi?id=49245 >- >- * platform/gtk/fast/forms/input-file-re-render-expected.png: Remove a stale image. >- * platform/gtk/fast/forms/input-file-re-render-expected.txt: >- >-2011-07-01 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Rebaseline for fast/forms/input-file-re-render.html >- https://bugs.webkit.org/show_bug.cgi?id=63733 >- >- Also, input-file-label.html passes now. >- >- * platform/chromium-linux/fast/forms/input-file-re-render-expected.png: >- * platform/chromium-linux/fast/forms/input-file-re-render-expected.txt: >- * platform/chromium-mac-leopard/fast/forms/input-file-re-render-expected.png: >- * platform/chromium-mac/fast/forms/input-file-re-render-expected.png: >- * platform/chromium-win/fast/forms/input-file-re-render-expected.png: >- * platform/chromium-win/fast/forms/input-file-re-render-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update the expectation of search-rtl.html >- https://bugs.webkit.org/show_bug.cgi?id=63787 >- >- * platform/chromium-win/fast/forms/search-rtl-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- Remove GTK baseline added in r90294 since the test was fixed in r90309. >- (File name was wrong. It was supposed to be -expected.txt) >- >- * platform/gtk/editing/selection/directionality-after-undo-replace.html: Removed. >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- [GTK] editing/selection/directionality-after-undo-replace.html is failing >- https://bugs.webkit.org/show_bug.cgi?id=63853 >- >- Reviewed by Ojan Vafai. >- >- Don't do leapForward between mouseDown and mouseUp so that GTK recognizes the double-click. >- >- * editing/selection/directionality-after-undo-replace.html: >- >-2011-07-01 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Tony Chang. >- >- Use common functions in fast/forms/search-rtl.html >- https://bugs.webkit.org/show_bug.cgi?id=63787 >- >- * fast/forms/search-rtl.html: Use searchCancelButtonPosition() to make >- this work on Chromium Windows and Chromium Linux. >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Sam Weinig <sam@webkit.org> >- >- Reduce parser nesting cap to 512 >- https://bugs.webkit.org/show_bug.cgi?id=63856 >- >- Update test for new cap. >- >- * fast/parser/block-nesting-cap-expected.txt: >- * fast/parser/script-tests/block-nesting-cap.js: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- editing/selection/directionality-after-undo-replace.html fails on Chromium Windows >- https://bugs.webkit.org/show_bug.cgi?id=63855 >- >- Reviewed by Ryosuke Niwa. >- >- Allow a trailing whitespace in the expected result, since Windows >- has different word iterating behavior. >- >- * editing/selection/directionality-after-undo-replace.html: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Remove Chromium Windows 7 and Vista media test expectations, since >- clobbering the bots appears to have fixed the timeouts and failures. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK rebaseline r90275. The failure of directionality-after-undo-replace.html is tracked by the bug 63853. >- >- * platform/gtk/editing/selection/after-line-break-expected.txt: Added. >- * platform/gtk/editing/selection/directionality-after-undo-replace.html: Added. >- >-2011-07-01 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, remove extraneous newlines from >- expected results for fast/workers/worker-finish-crash.html. >- >- * fast/workers/worker-finish-crash-expected.txt: >- >-2011-07-01 Darin Adler <darin@apple.com> >- >- The commit-bot checked in files without Subversion properties, so adding them now. >- >- * fast/loader/create-frame-in-DOMContentLoaded-expected.txt: Added property svn:eol-style. >- * fast/loader/create-frame-in-DOMContentLoaded.html: Added properties svn:mime-type and svn:eol-style. >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip the test added by r90275 in WebKit2 because setEditingBehavior hasn't been implemented in TestRunner. >- >- * platform/wk2/Skipped: >- >-2011-07-01 Hans Wennborg <hans@chromium.org> >- >- IndexedDB: make LevelDB the default back-end >- https://bugs.webkit.org/show_bug.cgi?id=63817 >- >- Reviewed by Tony Chang. >- >- Disable IndexedDB quota teset since quota enforcement is not yet >- supported by the LevelDB back-end. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Rebaseline media/media-blocked-by-beforeload.html for Chromium Leopard >- (r90261 added a Leopard expectation for the Mac port, but Chromium >- Leopard can pass with the default baseline). >- >- * platform/chromium-mac-leopard/media/media-blocked-by-beforeload-expected.txt: Added. >- >-2011-07-01 Nate Chapin <japhet@chromium.org> >- >- Test for https://bugs.webkit.org/show_bug.cgi?id=63835. >- >- Reviewed by Dmitry Titov. >- >- * fast/workers/worker-finish-crash-expected.txt: Added. >- * fast/workers/worker-finish-crash.html: Added. >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Reviewed by Darin Fisher. >- >- location.replace with a hash change does not update the history entry >- https://bugs.webkit.org/show_bug.cgi?id=63777 >- >- * fast/history/location-replace-hash-expected.txt: Added. >- * fast/history/location-replace-hash.html: Added. >- * fast/history/resources/location-replace-hash-1.html: Added. >- * fast/history/resources/location-replace-hash-2.html: Added. >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix expected results after r90275. I checked in Mac-specific results for these tests. >- Move them to platform/mac and revert the changes in platform-independent results. >- Also copy results to platform/win because they fallback to Mac by default. >- >- * editing/deleting/delete-br-011-expected.txt: >- * editing/selection/anchor-focus2-expected.txt: >- * editing/selection/anchor-focus3-expected.txt: >- * platform/mac/editing/deleting/delete-br-011-expected.txt: Copied from LayoutTests/editing/deleting/delete-br-011-expected.txt. >- * platform/mac/editing/selection/anchor-focus2-expected.txt: Copied from LayoutTests/editing/selection/anchor-focus2-expected.txt. >- * platform/mac/editing/selection/anchor-focus3-expected.txt: Copied from LayoutTests/editing/selection/anchor-focus3-expected.txt. >- * platform/win/editing/deleting/delete-br-011-expected.txt: Copied from LayoutTests/editing/deleting/delete-br-011-expected.txt. >- * platform/win/editing/selection/anchor-focus2-expected.txt: Copied from LayoutTests/editing/selection/anchor-focus2-expected.txt. >- * platform/win/editing/selection/anchor-focus3-expected.txt: Copied from LayoutTests/editing/selection/anchor-focus3-expected.txt. >- >-2011-07-01 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Ojan Vafai. >- >- Move m_isDirectional from FrameSelection to VisibleSelection >- https://bugs.webkit.org/show_bug.cgi?id=63473 >- >- Added a test to ensure WebKit preserves non-directional selection after undo on Mac. >- >- The directionality of selection is still lost after undoing DeleteSelectionCommand or TypingCommand >- and this will be fixed in follow up patches. >- >- * editing/deleting/delete-br-011-expected.txt: >- * editing/selection/after-line-break-expected.txt: >- * editing/selection/anchor-focus2-expected.txt: >- * editing/selection/anchor-focus3-expected.txt: >- * editing/selection/directionality-after-undo-replace-expected.txt: Added. >- * editing/selection/directionality-after-undo-replace.html: Added. >- * platform/mac/editing/deleting/delete-br-002-expected.txt: >- * platform/mac/editing/deleting/delete-br-004-expected.txt: >- * platform/mac/editing/deleting/delete-br-005-expected.txt: >- * platform/mac/editing/deleting/delete-br-006-expected.txt: >- * platform/mac/editing/deleting/delete-br-009-expected.txt: >- * platform/mac/editing/deleting/delete-br-010-expected.txt: >- * platform/mac/editing/deleting/smart-delete-002-expected.txt: >- * platform/mac/editing/inserting/insert-3800346-fix-expected.txt: >- * platform/mac/editing/inserting/insert-at-end-01-expected.txt: >- * platform/mac/editing/inserting/insert-at-end-02-expected.txt: >- * platform/mac/editing/inserting/insert-div-010-expected.txt: >- * platform/mac/editing/inserting/insert-div-013-expected.txt: >- * platform/mac/editing/inserting/insert-div-015-expected.txt: >- * platform/mac/editing/inserting/insert-div-019-expected.txt: >- * platform/mac/editing/inserting/insert-paragraph-03-expected.txt: >- * platform/mac/editing/pasteboard/3976872-expected.txt: >- * platform/mac/editing/pasteboard/emacs-ctrl-a-k-y-expected.txt: >- * platform/mac/editing/pasteboard/emacs-ctrl-k-y-001-expected.txt: >- * platform/mac/editing/pasteboard/paste-text-014-expected.txt: >- * platform/mac/editing/selection/4932260-1-expected.txt: >- * platform/mac/editing/selection/expanding-selections-expected.txt: >- * platform/mac/editing/selection/expanding-selections2-expected.txt: >- * platform/mac/editing/selection/fake-drag-expected.txt: >- * platform/mac/editing/selection/move-by-word-001-expected.txt: >- * platform/mac/editing/selection/triple-click-in-pre-expected.txt: >- * platform/mac/editing/style/create-block-for-style-008-expected.txt: >- * platform/mac/editing/undo/4063751-expected.txt: >- * platform/mac/editing/undo/undo-forward-delete-boundary-expected.txt: >- * platform/mac/editing/undo/undo-forward-delete-expected.txt: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Add more Chromium flaky expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Add more failing test expectations for Chromium media tests on Windows 7 >- and Vista. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Juan C. Montemayor <jmont@apple.com> >- >- Reviewed by Oliver Hunt. >- >- Lexer error messages are currently appalling >- https://bugs.webkit.org/show_bug.cgi?id=63340 >- >- Updated expected test results. >- >- * fast/js/basic-strict-mode-expected.txt: >- * fast/js/kde/parse-expected.txt: >- * fast/js/kde/string-1-n-expected.txt: >- * fast/js/kde/string-2-n-expected.txt: >- * fast/js/numeric-escapes-in-string-literals-expected.txt: >- * fast/js/removing-Cf-characters-expected.txt: >- * fast/regex/non-pattern-characters-expected.txt: >- * http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt: >- * loader/reload-subresource-when-type-changes-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.4_Comments/S7.4_A2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.1_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.2_T1-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A13_T1-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A13_T2-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A14_T1-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A14_T2-expected.txt: >- >-2011-07-01 Adam Roben <aroben@apple.com> >- >- Add Leopard expected failure result for media/media-blocked-by-beforeload.html >- >- The failure is tracked by <http://webkit.org/b/63829>. >- >- * platform/mac-leopard/media/media-blocked-by-beforeload-expected.txt: Added. >- >-2011-07-01 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r90254. >- http://trac.webkit.org/changeset/90254 >- https://bugs.webkit.org/show_bug.cgi?id=63825 >- >- "committed with a totally broken changelog" (Requested by >- kbalazs on #webkit). >- >- * platform/qt-wk2/Skipped: >- * platform/qt-wk2/plugins/netscape-dom-access-expected.txt: Removed. >- >-2011-07-01 Hans Wennborg <hans@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: Fix constants for webkitIDBTransaction.READ_WRITE/READ_ONLY >- https://bugs.webkit.org/show_bug.cgi?id=63754 >- >- Update layout tests to use the right values for >- webkitIDBTransaction.READ_WRITE/READ_ONLY. >- >- * storage/indexeddb/constants-expected.txt: >- * storage/indexeddb/constants.html: >- >-2011-07-01 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=63819 >- Escaping of forwardslashes in strings incorrect if multiple exist. >- >- Add tests with multiple forward slashes. >- >- * fast/regex/script-tests/toString.js: >- * fast/regex/toString-expected.txt: >- >-2011-07-01 Mihai Parparita <mihaip@chromium.org> >- >- Add failing test expectations for Chromium media tests on Windows 7 and >- Vista. >- >- * platform/chromium/test_expectations.txt: >- >-2011-07-01 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt][WK2] Clean up skipped list >- https://bugs.webkit.org/show_bug.cgi?id=61644 >- >- * platform/qt-wk2/Skipped: Remove everything that we skip via the common wk2 list. >- >-2011-06-30 Brian Weinstein <bweinstein@apple.com> >- >- Reviewed by Darin Adler. >- >- WebKit2: DidFinishLoadForFrame is never called on iframes when loads are >- cancelled by willSendRequest >- https://bugs.webkit.org/show_bug.cgi?id=63753 >- >- Unskip WebKit2 tests that now pass. >- >- * platform/wk2/Skipped: >- >-2011-07-01 Adam Roben <aroben@apple.com> >- >- Skip one asserting and one timing-out test on Windows >- >- Failures are tracked by <http://webkit.org/b/63806> and <http://webkit.org/b/63807>. >- >- * platform/win/Skipped: Added >- http/tests/cache/history-only-cached-subresource-loads-max-age-https.html and >- fast/loader/create-frame-in-DOMContentLoaded.html. >- >-2011-07-01 Adam Roben <aroben@apple.com> >- >- Land Windows expected failure results for fast/events/panScroll-click-hyperlink.html >- >- The failure is tracked by <http://webkit.org/b/63809>. >- >- * platform/win/fast/events/panScroll-click-hyperlink-expected.txt: >- >-2011-07-01 Adam Roben <aroben@apple.com> >- >- Land new expected (failure?) results for an accessibility test on Windows >- >- The failure is tracked by <http://webkit.org/b/63811>. >- >- * platform/win/accessibility/aria-labelledby-overrides-aria-label-expected.txt: >- >-2011-07-01 Adam Roben <aroben@apple.com> >- >- Update expected results after r90159 >- >- Fixes <http://webkit.org/b/63810> REGRESSION (r90159): fast/events/window-onerror5.html >- failing >- >- * fast/events/window-onerror5-expected.txt: Updated for progression. >- >-2011-07-01 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt][WK2] netscape-dom-access.html needs new result >- https://bugs.webkit.org/show_bug.cgi?id=63454 >- >- * platform/qt-wk2/Skipped: >- * platform/qt-wk2/plugins/netscape-dom-access-expected.txt: Added. >- >-2011-07-01 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt][WK2] netscape-dom-access.html needs new result >- https://bugs.webkit.org/show_bug.cgi?id=63454 >- >- * platform/qt-wk2/Skipped: >- * platform/qt-wk2/plugins/netscape-dom-access-expected.txt: Added. >- >-2011-07-01 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [X11][WK2] plugins/mouse-evets-fixedpos.html is failing because of broken event propagation >- https://bugs.webkit.org/show_bug.cgi?id=63239 >- >- * platform/qt-wk2/Skipped: >- >-2011-07-01 Alice Boxhall <aboxhall@chromium.org> >- >- Reviewed by Adam Roben. >- >- accessibility/aria-labelledby-overrides-aria-label.html failing on Windows since it was added >- https://bugs.webkit.org/show_bug.cgi?id=63191 >- >- * accessibility/aria-labelledby-overrides-aria-label-expected.txt: Removed. >- * accessibility/aria-labelledby-overrides-aria-label.html: >- * platform/mac/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Added. >- * platform/win/accessibility/aria-labelledby-overrides-aria-label-expected.txt: >- >-2011-07-01 Kentaro Hara <haraken@google.com> >- >- Reviewed by Kent Tamura. >- >- Disallow clicking an [X] button in 'search' input forms when 'disabled' attribute or 'readonly' attribute is set. >- https://bugs.webkit.org/show_bug.cgi?id=63709 >- >- Added a test that checks whether the content in 'search' input forms with 'disabled' attribute >- or 'readonly' attribute is cleared or not, when an [X] button is clicked. >- >- * fast/forms/search-disabled-readonly-expected.txt: Added. >- * fast/forms/search-disabled-readonly.html: Added. >- >-2011-07-01 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update text expectation for Vista. >- >- * platform/chromium-win-vista/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- >-2011-07-01 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedLengthListAnimator does not take additive="sum" into accout >- https://bugs.webkit.org/show_bug.cgi?id=63705 >- >- Tests additive animations for SVGLengthLists as well as unit animations on SVGLength. >- >- * svg/animations/script-tests/svglength-animation-unitType.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglengthlist-animation-5.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svglength-animation-unitType-expected.txt: Added. >- * svg/animations/svglength-animation-unitType.html: Added. >- * svg/animations/svglengthlist-animation-5-expected.txt: Added. >- * svg/animations/svglengthlist-animation-5.html: Added. >- >-2011-07-01 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGAnimatedInteger animation >- https://bugs.webkit.org/show_bug.cgi?id=63789 >- >- Test animation of SVGAnimatedInteger. Added the test to the wk2 skip list. >- >- * platform/mac-wk2/Skipped: >- * svg/animations/script-tests/svginteger-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svginteger-animation-1-expected.txt: Added. >- * svg/animations/svginteger-animation-1.html: Added. >- >-2011-07-01 Kent Tamura <tkent@chromium.org> >- >- [Chromium] More test expectation update for r90089 >- >- Need to update a Windows XP expectation because the corresponding >- chromium-win expectation was updated. >- >- * platform/chromium-win-xp/fast/forms/search-styled-expected.png: Added. >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Mac][Chromium] Update test expectations for r90089 >- >- The placeholder position changes are expected because we respect >- paddings for text fields. >- >- * platform/chromium-linux/fast/forms/placeholder-position-expected.png: >- * platform/chromium-mac-leopard/fast/forms/placeholder-position-expected.png: >- * platform/chromium-win/fast/forms/placeholder-position-expected.png: >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/forms/placeholder-position-expected.png: >- >-2011-06-30 Eugene Klyuchnikov <eustas.bug@gmail.com> >- >- Reviewed by Pavel Feldman. >- >- WebInspector: Performance / memory allocation issue in WebInspector.TextEditorModel.prototype._replaceTabsIfNeeded >- https://bugs.webkit.org/show_bug.cgi?id=40447 >- >- * inspector/editor/text-editor-model-replace-tabs-expected.txt: Added. >- * inspector/editor/text-editor-model-replace-tabs.html: Added. >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update test expectations. >- >- * platform/chromium-mac-leopard/fast/forms/preserveFormDuringResidualStyle-expected.png: Added. >- * platform/chromium-mac-leopard/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- * platform/chromium-win-xp/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update expectation files for r90089. >- >- * platform/chromium-linux/fast/css/input-search-padding-expected.png: >- * platform/chromium-linux/fast/css/input-search-padding-expected.txt: >- * platform/chromium-linux/fast/forms/box-shadow-override-expected.txt: >- * platform/chromium-linux/fast/forms/control-restrict-line-height-expected.txt: >- * platform/chromium-linux/fast/forms/input-appearance-height-expected.txt: >- * platform/chromium-linux/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/chromium-linux/fast/forms/placeholder-set-value-expected.png: Added. >- * platform/chromium-linux/fast/forms/search-display-none-cancel-button-expected.png: >- * platform/chromium-linux/fast/forms/search-styled-expected.txt: >- * platform/chromium-linux/fast/forms/search-vertical-alignment-expected.png: >- * platform/chromium-linux/fast/forms/searchfield-heights-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/forms/searchfield-heights-expected.txt. >- * platform/chromium-linux/fast/repaint/search-field-cancel-expected.png: >- * platform/chromium-linux/fast/replaced/width100percent-searchfield-expected.png: >- * platform/chromium-linux/fast/table/colspanMinWidth-vertical-expected.png: >- * platform/chromium-linux/platform/mac/fast/forms/input-appearance-spinbutton-expected.png: Added. >- * platform/chromium-linux/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Added. >- * platform/chromium-linux/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/search-vertical-alignment-expected.png: Added. >- * platform/chromium-mac/fast/css/input-search-padding-expected.png: Removed. >- * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: >- * platform/chromium-mac/fast/forms/box-shadow-override-expected.txt: >- * platform/chromium-mac/fast/forms/input-appearance-height-expected.png: >- * platform/chromium-mac/fast/forms/input-appearance-height-expected.txt: >- * platform/chromium-mac/fast/forms/search-vertical-alignment-expected.png: Added. >- * platform/chromium-mac/fast/speech/input-appearance-numberandspeech-expected.txt: >- * platform/chromium-mac/fast/speech/input-appearance-speechbutton-expected.txt: >- * platform/chromium-win-vista/fast/forms/search-styled-expected.txt: Removed. >- * platform/chromium-win-xp/fast/forms/search-styled-expected.txt: >- * platform/chromium-win/fast/css/input-search-padding-expected.png: >- * platform/chromium-win/fast/css/input-search-padding-expected.txt: >- * platform/chromium-win/fast/css/pseudo-cache-stale-expected.txt: >- * platform/chromium-win/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/chromium-win/fast/forms/box-shadow-override-expected.txt: >- * platform/chromium-win/fast/forms/control-restrict-line-height-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-height-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/chromium-win/fast/forms/placeholder-position-expected.txt: >- * platform/chromium-win/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/chromium-win/fast/forms/placeholder-set-value-expected.txt: >- * platform/chromium-win/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/chromium-win/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/chromium-win/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/chromium-win/fast/forms/search-rtl-expected.txt: >- * platform/chromium-win/fast/forms/search-styled-expected.png: >- * platform/chromium-win/fast/forms/search-styled-expected.txt: >- * platform/chromium-win/fast/forms/search-vertical-alignment-expected.png: >- * platform/chromium-win/fast/forms/search-vertical-alignment-expected.txt: >- * platform/chromium-win/fast/forms/searchfield-heights-expected.png: Added. >- * platform/chromium-win/fast/forms/searchfield-heights-expected.txt: >- * platform/chromium-win/fast/repaint/search-field-cancel-expected.png: >- * platform/chromium-win/fast/repaint/search-field-cancel-expected.txt: >- * platform/chromium-win/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/chromium-win/fast/speech/input-appearance-numberandspeech-expected.txt: >- * platform/chromium-win/fast/speech/input-appearance-speechbutton-expected.txt: >- * platform/chromium-win/fast/table/colspanMinWidth-vertical-expected.png: >- * platform/chromium-win/fast/table/colspanMinWidth-vertical-expected.txt: >- * platform/chromium-win/platform/mac/fast/forms/input-appearance-spinbutton-expected.png: Added. >- * platform/chromium-win/platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: Added. >- * platform/chromium-win/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.png: Copied from LayoutTests/platform/chromium-linux/fast/replaced/width100percent-searchfield-expected.png. >- * platform/chromium-win/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Chromium-Mac] Update test expectation files. >- >- * platform/chromium-mac-leopard/fast/forms/input-appearance-range-expected.png: >- * platform/chromium-mac/fast/dom/HTMLInputElement/input-slider-update-expected.png: Removed. >- * platform/chromium-mac/fast/forms/basic-buttons-expected.png: Added. >- * platform/chromium-mac/fast/forms/button-sizes-expected.png: Added. >- * platform/chromium-mac/fast/forms/file-input-direction-expected.png: >- * platform/chromium-mac/fast/forms/file-input-direction-expected.txt: >- * platform/chromium-mac/fast/forms/input-appearance-bkcolor-expected.png: Added. >- * platform/chromium-mac/fast/forms/input-appearance-range-expected.png: >- * platform/chromium-mac/fast/forms/preserveFormDuringResidualStyle-expected.png: >- * platform/chromium-mac/fast/forms/slider-padding-expected.png: Removed. >- * platform/chromium-mac/fast/forms/slider-thumb-shared-style-expected.png: Removed. >- * platform/chromium-mac/fast/forms/thumbslider-no-parent-slider-expected.png: Removed. >- * platform/chromium-mac/fast/repaint/slider-thumb-drag-release-expected.png: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Tony Chang. >- >- [Chromium] Input type="range" slider thumb is rendered upside down on Mac OS X. >- https://bugs.webkit.org/show_bug.cgi?id=63697 >- >- * platform/chromium/test_expectations.txt: Some tests need new expectation images. >- >-2011-06-30 Kenichi Ishibashi <bashi@chromium.org> >- >- Reviewed by Simon Fraser. >- >- [Chromium] -webkit-text-stroke doesn't affect with non-zero width border property >- https://bugs.webkit.org/show_bug.cgi?id=63698 >- >- Added a test which ensures text stroke is rendered with non-zero width border. >- >- * platform/chromium-linux/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- * platform/chromium-linux/platform/chromium/fast/text/text-stroke-with-border-expected.txt: Added. >- * platform/chromium-mac/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- * platform/chromium-mac/platform/chromium/fast/text/text-stroke-with-border-expected.txt: Added. >- * platform/chromium-win/platform/chromium/fast/text/text-stroke-with-border-expected.png: Added. >- * platform/chromium-win/platform/chromium/fast/text/text-stroke-with-border-expected.txt: Added. >- * platform/chromium/fast/text/text-stroke-with-border.html: Added. >- >-2011-06-30 Andrew Scherkus <scherkus@chromium.org> >- >- Unreviewed. >- >- Rebaselining video-currentTime-set.html for Chromium due to FFmpeg update. >- >- * platform/chromium-mac/media/video-currentTime-set-expected.txt: >- * platform/chromium-win/media/video-currentTime-set-expected.txt: >- >-2011-06-30 Yuta Kitamura <yutak@chromium.org> >- >- Reviewed by Kent Tamura. >- >- WebSocket: Don't use old Hixie75 handshake in pywebsocket handlers >- https://bugs.webkit.org/show_bug.cgi?id=63704 >- >- * http/tests/websocket/tests/bad-handshake-crash_wsh.py: >- Use handshake format of Hixie's protocol draft 76 which we are currently supporting. >- * http/tests/websocket/tests/long-invalid-header_wsh.py: >- Content of web_socket_transfer_data() is completely bogus. It's not necessary. >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Darin Fisher. >- >- [Chromium] Implement WebCore::defaultDetailsSummaryText() >- https://bugs.webkit.org/show_bug.cgi?id=63700 >- >- * platform/chromium/test_expectations.txt: Tests for <details> fail temporarily. >- >-2011-06-30 Zhenyao Mo <zmo@google.com> >- >- Reviewed by Kenneth Russell. >- >- Improve WebGL object lifetime management in WebGLRenderingContext >- https://bugs.webkit.org/show_bug.cgi?id=63635 >- >- * fast/canvas/webgl/gl-object-get-calls-expected.txt: >- * fast/canvas/webgl/gl-object-get-calls.html: Fix a bug so getFramebufferAtatchmentParameter generates an error if nothing is attached and something other than TYPE is queried. >- * fast/canvas/webgl/object-deletion-behaviour-expected.txt: >- * fast/canvas/webgl/object-deletion-behaviour.html: Ditto. >- * fast/canvas/webgl/program-test.html: Fix the test so the order of shaders returned by getAttachedShaders doesn't matter. >- >-2011-06-27 Diego Gonzalez <diegohcg@webkit.org> >- >- Reviewed by Antonio Gomes. >- >- [Qt] DRT: Provide LayoutTestController::setDefersLoading and ::goBack support >- https://bugs.webkit.org/show_bug.cgi?id=63489 >- >- Unskipped: >- loader/navigation-while-deferring-loads.html >- >- * platform/qt/Skipped: >- >-2011-06-30 Alan Stearns <stearns@adobe.com> >- >- Reviewed by Tony Chang. >- >- Modify Skipped files so that future css exclusions LayoutTests are >- skipped by default. >- >- [CSSExclusions] Add test and skip entries >- https://bugs.webkit.org/show_bug.cgi?id=63751 >- >- * fast/exclusions/triangle-exclusion.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-30 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- Update SVG position values on SVG DOM updates >- https://bugs.webkit.org/show_bug.cgi?id=62439 >- >- * svg/custom/crash-textPath-attributes-expected.txt: Added. >- * svg/custom/crash-textPath-attributes.html: Added. >- * svg/custom/resources/crash-textPath-attributes-iframe.svg: Added. >- >-2011-06-30 Sreeram Ramachandran <sreeram@chromium.org> >- >- Reviewed by Adam Barth. >- >- Suppress modal JavaScript/HTML dialogs during unload events >- https://bugs.webkit.org/show_bug.cgi?id=56397 >- >- Adds Chromium-specific test expectations that show alerts in unload >- handlers being replaced by console messages. >- >- * fast/loader/page-dismissal-modal-dialogs-expected.txt: Added. >- * fast/loader/page-dismissal-modal-dialogs.html: Added. >- * fast/loader/resources/page-dismissal-modal-dialogs-iframe.html: Added. >- * platform/chromium-mac/fast/history/timed-refresh-in-cached-frame-expected.txt: >- * platform/chromium-win/fast/history/timed-refresh-in-cached-frame-expected.txt: >- * platform/chromium/fast/dom/Geolocation/notimer-after-unload-expected.txt: Added. >- * platform/chromium/fast/events/onbeforeunload-focused-iframe-expected.txt: Added. >- * platform/chromium/fast/events/onunload-clears-onbeforeunload-expected.txt: Added. >- * platform/chromium/fast/events/onunload-expected.txt: Added. >- * platform/chromium/fast/events/onunload-not-on-body-expected.txt: Added. >- * platform/chromium/fast/events/onunload-window-property-expected.txt: Added. >- * platform/chromium/fast/events/pageshow-pagehide-on-back-uncached-expected.txt: Added. >- * platform/chromium/fast/history/timed-refresh-in-cached-frame-expected.txt: Added. >- * platform/chromium/fast/loader/frames-with-unload-handlers-in-page-cache-expected.txt: Added. >- * platform/chromium/fast/loader/page-dismissal-modal-dialogs-expected.txt: Added. >- * platform/chromium/fast/loader/recursive-before-unload-crash-expected.txt: Added. >- >-2011-06-30 Juan C. Montemayor <jmont@apple.com> >- >- Reviewed by Geoffrey Garen. >- >- Web Inspector fails to display source for eval with syntax error >- https://bugs.webkit.org/show_bug.cgi?id=63583 >- >- Added new LayoutTest to check that the correct line number is added to a >- syntax error inside an eval statement. >- >- * fast/js/eval-contained-syntax-error-expected.txt: Added. >- * fast/js/eval-contained-syntax-error.html: Added. >- * fast/js/script-tests/eval-contained-syntax-error.js: Added. >- * platform/chromium/fast/js/eval-contained-syntax-error-expected.txt: Added. >- >-2011-06-30 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium test update after r90148. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- Assertion failure in RenderSVGInlineText::characterStartsNewTextChunk >- https://bugs.webkit.org/show_bug.cgi?id=63076 >- >- * svg/custom/crash-text-in-textpath-expected.txt: Added. >- * svg/custom/crash-text-in-textpath.svg: Added. >- Original crashing test case. >- >- * svg/custom/text-node-in-text-invalidated-expected.txt: Added. >- * svg/custom/text-node-in-text-invalidated.svg: Added. >- This test case was not crashing. However it is good to make sure this change >- did not regress that. >- >-2011-06-30 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Anders Carlsson. >- >- [GTK] Crash observed with nspluginwrapper and flash >- https://bugs.webkit.org/show_bug.cgi?id=62249 >- >- Added a test which verifies that WebKit does not crash when InvalidateRect >- is called with a null instance. >- >- * platform/gtk/plugins/invalidate-rect-with-null-npp-argument-expected.txt: Added. >- * platform/gtk/plugins/invalidate-rect-with-null-npp-argument.html: Added. >- >-2011-06-30 Tab Atkins <jackalmage@gmail.com> >- >- Reviewed by Adam Barth. >- >- Fix legacy color attribute parsing to match HTML spec >- https://bugs.webkit.org/show_bug.cgi?id=63029 >- >- Tests <body bgcolor> parsing. >- >- * fast/dom/attribute-legacy-colors-expected.txt: Added. >- * fast/dom/attribute-legacy-colors.html: Added. >- * fast/dom/script-tests/attribute-legacy-colors.js: Added. >- >-2011-06-30 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, remove passing tests from chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-29 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- Crash when calling DOMSubtreeModified event when extracting range >- contents. >- https://bugs.webkit.org/show_bug.cgi?id=63650 >- >- * fast/dom/Range/range-extract-contents-event-fire-crash-expected.txt: Added. >- * fast/dom/Range/range-extract-contents-event-fire-crash.html: Added. >- * fast/dom/Range/range-extract-contents-event-fire-crash2-expected.txt: Added. >- * fast/dom/Range/range-extract-contents-event-fire-crash2.html: Added. >- * fast/dom/Range/range-extractContents.html: remove the appending of fragment >- in this crasher test since we now refptr the nodes and leftContents will be visible. >- This crasher test does not need to show the extractContents fragment. >- >-2011-06-30 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium test expectations update after r90101. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Zsolt Fehér <h490267@stud.u-szeged.hu> >- >- Reviewed by Csaba Osztrogonác. >- >- [WK2] Create a general wk2 specific LayoutTests/platform/wk2 platform >- Common Skipped list copied from LayoutTests/platform/mac-wk2/Skipped. >- https://bugs.webkit.org/show_bug.cgi?id=61785 >- >- * platform/mac-wk2/Skipped: >- * platform/wk2/Skipped: Copied from LayoutTests/platform/mac-wk2/Skipped. >- >-2011-06-30 Ilya Tikhonovsky <loislo@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Protocol: error object needs some improvement. >- https://bugs.webkit.org/show_bug.cgi?id=63707 >- >- Current implementation is not useful in the code. >- We need to have toString implementation with nice formatting >- I'd like to use error.message property as the main place for the error's text. >- >- * inspector/elements/set-attribute.html: >- * inspector/report-protocol-errors-expected.txt: >- * inspector/report-protocol-errors.html: >- >-2011-06-30 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, skip a failing media test on GTK because of >- https://bugs.webkit.org/show_bug.cgi?id=63699 >- >- * platform/gtk/Skipped: skip media/media-blocked-by-willsendrequest.html >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Resolve a conflict. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-30 Kentaro Hara <haraken@google.com> >- >- Reviewed by Kent Tamura. >- >- Change the label of an HTML5 file chooser button to "Choose Files" >- https://bugs.webkit.org/show_bug.cgi?id=49245 >- >- We should notify capability of multiple files to users. >- input-file-label.html is a test that checks a label of the file chooser >- with/without 'multiple' attribute. input-file-label.html will fail in Chromium >- until a planned Chromium patch is landed. input-file-re-render.html will >- also fail in Chromium, gtk and MacLeopard until we update the expected images >- for the test. >- >- * fast/forms/input-file-label-expected.txt: Added. >- * fast/forms/input-file-label.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/forms/input-file-re-render-expected.png: >- * platform/mac/fast/forms/input-file-re-render-expected.txt: >- >-2011-06-30 Yuta Kitamura <yutak@chromium.org> >- >- Reviewed by Kent Tamura. >- >- WebSocket: Don't use script-tests for WebSocket tests >- https://bugs.webkit.org/show_bug.cgi?id=63691 >- >- Move content of script-tests/XXX.js into XXX.html. >- >- No changes were made to script code. Hence, these tests are not using >- window.jsTestAsync and finishJSTest() for now. I will fix this later. >- >- * http/tests/websocket/tests/alert-in-event-handler.html: >- * http/tests/websocket/tests/bad-handshake-crash.html: >- * http/tests/websocket/tests/bad-sub-protocol-control-chars.html: >- * http/tests/websocket/tests/bad-sub-protocol-empty.html: >- * http/tests/websocket/tests/bad-sub-protocol-non-ascii.html: >- * http/tests/websocket/tests/bufferedAmount-after-close.html: >- * http/tests/websocket/tests/cross-origin.html: >- * http/tests/websocket/tests/error-detect.html: >- * http/tests/websocket/tests/frame-length-longer-than-buffer.html: >- * http/tests/websocket/tests/frame-length-skip.html: >- * http/tests/websocket/tests/handshake-challenge-randomness.html: >- * http/tests/websocket/tests/handshake-error.html: >- * http/tests/websocket/tests/handshake-fail-by-cross-origin.html: >- * http/tests/websocket/tests/handshake-fail-by-no-cr.html: >- * http/tests/websocket/tests/handshake-fail-by-sub-protocol-mismatch.html: >- * http/tests/websocket/tests/long-invalid-header.html: >- * http/tests/websocket/tests/null-character.html: >- * http/tests/websocket/tests/script-tests/TEMPLATE.html: Removed. >- * http/tests/websocket/tests/script-tests/alert-in-event-handler.js: Removed. >- * http/tests/websocket/tests/script-tests/bad-handshake-crash.js: Removed. >- * http/tests/websocket/tests/script-tests/bad-sub-protocol-control-chars.js: Removed. >- * http/tests/websocket/tests/script-tests/bad-sub-protocol-empty.js: Removed. >- * http/tests/websocket/tests/script-tests/bad-sub-protocol-non-ascii.js: Removed. >- * http/tests/websocket/tests/script-tests/bufferedAmount-after-close.js: Removed. >- * http/tests/websocket/tests/script-tests/cross-origin.js: Removed. >- * http/tests/websocket/tests/script-tests/error-detect.js: Removed. >- * http/tests/websocket/tests/script-tests/frame-length-longer-than-buffer.js: Removed. >- * http/tests/websocket/tests/script-tests/frame-length-skip.js: Removed. >- * http/tests/websocket/tests/script-tests/handshake-challenge-randomness.js: Removed. >- * http/tests/websocket/tests/script-tests/handshake-error.js: Removed. >- * http/tests/websocket/tests/script-tests/handshake-fail-by-cross-origin.js: Removed. >- * http/tests/websocket/tests/script-tests/handshake-fail-by-no-cr.js: Removed. >- * http/tests/websocket/tests/script-tests/handshake-fail-by-sub-protocol-mismatch.js: Removed. >- * http/tests/websocket/tests/script-tests/long-invalid-header.js: Removed. >- * http/tests/websocket/tests/script-tests/null-character.js: Removed. >- * http/tests/websocket/tests/script-tests/send-throw.js: Removed. >- * http/tests/websocket/tests/script-tests/send.js: Removed. >- * http/tests/websocket/tests/script-tests/simple.js: Removed. >- * http/tests/websocket/tests/script-tests/sub-protocol-with-space.js: Removed. >- * http/tests/websocket/tests/script-tests/sub-protocol.js: Removed. >- * http/tests/websocket/tests/script-tests/unicode.js: Removed. >- * http/tests/websocket/tests/script-tests/url-no-trailing-slash.js: Removed. >- * http/tests/websocket/tests/script-tests/url-parsing.js: Removed. >- * http/tests/websocket/tests/script-tests/url-with-credential.js: Removed. >- * http/tests/websocket/tests/script-tests/url-with-empty-query.js: Removed. >- * http/tests/websocket/tests/script-tests/url-with-query-for-no-query.js: Removed. >- * http/tests/websocket/tests/script-tests/url-with-query.js: Removed. >- * http/tests/websocket/tests/script-tests/websocket-event-target.js: Removed. >- * http/tests/websocket/tests/script-tests/websocket-protocol-ignored.js: Removed. >- * http/tests/websocket/tests/send-throw.html: >- * http/tests/websocket/tests/send.html: >- * http/tests/websocket/tests/simple.html: >- * http/tests/websocket/tests/sub-protocol-with-space.html: >- * http/tests/websocket/tests/sub-protocol.html: >- * http/tests/websocket/tests/unicode.html: >- * http/tests/websocket/tests/url-no-trailing-slash.html: >- * http/tests/websocket/tests/url-parsing.html: >- * http/tests/websocket/tests/url-with-credential.html: >- * http/tests/websocket/tests/url-with-empty-query.html: >- * http/tests/websocket/tests/url-with-query-for-no-query.html: >- * http/tests/websocket/tests/url-with-query.html: >- * http/tests/websocket/tests/websocket-event-target.html: >- * http/tests/websocket/tests/websocket-protocol-ignored.html: >- >-2011-06-30 Yuta Kitamura <yutak@chromium.org> >- >- Reviewed by Kent Tamura. >- >- WebSocket: Fix style issues of pywebsocket handlers >- https://bugs.webkit.org/show_bug.cgi?id=63689 >- >- Fix minor style errors such as wrong indentation or wrong number of blank lines. >- >- * http/tests/websocket/tests/bad-handshake-crash_wsh.py: >- * http/tests/websocket/tests/close-on-unload_wsh.py: >- * http/tests/websocket/tests/echo-challenge_wsh.py: >- * http/tests/websocket/tests/echo-cookie_wsh.py: >- * http/tests/websocket/tests/frame-length-longer-than-buffer_wsh.py: >- * http/tests/websocket/tests/frame-length-overflow_wsh.py: >- * http/tests/websocket/tests/frame-length-skip_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-maxlength_wsh.py: >- Use sequence repetition pattern instead of a loop. >- * http/tests/websocket/tests/handshake-fail-by-no-connection-header_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-no-cr_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-no-upgrade-header_wsh.py: >- * http/tests/websocket/tests/handshake-fail-by-prepended-null_wsh.py: >- * http/tests/websocket/tests/hanging-handshake_wsh.py: >- * http/tests/websocket/tests/long-invalid-header_wsh.py: >- * http/tests/websocket/tests/send2_wsh.py: >- * http/tests/websocket/tests/unknown-frame-type_wsh.py: >- * http/tests/websocket/tests/workers/resources/echo-challenge_wsh.py: >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [Mac-wk2] Update expectation files for r90089. >- https://bugs.webkit.org/show_bug.cgi?id=61415 >- >- * platform/mac-wk2/fast/forms/textfield-overflow-expected.txt: >- >-2011-06-30 MORITA Hajime <morrita@google.com> >- >- Reviewed by Dimitri Glazkov. >- >- Crash if ShadowRoot has a text node. >- https://bugs.webkit.org/show_bug.cgi?id=63607 >- >- * fast/dom/shadow/shadow-root-text-child-expected.txt: Added. >- * fast/dom/shadow/shadow-root-text-child.html: Added. >- >-2011-06-30 Kent Tamura <tkent@chromium.org> >- >- [GTK][Mac][Win] Update expectation files for r90089. >- https://bugs.webkit.org/show_bug.cgi?id=61415 >- >- * platform/gtk/fast/block/float/032-expected.txt: >- * platform/gtk/fast/css/input-search-padding-expected.txt: >- * platform/gtk/fast/css/pseudo-cache-stale-expected.txt: >- * platform/gtk/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/gtk/fast/forms/box-shadow-override-expected.txt: >- * platform/gtk/fast/forms/control-restrict-line-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/gtk/fast/forms/input-text-word-wrap-expected.txt: >- * platform/gtk/fast/forms/placeholder-position-expected.txt: >- * platform/gtk/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/gtk/fast/forms/placeholder-set-value-expected.txt: >- * platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/gtk/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/gtk/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/gtk/fast/forms/search-rtl-expected.txt: >- * platform/gtk/fast/forms/search-styled-expected.txt: >- * platform/gtk/fast/forms/search-vertical-alignment-expected.txt: >- * platform/gtk/fast/forms/searchfield-heights-expected.txt: >- * platform/gtk/fast/forms/textfield-overflow-expected.txt: >- * platform/gtk/fast/repaint/search-field-cancel-expected.txt: >- * platform/gtk/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/gtk/fast/table/colspanMinWidth-vertical-expected.txt: >- * platform/mac/fast/block/float/032-expected.txt: >- * platform/win/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/win/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/win/fast/forms/search-placeholder-value-changed-expected.txt: >- >-2011-06-30 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed. Update platform specific expected files after r90089. >- >- * platform/qt/fast/css/pseudo-cache-stale-expected.png: Added. >- * platform/qt/fast/css/pseudo-cache-stale-expected.txt: >- * platform/qt/fast/css/text-input-with-webkit-border-radius-expected.png: Added. >- * platform/qt/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/qt/fast/forms/control-restrict-line-height-expected.png: >- * platform/qt/fast/forms/control-restrict-line-height-expected.txt: >- * platform/qt/fast/forms/placeholder-set-value-expected.png: Added. >- * platform/qt/fast/forms/placeholder-set-value-expected.txt: >- * platform/qt/fast/forms/search-cancel-button-style-sharing-expected.png: Added. >- * platform/qt/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/qt/fast/forms/search-display-none-cancel-button-expected.png: Added. >- * platform/qt/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/qt/fast/forms/search-placeholder-value-changed-expected.png: Added. >- * platform/qt/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/qt/fast/forms/search-rtl-expected.png: Added. >- * platform/qt/fast/forms/search-rtl-expected.txt: >- * platform/qt/fast/forms/search-styled-expected.png: Added. >- * platform/qt/fast/forms/search-styled-expected.txt: >- * platform/qt/fast/forms/search-vertical-alignment-expected.png: Added. >- * platform/qt/fast/forms/search-vertical-alignment-expected.txt: >- * platform/qt/fast/replaced/width100percent-searchfield-expected.png: >- * platform/qt/fast/replaced/width100percent-searchfield-expected.txt: >- >-2011-06-29 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Avoid custom layout code of RenderTextControlSingleLine >- https://bugs.webkit.org/show_bug.cgi?id=61415 >- >- Update tests including <input type=search> or <input type=number>. Their >- internal structures are changed. >- Slight position changes for search result buttons and search cancel >- buttons are expected. >- >- * fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/css/input-search-padding-expected.png: >- * platform/mac/fast/css/input-search-padding-expected.txt: >- * platform/mac/fast/css/pseudo-cache-stale-expected.txt: >- * platform/mac/fast/forms/box-shadow-override-expected.txt: >- * platform/mac/fast/forms/control-restrict-line-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/mac/fast/forms/placeholder-position-expected.txt: >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/mac/fast/forms/placeholder-set-value-expected.txt: >- * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/mac/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/mac/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/mac/fast/forms/search-rtl-expected.txt: >- * platform/mac/fast/forms/search-styled-expected.txt: >- * platform/mac/fast/forms/search-vertical-alignment-expected.png: >- * platform/mac/fast/forms/search-vertical-alignment-expected.txt: >- * platform/mac/fast/forms/searchfield-heights-expected.txt: >- * platform/mac/fast/repaint/search-field-cancel-expected.png: >- * platform/mac/fast/repaint/search-field-cancel-expected.txt: >- * platform/mac/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.png: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt: >- >-2011-06-29 Simon Fraser <simon.fraser@apple.com> >- >- Fix the test description. >- >- * fast/layers/negative-scroll-positions-expected.txt: >- * fast/layers/script-tests/negative-scroll-positions.js: >- >-2011-06-29 Keishi Hattori <keishi@webkit.org> >- >- Reviewed by Adam Barth. >- >- Remove extra space at EOL in view source mode >- https://bugs.webkit.org/show_bug.cgi?id=63620 >- >- * fast/frames/resources/viewsource-frame-5.html: Added. >- * fast/frames/viewsource-empty-attribute-value-expected.txt: Regenerated. >- * fast/frames/viewsource-linebreak-expected.txt: Added. >- * fast/frames/viewsource-linebreak.html: Added. Test that there are no extra spaces at EOL. >- And that the multiple consecutive line breaks are maintained in the frame. >- >-2011-06-23 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by James Robinson. >- >- Tests that we do not crash when failing to remove the linebreak >- object(widget, block, replaced, etc) from parent block lineboxes. The >- testcase tries to fuzz over the list of html and svg tags. >- https://bugs.webkit.org/show_bug.cgi?id=60307 >- >- * fast/block/block-not-removed-from-parent-lineboxes-crash-expected.txt: Added. >- * fast/block/block-not-removed-from-parent-lineboxes-crash.html: Added. >- * fast/block/child-not-removed-from-parent-lineboxes-crash-expected.txt: Added. >- * fast/block/child-not-removed-from-parent-lineboxes-crash.html: Added. >- >-2011-06-29 Alan Stearns <stearns@adobe.com> >- >- Reviewed by Tony Chang. >- >- Modify Skipped files so that future css regions layout tests are >- skipped by default. >- >- [CSS Regions] Add support for skipped tests >- https://bugs.webkit.org/show_bug.cgi?id=63632 >- >- * fast/regions/flow-content-basic.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-29 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Beth Dakin. >- >- Lay some groundwork for rubber-banding in overflow:scroll divs >- https://bugs.webkit.org/show_bug.cgi?id=63654 >- >- Test clamping of scrollTo with negative values. >- >- * fast/layers/negative-scroll-positions-expected.txt: Added. >- * fast/layers/negative-scroll-positions.html: Added. >- * fast/layers/script-tests/TEMPLATE.html: Added. >- * fast/layers/script-tests/negative-scroll-positions.js: Added. >- (attemptScroll): >- >-2011-06-29 Jessie Berlin <jberlin@apple.com> >- >- eventSender.keyDown is unimplemented (WKTR) >- https://bugs.webkit.org/show_bug.cgi?id=57515 >- >- Add another test that uses eventSender.keyDown to the mac-wk2 Skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-29 Jian Li <jianli@chromium.org> >- >- Reviewed by Kenneth Russell. >- >- WebGL test failing on SL bots: fast/canvas/webgl/data-view-test.html >- https://bugs.webkit.org/show_bug.cgi?id=63151 >- >- Updated the expected result and removed the rebaselined files that are not needed. >- >- * fast/canvas/webgl/data-view-test-expected.txt: >- * platform/chromium-mac/fast/canvas/webgl/data-view-test-expected.txt: Removed. >- * platform/chromium-win/fast/canvas/webgl/data-view-test-expected.txt: Removed. >- * platform/mac/fast/canvas/webgl/data-view-test-expected.txt: Removed. >- >-2011-06-29 Jeff Timanus <twiz@chromium.org> >- >- Reviewed by Stephen White. >- >- [Chromium] Remove flakiness marker from fast/canvas/canvas-longlived-context.html >- https://bugs.webkit.org/show_bug.cgi?id=63649 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-29 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Darin Adler. >- >- Media element loads blocked by a resource load delegate do not generate an error event >- https://bugs.webkit.org/show_bug.cgi?id=63558 >- >- * media/media-blocked-by-beforeload-expected.txt: Added. >- * media/media-blocked-by-beforeload.html: Added. >- * media/media-blocked-by-willsendrequest-expected.txt: Added. >- * media/media-blocked-by-willsendrequest.html: Added. >- >-2011-06-29 Darin Adler <darin@apple.com> >- >- Reviewed by Anders Carlsson. >- >- [WebKit2] Crash loading page that adds/removes frame in DOMContentLoaded/loaded >- https://bugs.webkit.org/show_bug.cgi?id=63483 >- >- * fast/loader/create-frame-in-DOMContentLoaded-expected.txt: Added. >- * fast/loader/create-frame-in-DOMContentLoaded.html: Added. >- >-2011-06-29 Nat Duca <nduca@chromium.org> >- >- [chromium] Unreviewed, mark fast/canvas/webgl/context-lost-restored failing >- https://bugs.webkit.org/show_bug.cgi?id=63643 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-29 Nat Duca <nduca@chromium.org> >- >- [chromium] Unreviewed, mark index-validation-with-resized-buffer as failing. >- https://bugs.webkit.org/show_bug.cgi?id=63638 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-29 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/paragraph-in-preserveNewline.html to dumpAsText >- https://bugs.webkit.org/show_bug.cgi?id=63362 >- >- Converted editing/deleting/paragraph-in-preserveNewline.html to dump-as-markup, >- added doctype, added new baseline, and removed old baselines. >- >- * editing/deleting/paragraph-in-preserveNewline.html: >- * editing/deleting/paragraph-in-preserveNewline-expected.html: Added. >- * platform/chromium-linux/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/chromium-win/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/chromium-win/editing/deleting/paragraph-in-preserveNewline-expected.txt: Removed. >- * platform/gtk/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/mac-leopard/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/mac/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/mac/editing/deleting/paragraph-in-preserveNewline-expected.txt: Removed. >- * platform/qt/editing/deleting/paragraph-in-preserveNewline-expected.png: Removed. >- * platform/qt/editing/deleting/paragraph-in-preserveNewline-expected.txt: Removed. >- >-2011-06-29 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, more chromium test updates. >- >- * platform/chromium-linux/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/chromium-win/svg/foreignObject/text-tref-02-b-expected.png: >- >-2011-06-29 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium test updates. >- >- * platform/chromium-mac-leopard/svg/foreignObject: Added. >- * platform/chromium-mac-leopard/svg/foreignObject/text-tref-02-b-expected.png: Added. >- * platform/chromium-mac-leopard/svg/foreignObject/text-tref-02-b-expected.txt: Added. >- * platform/chromium-mac/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-29 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: REGRESSION Resource revision fails to request content if it was not yet loaded for resource. >- https://bugs.webkit.org/show_bug.cgi?id=63631 >- >- * http/tests/inspector/network/network-request-revision-content-expected.txt: Added. >- * http/tests/inspector/network/network-request-revision-content.html: Added. >- * http/tests/inspector/network/resources/script.js: Added. >- >-2011-06-29 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [Qt][WK2] plugins/document-open.html need new result for wk2 >- https://bugs.webkit.org/show_bug.cgi?id=63633 >- >- * platform/qt-wk2/Skipped: >- * platform/qt-wk2/plugins/document-open-expected.txt: Added. >- >-2011-06-29 Pavel Feldman <pfeldman@google.com> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: tab crash after deleting trailing quote when editing attribute >- https://bugs.webkit.org/show_bug.cgi?id=63544 >- >- * inspector/elements/set-attribute-expected.txt: >- * inspector/elements/set-attribute.html: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, remove erroneous test name from GTK Skipped list. >- >- * platform/gtk/Skipped: >- >-2011-06-29 Mike West <mkwst@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Missing fields in HAR >- https://bugs.webkit.org/show_bug.cgi?id=58127 >- >- Setting correct expectations for the following fields newly added to >- the HAR implementation: >- >- - entry.request.httpVersion >- - entry.request.headersSize >- - entry.request.bodySize >- - entry.response.httpVersion >- - entry.response.headersSize >- - entry.response.bodySize >- - entry.response.content.compression >- >- * http/tests/inspector/network/network-size.html: >- * http/tests/inspector/resource-har-conversion-expected.txt: >- * http/tests/inspector/resource-har-conversion.html: >- * http/tests/inspector/resource-har-headers-expected.txt: Added. >- * http/tests/inspector/resource-har-headers.html: Added. >- * http/tests/inspector/resource-parameters-expected.txt: >- * http/tests/inspector/resources-test.js: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, skip 2 acid tests on GTK due to bug 54119. They were >- failing only in 32-Bits Release though. >- >- * platform/gtk/Skipped: >- >-2011-06-29 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Qt specific results committed in r90007, but fail on Qt-Mac platform >- >- * platform/qt-mac/Skipped: Skip failing tests. >- >-2011-06-29 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Add platform specific expected results for new passing tests. >- >- * platform/qt/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.txt: Added. >- * platform/qt/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added. >- * platform/qt/svg/custom/text-tref-03-b-change-href-dom-expected.txt: Added. >- * platform/qt/svg/custom/text-tref-03-b-change-href-expected.png: Added. >- * platform/qt/svg/custom/text-tref-03-b-change-href-expected.txt: Added. >- * platform/qt/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added. >- * platform/qt/svg/custom/text-tref-03-b-referenced-element-removal-expected.txt: Added. >- * platform/qt/svg/custom/text-tref-03-b-tref-removal-expected.png: Added. >- * platform/qt/svg/custom/text-tref-03-b-tref-removal-expected.txt: Added. >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.txt: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, GTK rebaseline of 2 more tests. >- >- * inspector/console/console-trace-in-eval-expected.txt: >- * platform/gtk/svg/foreignObject/text-tref-02-b-expected.txt: >- >-2011-06-29 Hayato Ito <hayato@chromium.org> >- >- Reviewed by Hajime Morita. >- >- Make a shadow host transfer a focus to the first focusable element in the shadow root when its focus() is called. >- https://bugs.webkit.org/show_bug.cgi?id=62358. >- >- This patch doesn't take an effect on the following elements to keep a compatibility. >- - <input>, <textarea>, <video> and <audio> elements >- We'll address these elements separately after re-targeting focus events >- (bug 61421) is implemented. >- >- A shadow root's <content> is not considered in this patch. >- That should be addressed in another patch. See bug 63522. >- >- * fast/dom/shadow/shadow-host-transfer-focus-expected.txt: Added. >- * fast/dom/shadow/shadow-host-transfer-focus.html: Added. >- >-2011-06-29 Roland Steiner <rolandsteiner@chromium.org> >- >- Unreviewed: last last ruby expectations for WebKit2 Win. >- >- * platform/win-wk2/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win-wk2/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, skip >- http/tests/history/cross-origin-replace-history-object-child.html >- on GTK, due to bug 61937. >- >- * platform/gtk/Skipped: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, GTK rebaseline of 3 svg/custom/linking tests. >- >- * platform/gtk/svg/custom/linking-a-03-b-all-expected.txt: >- * platform/gtk/svg/custom/linking-a-03-b-transform-expected.txt: >- * platform/gtk/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, GTK rebaseline of >- fast/html/details-open-javascript.html >- >- * platform/gtk/fast/html/details-open-javascript-expected.txt: >- >-2011-06-29 Philippe Normand <pnormand@igalia.com> >- >- Unreviewed, skip crashing tests on GTK because of >- https://bugs.webkit.org/show_bug.cgi?id=63611 >- >- * platform/gtk/Skipped: skip 5 editing tests >- >-2011-06-29 Roland Steiner <rolandsteiner@chromium.org> >- >- Unreviewed: update the (hopefully) last ruby expectation stragglers in WebKit2 >- >- * platform/win-wk2/fast/ruby/after-block-doesnt-crash-expected.txt: >- * platform/win-wk2/fast/ruby/after-table-doesnt-crash-expected.txt: >- * platform/win-wk2/fast/ruby/before-block-doesnt-crash-expected.txt: >- * platform/win-wk2/fast/ruby/before-table-doesnt-crash-expected.txt: >- >-2011-06-29 Roland Steiner <rolandsteiner@chromium.org> >- >- Unreviewed: more juggling with ruby expectation files, trying to >- find my way out of the expectations dependency jungle... >- >- * platform/chromium-mac/fast/ruby/after-block-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/after-table-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/before-block-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/before-table-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * platform/chromium-mac/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/after-block-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/after-table-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/before-block-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/before-table-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * platform/chromium-win/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- * platform/win/fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win/fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * platform/win/fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- >-2011-06-29 Darin Adler <darin@apple.com> >- >- Reviewed by Adam Barth. >- >- Consolidate the fast/loader and fast/loading directories >- https://bugs.webkit.org/show_bug.cgi?id=63587 >- >- * fast/loader/resources/subframe-that-removes-itself.html: Copied from LayoutTests/fast/loading/resources/subframe-that-removes-itself.html. >- * fast/loader/subframe-removes-itself-expected.txt: Copied from LayoutTests/fast/loading/subframe-removes-itself-expected.txt. >- * fast/loader/subframe-removes-itself.html: Copied from LayoutTests/fast/loading/subframe-removes-itself.html. >- * fast/loading/resources/subframe-that-removes-itself.html: Removed. >- * fast/loading/subframe-removes-itself-expected.txt: Removed. >- * fast/loading/subframe-removes-itself.html: Removed. >- >- * platform/gtk/Skipped: Updated for new location of test. >- * platform/mac-wk2/Skipped: Ditto. >- * platform/qt-wk2/Skipped: Ditto. >- >-2011-06-28 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGBoolean animation >- https://bugs.webkit.org/show_bug.cgi?id=63529 >- >- Test animation of SVGBoolean. Add the test to the skip list of wk2. >- Convert animate-number-calcMode-discrete-keyTimes to common style, no change >- on the test itself. >- >- * platform/mac-wk2/Skipped: >- * svg/animations/animate-number-calcMode-discrete-keyTimes-expected.txt: >- * svg/animations/animate-number-calcMode-discrete-keyTimes.html: >- * svg/animations/script-tests/svgboolean-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgboolean-animation-1-expected.txt: Added. >- * svg/animations/svgboolean-animation-1.html: Added. >- >-2011-06-28 Ilya Sherman <isherman@chromium.org> >- >- Reviewed by Adam Barth. >- >- form.autocomplete="off" does not work >- https://bugs.webkit.org/show_bug.cgi?id=35823 >- >- * fast/forms/autocomplete-expected.txt: Added. >- * fast/forms/autocomplete.html: Added. >- >-2011-06-28 Roland Steiner <rolandsteiner@chromium.org> >- >- Unreviewed: change URLs in ruby layout tests to lower case in order >- to avoid having to have separate Chromium expectations. >- >- * fast/ruby/after-block-doesnt-crash-expected.txt: >- * fast/ruby/after-block-doesnt-crash.html: >- * fast/ruby/after-table-doesnt-crash-expected.txt: >- * fast/ruby/after-table-doesnt-crash.html: >- * fast/ruby/before-block-doesnt-crash-expected.txt: >- * fast/ruby/before-block-doesnt-crash.html: >- * fast/ruby/before-table-doesnt-crash-expected.txt: >- * fast/ruby/before-table-doesnt-crash.html: >- * fast/ruby/generated-after-counter-doesnt-crash-expected.txt: >- * fast/ruby/generated-after-counter-doesnt-crash.html: >- * fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: >- * fast/ruby/generated-before-and-after-counter-doesnt-crash.html: >- * fast/ruby/generated-before-counter-doesnt-crash-expected.txt: >- * fast/ruby/generated-before-counter-doesnt-crash.html: >- * platform/chromium-mac/fast/ruby/after-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/after-table-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/before-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/ruby/before-table-doesnt-crash-expected.txt: Removed. >- * platform/chromium-win/fast/ruby/after-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-win/fast/ruby/after-table-doesnt-crash-expected.txt: Removed. >- * platform/chromium-win/fast/ruby/before-block-doesnt-crash-expected.txt: Removed. >- * platform/chromium-win/fast/ruby/before-table-doesnt-crash-expected.txt: Removed. >- >-2011-06-28 Roland Steiner <rolandsteiner@chromium.org> >- >- Reviewed by Eric Seidel. >- >- Bug 55930 - (CVE-2011-1440) Incorrect handling of 'display:' property within nested <ruby> tags >- https://bugs.webkit.org/show_bug.cgi?id=55930 >- >- Test that a generated block child + counter within a <ruby> doesn't crash. >- (Test as provided by original reporter). >- >- * fast/ruby/generated-after-counter-doesnt-crash-expected.txt: Added. >- * fast/ruby/generated-after-counter-doesnt-crash.html: Added. >- * fast/ruby/generated-before-and-after-counter-doesnt-crash-expected.txt: Added. >- * fast/ruby/generated-before-and-after-counter-doesnt-crash.html: Added. >- * fast/ruby/generated-before-counter-doesnt-crash-expected.txt: Added. >- * fast/ruby/generated-before-counter-doesnt-crash.html: Added. >- >-2011-06-28 Adam Langley <agl@chromium.org> >- >- Reviewed by Adam Barth. >- >- Skip cache validation on back with HTTPS. >- https://bugs.webkit.org/show_bug.cgi?id=63537 >- >- * http/tests/cache/history-only-cached-subresource-loads-max-age-https-expected.txt: Added. >- * http/tests/cache/history-only-cached-subresource-loads-max-age-https.html: Added. >- * http/tests/cache/resources/max-age-resource-forward.html: Added. >- * http/tests/cache/resources/max-age-resource-next.html: Added. >- * http/tests/cache/resources/max-age-resource.html: Added. >- * http/tests/cache/resources/random-max-age.cgi: Added. >- >-2011-06-27 Diego Gonzalez <diegohcg@webkit.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [Qt] DRT support for setInteractiveFormValidationEnabled >- https://bugs.webkit.org/show_bug.cgi?id=63496 >- >- * platform/qt/Skipped: >- >-2011-06-28 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium test update for r89951. >- >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. >- * platform/chromium-linux/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added. >- * platform/chromium-linux/svg/custom/text-tref-03-b-change-href-expected.png: Added. >- * platform/chromium-linux/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added. >- * platform/chromium-linux/svg/custom/text-tref-03-b-tref-removal-expected.png: Added. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.txt: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-change-href-dom-expected.txt: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-change-href-expected.png: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-change-href-expected.txt: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-referenced-element-removal-expected.txt: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-tref-removal-expected.png: Added. >- * platform/chromium-win/svg/custom/text-tref-03-b-tref-removal-expected.txt: Added. >- >-2011-06-28 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium test update for r89946. >- >- * platform/chromium/fast/regex: Added. >- * platform/chromium/fast/regex/constructor-expected.txt: Added. >- >-2011-06-28 Rob Buis <rbuis@rim.com> >- >- Reviewed by Nikolas Zimmermann. >- >- SVG1.1SE test text-tref-03-b.svg fails >- https://bugs.webkit.org/show_bug.cgi?id=63390 >- >- - text-tref-03-b.svg, the w3c SVG1.1 testcase mentioned in the bug. >- - text-tref-03-b-dynamic.svg, tests dynamically adding the tref. >- - text-tref-03-b-dynamic2.svg, tests dynamically adding the referenced content. >- - text-tref-03-b-tref-removal.svg, tests removal of tref. >- - text-tref-03-b-referenced-element-removal.svg, tests removal of referenced content. >- - text-tref-03-b-change-href.svg, tests changing href attribute dynamically through setAttribute. >- - text-tref-03-b-change-href-dom.svg, tests changing href attribute dynamically through href animated property. >- - foreignObject/text-tref-02-b.svg has improved result, but is still not perfect. >- >- * platform/mac/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.png: Added. >- * platform/mac/svg/W3C-SVG-1.1-SE/text-tref-03-b-expected.txt: Added. >- * platform/mac/svg/custom/text-tref-03-b-change-href-dom-expected.png: Added. >- * platform/mac/svg/custom/text-tref-03-b-change-href-dom-expected.txt: Added. >- * platform/mac/svg/custom/text-tref-03-b-change-href-expected.png: Added. >- * platform/mac/svg/custom/text-tref-03-b-change-href-expected.txt: Added. >- * platform/mac/svg/custom/text-tref-03-b-referenced-element-removal-expected.png: Added. >- * platform/mac/svg/custom/text-tref-03-b-referenced-element-removal-expected.txt: Added. >- * platform/mac/svg/custom/text-tref-03-b-tref-removal-expected.png: Added. >- * platform/mac/svg/custom/text-tref-03-b-tref-removal-expected.txt: Added. >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.txt: >- * svg/W3C-SVG-1.1-SE/text-tref-03-b.svg: Added. >- * svg/custom/text-tref-03-b-change-href-dom.svg: Added. >- * svg/custom/text-tref-03-b-change-href.svg: Added. >- * svg/custom/text-tref-03-b-dynamic-expected.txt: Added. >- * svg/custom/text-tref-03-b-dynamic.svg: Added. >- * svg/custom/text-tref-03-b-dynamic2-expected.txt: Added. >- * svg/custom/text-tref-03-b-dynamic2.svg: Added. >- * svg/custom/text-tref-03-b-referenced-element-removal.svg: Added. >- * svg/custom/text-tref-03-b-tref-removal.svg: Added. >- >-2011-06-28 Greg Simon <gregsimon@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Update migration LayoutTest to include indexes and successful migration. >- https://bugs.webkit.org/show_bug.cgi?id=62780 >- >- * storage/indexeddb/migrate-basics-expected.txt: >- * storage/indexeddb/migrate-basics.html: >- >-2011-06-28 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Oliver Hunt. >- >- https://bugs.webkit.org/show_bug.cgi?id=55040 >- RegExp constructor returns the argument regexp instead of a new object >- >- Per 15.10.3.1, our current behaviour is correct if called as a function, >- but incorrect when called as a constructor. >- >- * fast/regex/constructor-expected.txt: Added. >- * fast/regex/constructor.html: Added. >- * fast/regex/script-tests/constructor.js: Added. >- >-2011-06-28 Jessie Berlin <jberlin@apple.com> >- >- Better Windows rebaseline for the changes in r89864, with pixel results, to get the bots >- green. >- >- * platform/win/fast/text/international/unicode-bidi-plaintext-expected.png: Added. >- * platform/win/fast/text/international/unicode-bidi-plaintext-expected.txt: >- >-2011-06-28 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs to implement undo client (Windows). >- https://bugs.webkit.org/show_bug.cgi?id=58103 >- >- Add another undo test to the win-wk2 skipped list to get the bots green. >- >- * platform/win-wk2/Skipped: >- >-2011-06-28 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Remove some now-passing tests from Chromium's test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-28 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- REGRESSION (r89449): http/tests/inspector/extensions-resources-redirect.html failing on SnowLeopard Intel Release (Tests), Windows 7 Release (Tests), Qt >- https://bugs.webkit.org/show_bug.cgi?id=63178 >- >- * http/tests/inspector/extensions-resources-redirect-expected.txt: >- * platform/mac/http/tests/inspector/extensions-resources-redirect-expected.txt: Removed. >- * platform/qt/Skipped: >- >-2011-06-28 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix the test added by the previous commit. Also add it to the WebKit2's skipped list >- since it uses a eventSender method that hasn't been implemented by TestRunner. >- >- * fast/events/selectstart-prevent-selection-on-right-click.html: >- * platform/mac-wk2/Skipped: >- >-2011-06-28 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Darin Adler. >- >- Add a test for canceling selectstart when a word is selected by right click >- https://bugs.webkit.org/show_bug.cgi?id=63530 >- >- Add a regression now that the bug no longer reproduces. >- >- * fast/events/selectstart-prevent-selection-on-right-click-expected.txt: Added. >- * fast/events/selectstart-prevent-selection-on-right-click.html: Added. >- >-2011-06-28 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Chromium test_expectations update. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-27 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Change the inspector model API and backend to allow CSS pseudoclass inspection >- https://bugs.webkit.org/show_bug.cgi?id=63446 >- >- * inspector/styles/get-set-stylesheet-text.html: >- * inspector/styles/styles-new-API.html: >- * inspector/styles/styles-source-offsets.html: >- >-2011-06-28 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [X11][WK2] X error with plugin tests >- https://bugs.webkit.org/show_bug.cgi?id=63520 >- >- * platform/qt-wk2/Skipped: >- >-2011-06-28 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Hajime Morita. >- >- Verify cloning elements with validation messages works. >- https://bugs.webkit.org/show_bug.cgi?id=61988 >- >- * fast/forms/validation-message-clone-expected.txt: Added. >- * fast/forms/validation-message-clone.html: Added. >- * platform/gtk/Skipped: >- * platform/mac-wk2/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-28 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Hajime Morita. >- >- convert editing/deleting/4845371.html to runDumpAsTextEditingTest >- https://bugs.webkit.org/show_bug.cgi?id=63214 >- >- Renamed editing/deleting/4845371.html to editing/deleting/delete-cell-contents.html >- and converted editing/deleting/delete-cell-contents.html to runDumpAsTextEditingTest; left >- it without a doctype, etc, because they changed functionality of the image test. Also >- added the rdar number. >- >- * editing/deleting/delete-cell-contents-expected.txt: Added. >- * editing/deleting/delete-cell-contents.html: Added. >- * editing/deleting/4845371.html: Removed. >- * platform/chromium-linux/editing/deleting/4845371-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/deleting/4845371-expected.png: Removed. >- * platform/chromium-win/editing/deleting/4845371-expected.png: Removed. >- * platform/chromium-win/editing/deleting/4845371-expected.txt: Removed. >- * platform/gtk/editing/deleting/4845371-expected.png: Removed. >- * platform/gtk/editing/deleting/4845371-expected.txt: Removed. >- * platform/mac-leopard/editing/deleting/4845371-expected.png: Removed. >- * platform/mac/editing/deleting/4845371-expected.png: Removed. >- * platform/mac/editing/deleting/4845371-expected.txt: Removed. >- * platform/qt/editing/deleting/4845371-expected.png: Removed. >- * platform/qt/editing/deleting/4845371-expected.txt: Removed. >- >-2011-06-28 Kentaro Hara <haraken@google.com> >- >- Reviewed by Kent Tamura. >- >- Allow spaces between e-mail addresses in 'email' input type. >- https://bugs.webkit.org/show_bug.cgi?id=55987 >- >- Allowed spaces between e-mail addresses in 'email' input type, >- e.g. ' a@p.com , b@p.com ' is a valid value. Implemented the >- value sanitization algorithm for an e-mail value. Added more unit >- tests that check the e-mail value parser. >- >- * fast/forms/ValidityState-typeMismatch-email-expected.txt: >- * fast/forms/resources/ValidityState-typeMismatch-email.js: >- >-2011-06-28 Csaba Osztrogonác <ossy@webkit.org> >- >- Qt specific results committed in r89901, but some of them fail on Qt-WK2 and/or Qt-Mac platform >- >- * platform/qt-mac/Skipped: Skip failing tests and typo fix. >- * platform/qt-wk2/Skipped: Skip failing tests. >- >-2011-06-28 Yury Semikhatsky <yurys@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: console.group messages should never be coalesced >- https://bugs.webkit.org/show_bug.cgi?id=63521 >- >- * inspector/console/console-nested-group-expected.txt: >- * inspector/console/console-nested-group.html: >- >-2011-06-28 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: added chromium test suppression. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-28 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [X11][WK2] plugins/plugin-javascript-access fails >- https://bugs.webkit.org/show_bug.cgi?id=63464 >- >- * platform/qt-wk2/Skipped: >- >-2011-06-28 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] http/tests/misc/link-rel-icon-beforeload.html is flakey >- https://bugs.webkit.org/show_bug.cgi?id=63518 >- >- * platform/qt/Skipped: Add http/tests/misc/link-rel-icon-beforeload.html until fix. >- >-2011-06-28 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed daily gardening. Add platform specific expected files >- for new passing tests and add failing new tests to the Skipped list. >- >- * platform/qt/Skipped: >- * platform/qt/editing/selection/extend-inside-transforms-backward-expected.png: Added. >- * platform/qt/editing/selection/extend-inside-transforms-backward-expected.txt: Added. >- * platform/qt/editing/selection/extend-inside-transforms-forward-expected.png: Added. >- * platform/qt/editing/selection/extend-inside-transforms-forward-expected.txt: Added. >- * platform/qt/fast/borders/only-one-border-with-width-expected.png: Added. >- * platform/qt/fast/borders/only-one-border-with-width-expected.txt: Added. >- * platform/qt/fast/css/color-leakage-expected.png: Added. >- * platform/qt/fast/css/color-leakage-expected.txt: Added. >- * platform/qt/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png: Added. >- * platform/qt/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Added. >- * platform/qt/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. >- * platform/qt/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. >- * platform/qt/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Added. >- * platform/qt/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Added. >- * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Added. >- * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: Added. >- * platform/qt/svg/custom/invalid-dasharray-expected.png: Added. >- * platform/qt/svg/custom/invalid-dasharray-expected.txt: Added. >- * platform/qt/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/qt/svg/custom/linking-uri-01-b-expected.txt: Added. >- * platform/qt/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/qt/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added. >- * platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/qt/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. >- >-2011-06-28 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Csaba Osztrogonác. >- >- WebKitTestRunner needs layoutTestController.setCallCloseOnWebViews >- https://bugs.webkit.org/show_bug.cgi?id=46714 >- >- Skip these tests via the mac list to make them skipped on every wk2 platform. >- * platform/mac-wk2/Skipped: >- * platform/win-wk2/Skipped: >- >-2011-06-27 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Darin Adler & Oliver Hunt. >- >- https://bugs.webkit.org/show_bug.cgi?id=50554 >- RegExp.prototype.toString does not escape slashes >- >- The problem here is that we don't escape forwards slashes when converting >- a RegExp to a string. This means that RegExp("/").toString() is "///", >- which is not a valid RegExp literal. Also, we return an invalid literal >- for RegExp.prototype.toString() ("//", which is an empty single-line comment). >- >- From ES5: >- "NOTE: The returned String has the form of a RegularExpressionLiteral that >- evaluates to another RegExp object with the same behaviour as this object." >- >- Added test cases. >- >- * fast/regex/script-tests/toString.js: Added. >- (testFwdSlash): >- * fast/regex/toString-expected.txt: Added. >- * fast/regex/toString.html: Added. >- >-2011-06-27 Pavel Feldman <pfeldman@chromium.org> >- >- Not reviewed: chromium baselines update. >- >- * platform/chromium-mac-leopard/fast/text/international/unicode-bidi-plaintext-expected.png: Added. >- >-2011-06-27 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Kent Tamura. >- >- [chromium] editing/style/smoosh-styles-003.html is flaky >- https://bugs.webkit.org/show_bug.cgi?id=63509 >- >- Don't let spellcheck kick in this test because it's nothing to do with spellcheck. >- >- * editing/style/smoosh-styles-003.html: >- >-2011-06-27 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix r89879. >- >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.png: Removed. >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.txt: Removed. >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-expected.png: Copied from LayoutTests/platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.png. >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.txt. >- >-2011-06-27 Levi Weintraub <leviw@chromium.org> >- >- Unreviewed. >- >- Renaming incorrectly named linux test expectation. >- >- * platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-actual.png: Removed. >- * platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-expected.png: Copied >- from LayoutTests/platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-actual.png. >- >-2011-06-27 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/5156801-2.html to dumpAsText and rename >- https://bugs.webkit.org/show_bug.cgi?id=63359 >- >- converted editing/deleting/5156801-2.html to dump-as-markup test, with >- new results. Renamed 5156801.html to delete-node-after-DOMNodeRemoved, >- and 5156801-2.html to delete-table-cell-contents.html; they were only >- noticeably related by their rdar number, which is now included in each. >- >- * editing/deleting/5156801.html: Removed. >- * editing/deleting/5156801-expected.txt: Removed. >- * editing/deleting/5156801-2.html: Removed. >- * editing/deleting/delete-node-after-DOMNodeRemoved.html: Added. >- * editing/deleting/delete-node-after-DOMNodeRemoved-expected.txt: Added. >- * editing/deleting/delete-table-cell-contents.html: Added. >- * editing/deleting/delete-table-cell-contents-expected.txt: Added. >- * platform/chromium-linux/editing/deleting/5156801-2-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5156801-2-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5156801-2-expected.txt: Removed. >- * platform/gtk/editing/deleting/5156801-2-expected.txt: Removed. >- * platform/mac-leopard/editing/deleting/5156801-2-expected.png: Removed. >- * platform/mac/editing/deleting/5156801-2-expected.png: Removed. >- * platform/mac/editing/deleting/5156801-2-expected.txt: Removed. >- * platform/qt/editing/deleting/5156801-2-expected.png: Removed. >- * platform/qt/editing/deleting/5156801-2-expected.txt: Removed. >- >-2011-06-27 Levi Weintraub <leviw@chromium.org> >- >- Unreviewed. >- >- Windows rebaseline for my commit r89864. >- >- * platform/win/fast/text/international/unicode-bidi-plaintext-expected.txt: Added. >- >-2011-06-27 Levi Weintraub <leviw@chromium.org> >- >- Unreviewed. >- >- Chromium rebaselines for my commit r89864 >- >- * platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-actual.png: Added. >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.png: Added. >- * platform/chromium-win/fast/text/international/unicode-bidi-plaintext-actual.txt: Added. >- >-2011-06-27 Joe Wild <joseph.wild@nokia.com> >- >- Reviewed by Simon Fraser. >- >- Crash on www.crave.cnet.com in FrameView::windowClipRect() >- https://bugs.webkit.org/show_bug.cgi?id=56393 >- >- Tests that a plugin of a swf file in a hidden iframe will not >- crash. This test required more than 1 content file and a >- timeout or else it would not repeat the error condition. >- >- This test will only crash on platforms (like Symbian) that >- don't allow nonvirtual functions to have a null this pointer. >- >- * plugins/hidden-iframe-with-swf-plugin-expected.txt: Added. >- * plugins/hidden-iframe-with-swf-plugin.html: Added. >- * plugins/resources/iframe-content-with-swf-plugin.html: Added. >- >-2011-06-27 Adam Barth <abarth@webkit.org> >- >- Reviewed by Eric Seidel. >- >- new-run-webkit-tests should upload crash logs >- https://bugs.webkit.org/show_bug.cgi?id=55907 >- >- * fast/harness/resources/results-test.js: >- * fast/harness/results.html: >- >-2011-06-27 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, Chromium expectations update. >- >- * platform/chromium/fast/js/recursion-limit-equal-expected.txt: Rebaseline after r89842. >- >-2011-06-27 Adam Klein <adamk@chromium.org> >- >- Reviewed by Adam Barth. >- >- Fix filesystem-no-callback-null-ptr-crash.html test to reference proper file api methods >- https://bugs.webkit.org/show_bug.cgi?id=63486 >- >- * fast/filesystem/filesystem-no-callback-null-ptr-crash.html: >- >-2011-06-27 Jay Civelli <jcivelli@chromium.org> >- >- Reviewed by Darin Fisher. >- >- Adding binary part support to MHTML. >- https://bugs.webkit.org/show_bug.cgi?id=63310 >- >- * mhtml/multi_frames_binary.mht: Added. >- * platform/chromium/mhtml/multi_frames_binary-expected.txt: Added. >- >-2011-06-27 Levi Weintraub <leviw@chromium.org> >- >- Reviewed by Eric Seidel. >- >- Add support for unicode-bidi:plaintext CSS property >- https://bugs.webkit.org/show_bug.cgi?id=50949 >- Adding support for the 'plaintext' mode of unicode-bidi. >- >- * fast/text/international/unicode-bidi-plaintext.html: Added. >- * platform/chromium-linux/fast/text/international/unicode-bidi-plaintext-expected.txt: added >- * platform/mac/fast/text/international/unicode-bidi-plaintext-expected.png: Added. >- * platform/mac/fast/text/international/unicode-bidi-plaintext-expected.txt: Added. >- >-2011-06-27 Jessie Berlin <jberlin@apple.com> >- >- Add Windows-specific results for the test added in r89745. >- >- I checked these results with Rob - they are not failing expected results. >- >- * platform/win/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/win/svg/custom/linking-uri-01-b-expected.txt: Added. >- >-2011-06-27 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/whitespace-pre-1.html to dumpAsText >- https://bugs.webkit.org/show_bug.cgi?id=63372 >- >- converted editing/deleting/whitespace-pre-1.html to dump-as-markup, removed >- old baselines, and added the new one. >- >- * editing/deleting/whitespace-pre-1-expected.txt: Added. >- * editing/deleting/whitespace-pre-1.html: >- * platform/chromium-linux/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/chromium-win/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/chromium-win/editing/deleting/whitespace-pre-1-expected.txt: Removed. >- * platform/gtk/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/gtk/editing/deleting/whitespace-pre-1-expected.txt: Removed. >- * platform/mac-leopard/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/mac/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/mac/editing/deleting/whitespace-pre-1-expected.txt: Removed. >- * platform/qt/editing/deleting/whitespace-pre-1-expected.png: Removed. >- * platform/qt/editing/deleting/whitespace-pre-1-expected.txt: Removed. >- >-2011-06-27 Jessie Berlin <jberlin@apple.com> >- >- Add Windows-specific results for the test added in r89769. >- >- I checked these results with Dan - they are not failing expected results. >- >- * platform/win/fast/text/midword-break-before-surrogate-pair-expected.png: Added. >- * platform/win/fast/text/midword-break-before-surrogate-pair-expected.txt: Added. >- >-2011-06-27 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs an implemenation of allowRoundingHacks. >- https://bugs.webkit.org/show_bug.cgi?id=63477 >- >- Add platform/mac/fast/text/rounding-hacks.html to the mac-wk2 skipped list to get the bots >- green. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-27 Abhishek Arya <inferno@chromium.org> >- >- Unreviewed. >- >- Chromium rebaselines for my commit r89836. >- >- * platform/chromium-linux/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Added. >- * platform/chromium-linux/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Added. >- * platform/chromium-linux/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Added. >- * platform/chromium-linux/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Added. >- * platform/chromium-linux/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Added. >- * platform/chromium-linux/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Added. >- * platform/chromium-linux/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Added. >- * platform/chromium-mac-leopard/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Added. >- * platform/chromium-win/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Added. >- * platform/chromium-win/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Added. >- * platform/chromium-win/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt: Added. >- >-2011-06-27 Filip Pizlo <fpizlo@apple.com> >- >- Reviewed by Gavin Barraclough. >- >- The fast/js/recursion-limit-equal test is too fragile >- https://bugs.webkit.org/show_bug.cgi?id=63352 >- >- * fast/js/recursion-limit-equal-expected.txt: >- * fast/js/script-tests/recursion-limit-equal.js: >- >-2011-06-27 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Simon Fraser. >- >- Tests that overhanging floats are removed during style changes to absolute/fixed >- position and gets added back when coming back to static position. >- https://bugs.webkit.org/show_bug.cgi?id=63355 >- >- * fast/block/float/intruding-float-add-in-sibling-block-on-static-position.html: Added. >- * fast/block/float/intruding-float-add-in-sibling-block-on-static-position2.html: Added. >- * fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position.html: Added. >- * fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2.html: Added. >- * fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position.html: Added. >- * fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2.html: Added. >- * fast/block/float/overhanging-float-add-in-static-position-block.html: Added. >- * fast/block/float/overhanging-float-add-in-static-position-block2.html: Added. >- * fast/block/float/overhanging-float-remove-from-absolute-position-block.html: Added. >- * fast/block/float/overhanging-float-remove-from-absolute-position-block2.html: Added. >- * fast/block/float/overhanging-float-remove-from-fixed-position-block.html: Added. >- * fast/block/float/overhanging-float-remove-from-fixed-position-block2.html: Added. >- * platform/mac/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-add-in-sibling-block-on-static-position-expected.txt: Added. >- * platform/mac/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-add-in-sibling-block-on-static-position2-expected.txt: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position-expected.txt: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-absolute-position2-expected.txt: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position-expected.txt: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.png: Added. >- * platform/mac/fast/block/float/intruding-float-remove-from-sibling-block-on-fixed-position2-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-add-in-static-position-block-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-add-in-static-position-block-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-add-in-static-position-block2-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-add-in-static-position-block2-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-absolute-position-block-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-absolute-position-block2-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-fixed-position-block-expected.txt: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.png: Added. >- * platform/mac/fast/block/float/overhanging-float-remove-from-fixed-position-block2-expected.txt: Added. >- >-2011-06-27 Nate Chapin <japhet@chromium.org> >- >- Unreviewed, chromium expectations update. >- >- Add chromium mac failure after r89733. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-27 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGPreserveAspectRatio animation >- https://bugs.webkit.org/show_bug.cgi?id=63456 >- >- Test for animation of SVGPreserveAspectRatio. >- >- * svg/animations/script-tests/svgPreserveAspectRatio-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgPreserveAspectRatio-animation-1-expected.txt: Added. >- * svg/animations/svgPreserveAspectRatio-animation-1.html: Added. >- >-2011-06-27 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Kent Tamura. >- >- Crash in TextIterator >- https://bugs.webkit.org/show_bug.cgi?id=63334 >- >- Added a test to ensure WebKit does not crash when iterating through letters in a RTL block >- with first-letter rule applied where letters are not contiguous. >- >- * editing/text-iterator/first-letter-rtl-crash-expected.txt: Added. >- * editing/text-iterator/first-letter-rtl-crash.html: Added. >- >-2011-06-27 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- WebKitTestRunner needs layoutTestController.setPopupBlockingEnabled >- https://bugs.webkit.org/show_bug.cgi?id=63458 >- >- Put a failing test to the mac list because all wk2 platforms are affected. >- Move the group to the section where the items have bug report. >- * platform/mac-wk2/Skipped: >- * platform/qt-wk2/Skipped: >- >-2011-06-27 Alexandru Chiculita <achicu@adobe.com> >- >- Reviewed by Ojan Vafai. >- >- css combinator "+" in combination with NAV tag is buggy >- https://bugs.webkit.org/show_bug.cgi?id=47971 >- >- * fast/css/div_plus_nav_bug47971-expected.txt: Added. >- * fast/css/div_plus_nav_bug47971.html: Added. >- >-2011-06-27 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89822. >- http://trac.webkit.org/changeset/89822 >- https://bugs.webkit.org/show_bug.cgi?id=63461 >- >- Broken builds (Requested by apavlov on #webkit). >- >- * inspector/styles/get-set-stylesheet-text.html: >- * inspector/styles/styles-new-API.html: >- * inspector/styles/styles-source-offsets.html: >- >-2011-06-27 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Change the inspector model API and backend to allow CSS pseudoclass inspection >- https://bugs.webkit.org/show_bug.cgi?id=63446 >- >- * inspector/styles/get-set-stylesheet-text.html: >- * inspector/styles/styles-new-API.html: >- * inspector/styles/styles-source-offsets.html: >- >-2011-06-27 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: updating chromium expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-27 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] Daily gardening. >- >- Remove non-existent svg/animations/animate-points.html from the Skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-27 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: naive approach to fixing flaky inspector tests. >- >- * inspector/styles/styles-cancel-editing.html: >- * inspector/styles/styles-commit-editing.html: >- >-2011-06-27 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac]REGRESSION?(r89397) It made fast/css/custom-font-xheight.html crash >- https://bugs.webkit.org/show_bug.cgi?id=63132 >- >- * platform/qt-mac/Skipped: Skip fast/css/custom-font-xheight.html. >- >-2011-06-26 Pavel Feldman <pfeldman@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: roll out r88337 for making tests flaky. >- https://bugs.webkit.org/show_bug.cgi?id=63422 >- >- * http/tests/inspector/elements-test.js: >- (initialize_ElementTest.InspectorTest.selectNodeWithId.onNodeFound): >- (initialize_ElementTest.InspectorTest.selectNodeWithId): >- (initialize_ElementTest.InspectorTest.waitForStyles): >- (initialize_ElementTest.InspectorTest.selectNodeAndWaitForStyles.nodeSelected): >- (initialize_ElementTest.InspectorTest.selectNodeAndWaitForStyles.stylesUpdated): >- (initialize_ElementTest.InspectorTest.selectNodeAndWaitForStyles): >- * http/tests/inspector/inspect-iframe-from-different-domain.html: >- * inspector/elements/edit-dom-actions.html: >- * inspector/elements/elements-delete-inline-style.html: >- * inspector/elements/elements-panel-styles.html: >- * inspector/styles/metrics-box-sizing.html: >- * inspector/styles/parse-utf8-bom.html: >- * inspector/styles/styles-add-blank-property.html: >- * inspector/styles/styles-add-invalid-property.html: >- * inspector/styles/styles-cancel-editing.html: >- * inspector/styles/styles-commit-editing.html: >- * inspector/styles/styles-computed-trace.html: >- * inspector/styles/styles-disable-inherited.html: >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-disable-then-delete.html: >- * inspector/styles/styles-disable-then-enable.html: >- * inspector/styles/styles-iframe-expected.txt: >- * inspector/styles/styles-iframe.html: >- * inspector/styles/styles-source-lines-expected.txt: >- * inspector/styles/styles-source-lines-inline.html: >- * inspector/styles/styles-source-lines.html: >- * inspector/styles/styles-update-from-js-expected.txt: >- * inspector/styles/styles-update-from-js.html: >- * inspector/styles/styles-url-linkify.html: >- * inspector/styles/up-down-numerics-and-colors-expected.txt: >- * inspector/styles/up-down-numerics-and-colors.html: >- >-2011-06-27 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] SVG animation pause API missing >- https://bugs.webkit.org/show_bug.cgi?id=63396 >- >- * platform/mac-wk2/Skipped: Skip new tests introduced in r89783. >- >-2011-06-27 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] SVG animation pause API missing >- https://bugs.webkit.org/show_bug.cgi?id=63396 >- >- * platform/mac-wk2/Skipped: Skip a new test. >- >-2011-06-27 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed gardening. Add platform specific expected results after r89745. >- >- * platform/qt/Skipped: Revert accidentally committed (r89732) changes. >- * platform/qt/svg/custom/linking-a-03-b-all-expected.png: >- * platform/qt/svg/custom/linking-a-03-b-all-expected.txt: >- * platform/qt/svg/custom/linking-a-03-b-transform-expected.png: >- * platform/qt/svg/custom/linking-a-03-b-transform-expected.txt: >- * platform/qt/svg/custom/linking-a-03-b-viewBox-transform-expected.png: >- * platform/qt/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: >- >-2011-06-26 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGLengthList animation >- https://bugs.webkit.org/show_bug.cgi?id=63399 >- >- Test animations of attributes with type SVGLengthList. >- >- * svg/animations/script-tests/svglengthlist-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglengthlist-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglengthlist-animation-3.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglengthlist-animation-4.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svglengthlist-animation-1-expected.txt: Added. >- * svg/animations/svglengthlist-animation-1.html: Added. >- * svg/animations/svglengthlist-animation-2-expected.txt: Added. >- * svg/animations/svglengthlist-animation-2.html: Added. >- * svg/animations/svglengthlist-animation-3-expected.txt: Added. >- * svg/animations/svglengthlist-animation-3.html: Added. >- * svg/animations/svglengthlist-animation-4-expected.txt: Added. >- * svg/animations/svglengthlist-animation-4.html: Added. >- >-2011-06-26 Adam Barth <abarth@webkit.org> >- >- Reviewed by Eric Seidel. >- >- window.location should use the holder's prototype chain >- https://bugs.webkit.org/show_bug.cgi?id=63411 >- >- * http/tests/security/location-prototype-expected.txt: Added. >- * http/tests/security/location-prototype.html: Added. >- * http/tests/security/resources/location-prototype-overwrite.html: Added. >- >-2011-06-26 Adam Barth <abarth@webkit.org> >- >- Reviewed by Kent Tamura. >- >- m_formElementsWithFormAttribute doesn't ref the objects it holds >- https://bugs.webkit.org/show_bug.cgi?id=62956 >- >- * fast/forms/form-associated-element-crash3-expected.txt: Added. >- * fast/forms/form-associated-element-crash3.html: Added. >- >-2011-06-26 Adam Barth <abarth@webkit.org> >- >- Baselines for new test. >- >- * platform/chromium-linux/fast/text/midword-break-before-surrogate-pair-expected.png: Added. >- * platform/chromium-linux/fast/text/midword-break-before-surrogate-pair-expected.txt: Added. >- * platform/chromium-win/fast/text/midword-break-before-surrogate-pair-expected.png: Added. >- * platform/chromium-win/fast/text/midword-break-before-surrogate-pair-expected.txt: Added. >- >-2011-06-26 Young Han Lee <joybro@company100.net> >- >- Reviewed by Dirk Schulze. >- >- SVGAnimation - keyTime value 1 never get animated >- https://bugs.webkit.org/show_bug.cgi?id=63230 >- >- According to the SMIL 3.0 specification, the index of the keyTimes should be >- determined under the end-point-exclusive rule (e.g. Given keyTimes(0;0.5;1) >- and t=0.5, the current index of the keyTimes have to be 1 not 0). >- http://www.w3.org/TR/SMIL3/smil-animation.html#animationNS-InterpolationExamplesAdvanced >- >- * svg/animations/animate-number-calcMode-discrete-keyTimes-expected.txt: Added. >- * svg/animations/animate-number-calcMode-discrete-keyTimes.html: Added. >- * svg/animations/script-tests/animate-number-calcMode-discrete-keyTimes.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- >-2011-06-26 Adam Barth <abarth@webkit.org> >- >- Darn. Need BUGWG to make the file parse. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-26 Dan Bernstein <mitz@apple.com> >- >- Reviewed by Darin Adler. >- >- With word-break: break-all, words do not break correctly before a surrogate pair >- https://bugs.webkit.org/show_bug.cgi?id=63401 >- >- * fast/text/midword-break-before-surrogate-pair.html: Added. >- >-2011-06-26 Adam Barth <abarth@webkit.org> >- >- Note that this test ASSERTs on Linux Debug. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-26 Balazs Kelemen <kbalazs@webkit.org> >- >- Unreviewed gardening. >- >- [WK2] SVG animation pause API missing >- https://bugs.webkit.org/show_bug.cgi?id=63396 >- >- Skip new tests that depend on pause API. Put them to the >- mac list that is used by all WebKit2 platforms. >- * platform/mac-wk2/Skipped: >- * platform/qt-wk2/Skipped: >- >-2011-06-26 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGNumberOptionalNumber animation >- https://bugs.webkit.org/show_bug.cgi?id=63397 >- >- Test animation of SVGNumberOptionalNumber values with and without optional number, as well as 'to' and 'by' animations. >- >- * svg/animations/script-tests/svgnumberoptionalnumber-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumberoptionalnumber-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumberoptionalnumber-animation-3.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumberoptionalnumber-animation-4.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgnumberoptionalnumber-animation-1-expected.txt: Added. >- * svg/animations/svgnumberoptionalnumber-animation-1.html: Added. >- * svg/animations/svgnumberoptionalnumber-animation-2-expected.txt: Added. >- * svg/animations/svgnumberoptionalnumber-animation-2.html: Added. >- * svg/animations/svgnumberoptionalnumber-animation-3-expected.txt: Added. >- * svg/animations/svgnumberoptionalnumber-animation-3.html: Added. >- * svg/animations/svgnumberoptionalnumber-animation-4-expected.txt: Added. >- * svg/animations/svgnumberoptionalnumber-animation-4.html: Added. >- >-2011-06-26 Balazs Kelemen <kbalazs@webkit.org> >- >- Unreviewed. Skip failing tests. >- >- [Qt][WK2] svgnumberlist-animation-[1,2] fails since added >- https://bugs.webkit.org/show_bug.cgi?id=63396 >- >- * platform/qt-wk2/Skipped: >- >-2011-06-25 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: new chromium rebaselines. >- >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added. >- * platform/chromium-linux/svg/custom/linking-a-03-b-all-expected.png: >- * platform/chromium-linux/svg/custom/linking-a-03-b-transform-expected.png: >- * platform/chromium-linux/svg/custom/linking-a-03-b-viewBox-transform-expected.png: >- * platform/chromium-linux/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/chromium-linux/svg/custom/linking-uri-01-b-expected.txt: Added. >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. >- * platform/chromium-mac/svg/custom/linking-a-03-b-all-expected.png: >- * platform/chromium-mac/svg/custom/linking-a-03-b-transform-expected.png: >- * platform/chromium-mac/svg/custom/linking-a-03-b-viewBox-transform-expected.png: >- * platform/chromium-mac/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added. >- * platform/chromium-win/svg/custom/linking-a-03-b-all-expected.png: >- * platform/chromium-win/svg/custom/linking-a-03-b-all-expected.txt: >- * platform/chromium-win/svg/custom/linking-a-03-b-transform-expected.png: >- * platform/chromium-win/svg/custom/linking-a-03-b-transform-expected.txt: >- * platform/chromium-win/svg/custom/linking-a-03-b-viewBox-transform-expected.png: >- * platform/chromium-win/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: >- * platform/chromium-win/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/chromium-win/svg/custom/linking-uri-01-b-expected.txt: Added. >- >-2011-06-25 Dimitri Glazkov <dglazkov@chromium.org> >- >- Reviewed by Adam Barth. >- >- Crash in frameless document with media element. >- https://bugs.webkit.org/show_bug.cgi?id=63393 >- >- * fast/dom/shadow/frameless-media-element-crash.html: Added. >- * fast/dom/shadow/frameless-media-element-crash-expected.txt: Added. >- >-2011-06-25 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatedType should support SVGNumberList animation >- https://bugs.webkit.org/show_bug.cgi?id=63387 >- >- Test animation of attributes with type SVGNumberList. >- >- * svg/animations/script-tests/svgnumberlist-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumberlist-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgnumberlist-animation-1-expected.txt: Added. >- * svg/animations/svgnumberlist-animation-1.html: Added. >- * svg/animations/svgnumberlist-animation-2-expected.txt: Added. >- * svg/animations/svgnumberlist-animation-2.html: Added. >- >-2011-06-25 Balazs Kelemen <kbalazs@webkit.org> >- >- Unreviewed. Gardening. >- Skip css3/flexbox tests on Qt since ENABLE(CSS3_FLEXBOX) is disabled. >- >- * platform/qt/Skipped: >- >-2011-06-25 Rob Buis <rbuis@rim.com> >- >- Reviewed by Nikolas Zimmermann. >- >- SVG1.1SE test linking-uri-01-b.svg fails >- https://bugs.webkit.org/show_bug.cgi?id=63322 >- >- Add a test for navigating to an inner <view> anchor. The changed test results >- are improvements. >- >- * platform/mac/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.png: Added. >- * platform/mac/svg/W3C-SVG-1.1-SE/linking-uri-01-b-expected.txt: Added. >- * platform/mac/svg/custom/linking-a-03-b-all-expected.png: >- * platform/mac/svg/custom/linking-a-03-b-all-expected.txt: >- * platform/mac/svg/custom/linking-a-03-b-transform-expected.png: >- * platform/mac/svg/custom/linking-a-03-b-transform-expected.txt: >- * platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.png: >- * platform/mac/svg/custom/linking-a-03-b-viewBox-transform-expected.txt: >- * platform/mac/svg/custom/linking-uri-01-b-expected.png: Added. >- * platform/mac/svg/custom/linking-uri-01-b-expected.txt: Added. >- * svg/W3C-SVG-1.1-SE/linking-uri-01-b.svg: Added. >- * svg/custom/linking-uri-01-b.svg: Added. >- >-2011-06-25 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Update expectations after r89732. >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- * platform/chromium-win-vista/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Removed. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-24 Dimitri Glazkov <dglazkov@chromium.org> >- >- Reviewed by Darin Adler. >- >- REGRESSION (r77740): Shadow DOM pseudo elements aren't matching when combined with descendant selectors >- https://bugs.webkit.org/show_bug.cgi?id=63373 >- >- * fast/css/unknown-pseudo-element-matching-expected.txt: Updated results. >- * fast/css/unknown-pseudo-element-matching.html: Added more tests. >- >-2011-06-25 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: chromium rebaselines. >- >- * platform/chromium-linux/svg/custom/svg-fonts-fallback-expected.png: Added. >- * platform/chromium-linux/svg/custom/svg-fonts-fallback-expected.txt: Added. >- * platform/chromium-linux/svg/custom/svg-fonts-segmented-expected.png: Added. >- * platform/chromium-linux/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/chromium-linux/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/chromium-mac-leopard/svg/custom/svg-fonts-fallback-expected.png: Added. >- * platform/chromium-mac-leopard/svg/custom/svg-fonts-without-missing-glyph-expected.png: Added. >- * platform/chromium-mac-leopard/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/chromium-mac-leopard/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/chromium-mac/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/chromium-win/svg/custom/svg-fonts-fallback-expected.png: Added. >- * platform/chromium-win/svg/custom/svg-fonts-fallback-expected.txt: Added. >- * platform/chromium-win/svg/custom/svg-fonts-segmented-expected.png: Added. >- * platform/chromium-win/svg/custom/svg-fonts-segmented-expected.txt: Added. >- * platform/chromium-win/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/chromium-win/svg/custom/svg-fonts-word-spacing-expected.txt: Added. >- * platform/chromium-win/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/chromium-win/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- Update gtk baseline. The rebaselines should be done now. >- >- * platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/batik/text/textEffect-expected.txt: >- * platform/gtk/svg/batik/text/textEffect3-expected.txt: >- * platform/gtk/svg/batik/text/xmlSpace-expected.txt: >- * platform/gtk/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/gtk/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/gtk/svg/text/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/text/text-text-04-t-expected.txt: >- * platform/gtk/svg/text/text-text-05-t-expected.txt: >- * platform/gtk/svg/text/text-text-06-t-expected.txt: >- * platform/gtk/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/gtk/svg/wicd/test-rightsizing-b-expected.txt: >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- Update win baseline. >- >- * platform/win-wk2/Skipped: Skip newly added svg/text test just like in mac-wk2. >- * platform/win-xp/svg/custom: Added. >- * platform/win-xp/svg/custom/svg-fonts-fallback-expected.txt: Added. XP has different metrics here. >- * platform/win/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.txt: Update result from Win7 slave. >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- Skip svg/text/select-text-svgfont.html on mac-wk2, just like the other svg/text tests. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. Gardening. >- >- http/tests/inspector/network/network-iframe-load-and-delete.html fails on Leopard >- https://bugs.webkit.org/show_bug.cgi?id=63379 >- >- http/tests/navigation/anchor-basic.html fails on Leopard >- https://bugs.webkit.org/show_bug.cgi?id=63380 >- >- Skip last two tests that kept Leopard red, should turn green again now. >- >- * platform/mac-leopard/Skipped: >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. Gardening. >- >- REGRESSION (r89305-r89312): webarchive/loading/mainresource-null-mimetype-crash.html failing on Leopard/SnowLeopard release >- https://bugs.webkit.org/show_bug.cgi?id=63169 >- >- Skip failing test for mac, to turn bots green again. >- >- * platform/mac/Skipped: >- >-2011-06-25 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Not reviewed. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- Update a stale Leopard result. >- >- * platform/mac-leopard/svg/foreignObject/text-tref-02-b-expected.txt: >- >-2011-06-24 Dan Bernstein <mitz@apple.com> >- >- Reviewed by Anders Carlsson. >- >- Add an option to enable legacy rounding hacks >- https://bugs.webkit.org/show_bug.cgi?id=63363 >- >- * platform/mac/fast/text/rounding-hacks.html: Added. >- * platform/mac/platform/mac/fast/text/rounding-hacks-expected.png: Added. >- * platform/mac/platform/mac/fast/text/rounding-hacks-expected.txt: Added. >- >-2011-06-24 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Reviewed by Rob Buis. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- font substitution doesn't work for HTML text using SVG fonts >- https://bugs.webkit.org/show_bug.cgi?id=17608 >- >- Selection rects are wrong for text with SVG fonts >- https://bugs.webkit.org/show_bug.cgi?id=25460 >- >- With @font-face, SVG fonts only work as primary, non-segmented >- https://bugs.webkit.org/show_bug.cgi?id=32227 >- >- When using SVG fonts with @font-face word-spacing and text-align: justify are not being honored >- https://bugs.webkit.org/show_bug.cgi?id=34236 >- >- SVG @font-face breaks text-overflow: ellipsis >- https://bugs.webkit.org/show_bug.cgi?id=36840 >- >- REGRESSION: SVG Font selection problems >- https://bugs.webkit.org/show_bug.cgi?id=41934 >- >- Rewrite the SVG Fonts support to fully integrate within the GlyphPage concept and the "simple" code path used to render platform fonts. >- That means the special logic for measuring text using SVG Fonts, calculating offset for positions, computing selection rects etc. is all gone now. >- There's no difference anymore between using a native font or a SVG Font, in terms of these operations. >- >- Update SVG pixel test baseline. Use all results that have been checked in when I landed the patch the last time. >- >- * platform/chromium/test_expectations.txt: >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/batik/text/textEffect-expected.png: >- * platform/mac/svg/batik/text/textEffect-expected.txt: >- * platform/mac/svg/batik/text/textEffect3-expected.png: >- * platform/mac/svg/batik/text/textEffect3-expected.txt: >- * platform/mac/svg/batik/text/xmlSpace-expected.png: >- * platform/mac/svg/batik/text/xmlSpace-expected.txt: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.png: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/mac/svg/custom/svg-fonts-fallback-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-fallback-expected.txt: Added. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.txt: Added. >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png: >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.png: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.txt: Added. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/mac/svg/text/text-altglyph-01-b-expected.png: >- * platform/mac/svg/text/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added. >- * platform/mac/svg/text/text-text-04-t-expected.png: >- * platform/mac/svg/text/text-text-04-t-expected.txt: >- * platform/mac/svg/text/text-text-05-t-expected.png: >- * platform/mac/svg/text/text-text-05-t-expected.txt: >- * platform/mac/svg/text/text-text-06-t-expected.png: >- * platform/mac/svg/text/text-text-06-t-expected.txt: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.png: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.txt: >- * platform/qt-mac/Skipped: >- * platform/qt-wk2/Skipped: >- * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: >- * platform/qt-wk2/fast/dom/Window/window-property-descriptors-expected.txt: >- * platform/qt-wk2/fast/dom/prototype-inheritance-2-expected.txt: >- * platform/qt/Skipped: >- * platform/qt/fast/dom/Window/window-properties-expected.png: Added. >- * platform/qt/fast/dom/Window/window-properties-expected.txt: >- * platform/qt/fast/dom/Window/window-property-descriptors-expected.png: Added. >- * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: >- * platform/qt/fast/dom/prototype-inheritance-2-expected.png: Added. >- * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: >- * platform/qt/fast/dom/prototype-inheritance-expected.png: Added. >- * platform/qt/fast/dom/prototype-inheritance-expected.txt: >- * platform/qt/fast/js/global-constructors-expected.png: Added. >- * platform/qt/fast/js/global-constructors-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: >- * platform/qt/svg/custom/glyph-transformation-with-hkern-expected.png: Added. >- * platform/qt/svg/custom/glyph-transformation-with-hkern-expected.txt: Added. >- * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: >- * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: >- * platform/qt/svg/custom/svg-features-expected.png: Added. >- * platform/qt/svg/custom/svg-features-expected.txt: Added. >- * platform/qt/svg/custom/svg-fonts-in-html-expected.png: >- * platform/qt/svg/custom/svg-fonts-in-html-expected.txt: >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/qt/svg/wicd/test-rightsizing-b-expected.png: >- * platform/qt/svg/wicd/test-rightsizing-b-expected.txt: >- * svg/custom/resources/ABCFont.svg: >- * svg/custom/svg-fonts-fallback.xhtml: Added. >- * svg/custom/svg-fonts-segmented.xhtml: Added. >- * svg/custom/svg-fonts-word-spacing.html: Added. >- * svg/text/select-text-svgfont-expected.txt: Added. >- * svg/text/select-text-svgfont.html: Added. >- * svg/text/text-overflow-ellipsis-svgfont.html: Added. >- >-2011-06-24 Tony Chang <tony@chromium.org> >- >- Reviewed by Ojan Vafai. >- >- add flexbox and inline-flexbox as possible CSS display values >- https://bugs.webkit.org/show_bug.cgi?id=63361 >- >- * css3/flexbox/display-property-expected.txt: Added. >- * css3/flexbox/display-property.html: Added. >- * css3/flexbox/script-tests/display-property.js: Added. >- (testFlex): >- >-2011-06-24 Adrienne Walker <enne@google.com> >- >- Reviewed by Simon Fraser. >- >- REGRESSION (r89687): 5 compositing/rtl tests failing on Windows 7 Release (Tests) >- https://bugs.webkit.org/show_bug.cgi?id=63343 >- >- These tests were failing since they were introduced in r89687. The >- layerTreeAsText dump on the iframe document was causing the outer >- layerTreeAsText dump to be affected by font metrics. Fixed in this >- case by not putting layerTreeAsText output in an element when inside >- an iframe. >- >- * compositing/rtl/rtl-absolute-overflow-scrolled.html: >- * compositing/rtl/rtl-absolute-overflow.html: >- * compositing/rtl/rtl-absolute.html: >- * compositing/rtl/rtl-fixed-overflow-scrolled.html: >- * compositing/rtl/rtl-fixed-overflow.html: >- * compositing/rtl/rtl-fixed.html: >- * compositing/rtl/rtl-iframe-absolute-expected.txt: >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: >- * compositing/rtl/rtl-iframe-fixed-expected.txt: >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: >- * compositing/rtl/rtl-iframe-relative-expected.txt: >- * compositing/rtl/rtl-relative.html: >- >-2011-06-24 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Darin Adler. >- >- Tests that font size for svg text zoom is clamped and we do not >- crash on ASSERT(isfinite(s)) in FontDescription.h >- https://bugs.webkit.org/show_bug.cgi?id=53449 >- >- * svg/text/svg-zoom-large-value-expected.txt: Added. >- * svg/text/svg-zoom-large-value.xhtml: Added. >- >-2011-06-24 Dominic Cooney <dominicc@chromium.org> >- >- Unreviewed: Skipping failing progress-clone.html on win. >- >- r89682 unskipped fast/dom/HTMLProgressElement/progress-clone.html >- on win, but it should stay skipped because there is no progress >- element on win (bug 49769) >- >- * platform/win/Skipped: >- >-2011-06-24 Jessie Berlin <jberlin@apple.com> >- >- fast/css/font-face-in-shadow-DOM.html is flaky on Chromium, failing on Win XP Debug. >- https://bugs.webkit.org/show_bug.cgi?id=63115 >- >- Better solution: this test appears to give different results depending on what other test >- is run before it, so just disable it. >- >- * fast/css/font-face-in-shadow-DOM.html: Removed. >- * fast/css/font-face-in-shadow-DOM.html-disabled: Copied from fast/css/font-face-in-shadow-DOM.html. >- * platform/win-xp/fast/css: Removed. >- * platform/win-xp/fast/css/font-face-in-shadow-DOM-expected.txt: Removed. >- >-2011-06-24 Adrienne Walker <enne@google.com> >- >- Reviewed by Simon Fraser. >- >- Incorrect RenderLayer transforms on overflow RTL pages >- https://bugs.webkit.org/show_bug.cgi?id=60741 >- >- Add a number of composited positioning tests on pages with dir=rtl. >- The reference images are all identical to what the non-composited path >- generates. >- >- The overflow-scrolled tests on Safari do not generate the right images >- due to bug 63284, but the layer tree is correct so they are not >- skipped. >- >- * compositing/rtl/rtl-absolute-expected.png: Added. >- * compositing/rtl/rtl-absolute-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-expected.png: Added. >- * compositing/rtl/rtl-absolute-overflow-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-absolute-overflow.html: Added. >- * compositing/rtl/rtl-absolute.html: Added. >- * compositing/rtl/rtl-fixed-expected.png: Added. >- * compositing/rtl/rtl-fixed-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-expected.png: Added. >- * compositing/rtl/rtl-fixed-overflow-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-fixed-overflow.html: Added. >- * compositing/rtl/rtl-fixed.html: Added. >- * compositing/rtl/rtl-iframe-absolute-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow.html: Added. >- * compositing/rtl/rtl-iframe-absolute.html: Added. >- * compositing/rtl/rtl-iframe-fixed-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow.html: Added. >- * compositing/rtl/rtl-iframe-fixed.html: Added. >- * compositing/rtl/rtl-iframe-relative-expected.png: Added. >- * compositing/rtl/rtl-iframe-relative-expected.txt: Added. >- * compositing/rtl/rtl-iframe-relative.html: Added. >- * compositing/rtl/rtl-relative-expected.png: Added. >- * compositing/rtl/rtl-relative-expected.txt: Added. >- * compositing/rtl/rtl-relative.html: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/mac/Skipped: >- >-2011-06-24 Jessie Berlin <jberlin@apple.com> >- >- fast/css/font-face-in-shadow-DOM.html is flaky on Chromium, failing on Win XP Debug. >- https://bugs.webkit.org/show_bug.cgi?id=63115 >- >- Add expected (failing?) results for win-xp to get the bots green. >- >- * platform/win-xp/fast/css: Added. >- * platform/win-xp/fast/css/font-face-in-shadow-DOM-expected.txt: Added. >- >-2011-06-24 Matthew Delaney <mdelaney@apple.com> >- >- Fixing burning trees from change to tests in https://bugs.webkit.org/show_bug.cgi?id=63327 >- Adding new platform specific results since the new layout in the tests changes the render tree spew. >- Pixel tests are still good. >- >- * platform/mac/transforms/3d/point-mapping/3d-point-mapping-expected.txt: >- * platform/mac/transforms/3d/point-mapping/3d-point-mapping-preserve-3d-expected.txt: >- >-2011-06-24 Dominic Cooney <dominicc@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Convert shadow DOM-related tests to use window.internals >- https://bugs.webkit.org/show_bug.cgi?id=61671 >- >- Update tests to use internals.{ensureShadowRoot, shadowRoot, >- shadowPseudoId, removeShadowRoot} instead of layoutTestController. >- >- * fast/dom/HTMLKeygenElement/keygen-expected.txt: >- * fast/dom/HTMLKeygenElement/keygen.html: >- * fast/dom/HTMLMeterElement/meter-clone-expected.txt: >- * fast/dom/HTMLMeterElement/meter-clone.html: >- * fast/dom/HTMLProgressElement/progress-clone-expected.txt: >- * fast/dom/HTMLProgressElement/progress-clone.html: >- * fast/dom/shadow/activeelement-should-be-shadowhost.html: >- * fast/dom/shadow/create-content-element.html: >- * fast/dom/shadow/gc-shadow-expected.txt: >- * fast/dom/shadow/gc-shadow.html: >- * fast/dom/shadow/layout-tests-can-access-shadow-expected.txt: shadowRoot of non-element throws now, so verify new behavior. >- * fast/dom/shadow/layout-tests-can-access-shadow.html: >- * fast/dom/shadow/nodetype.html: >- * fast/dom/shadow/tab-order-iframe-and-shadow.html: >- * fast/events/shadow-boundary-crossing.html: >- * fast/forms/resources/common.js: >- (getValidationMessageBubbleNode): >- * fast/html/clone-keygen-expected.txt: >- * fast/html/clone-keygen.html: >- * fast/html/clone-range-expected.txt: >- * fast/html/clone-range.html: >- * fast/html/details-clone.html: >- * fullscreen/video-controls-override-expected.txt: >- * fullscreen/video-controls-override.html: >- * media/audio-controls-do-not-fade-out.html: >- * media/media-controls.js: >- (mediaControlsButtonCoordinates): >- * media/video-controls-in-media-document.html: >- * platform/win/Skipped: shadowRoot and friends now available on win. >- >-2011-06-24 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by Simon Fraser. >- >- Change transforms/3d/point-mapping/3d-point-mapping{,-preserve-3d}.html to absolutely position divs >- https://bugs.webkit.org/show_bug.cgi?id=63327 >- >- * transforms/3d/point-mapping/3d-point-mapping-preserve-3d.html: >- * transforms/3d/point-mapping/3d-point-mapping.html: >- >-2011-06-24 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89457-r89462): fast/forms/textfield-overflow.html failing on SnowLeopard Intel >- Release (WebKit2 Tests) >- https://bugs.webkit.org/show_bug.cgi?id=63328 >- >- Add win-wk2 expected results that match the mac, but not mac-wk2, results so that the test >- does not start failing on win-wk2. >- >- * platform/win-wk2/fast/forms: Added. >- * platform/win-wk2/fast/forms/textfield-overflow-expected.txt: Added. >- >-2011-06-24 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89457-r89462): fast/forms/textfield-overflow.html failing on SnowLeopard Intel >- Release (WebKit2 Tests) >- https://bugs.webkit.org/show_bug.cgi?id=63328 >- >- Add (failing?) expected results for mac-wk2 to get the bots green. >- >- * platform/mac-wk2/fast/forms/textfield-overflow-expected.txt: Added. >- >-2011-06-24 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Alexey Proskuryakov. >- >- Exit immediately if the last condition tested fails. >- >- Make <video> app cache test exit immediately on failure >- https://bugs.webkit.org/show_bug.cgi?id=63323 >- >-2011-06-24 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89657): http/tests/inspector/extensions-headers.html, >- http/tests/inspector/extensions-resources-redirect.html timing out on SnowLeopard Intel >- Release (WebKit2 Tests). >- https://bugs.webkit.org/show_bug.cgi?id=63325 >- >- Skip those tests to get the bots green. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-24 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] fast/frames/iframe-plugin-load-remove-document-crash.html crashes >- https://bugs.webkit.org/show_bug.cgi?id=63321 >- >- * platform/qt-wk2/Skipped: Skip fast/frames/iframe-plugin-load-remove-document-crash.html until fix. >- >-2011-06-24 Balazs Kelemen <kbalazs@webkit.org> >- >- Unreviewed. >- Remove non-existent items from the qt-wk2 skipped list. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-24 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Clean up some tests for search cancel buttons. >- https://bugs.webkit.org/show_bug.cgi?id=63121 >- >- - Introduce a function to retrieve a reliable position of a search >- cancel button. >- - Convert two tests to dumpAsText(). >- >- * fast/forms/resources/common.js: >- (searchCancelButtonPosition): Added. >- * fast/forms/search-abs-pos-cancel-button.html: Use searchCancelButtonPosition(). >- * fast/forms/search-cancel-button-mouseup.html: Use searchCancelButtonPosition(). >- * fast/forms/search-transformed-expected.txt: Added. >- * fast/forms/search-transformed.html: >- - Use searchCancelButtonPosition(). >- - Convert to dumpAsText(). >- * fast/forms/search-zoomed-expected.txt: Added. >- * fast/forms/search-zoomed.html: >- - Use searchCancelButtonPosition(). >- - Convert to dumpAsText(). >- * platform/chromium/test_expectation.txt: >- search-transformed.html should pass. >- * platform/chromium-linux/fast/forms/search-zoomed-expected.png: Removed. >- * platform/chromium-mac-leopard/fast/forms/search-transformed-expected.png: Removed. >- * platform/chromium-mac-leopard/fast/forms/search-zoomed-expected.png: Removed. >- * platform/chromium-mac/fast/forms/search-transformed-expected.png: Removed. >- * platform/chromium-win/fast/forms/search-zoomed-expected.png: Removed. >- * platform/chromium-win/fast/forms/search-zoomed-expected.txt: Removed. >- * platform/gtk/fast/forms/search-transformed-expected.png: Removed. >- * platform/gtk/fast/forms/search-transformed-expected.txt: Removed. >- * platform/gtk/fast/forms/search-zoomed-expected.png: Removed. >- * platform/gtk/fast/forms/search-zoomed-expected.txt: Removed. >- * platform/mac-leopard/fast/forms/search-zoomed-expected.png: Removed. >- * platform/mac/fast/forms/search-transformed-expected.png: Removed. >- * platform/mac/fast/forms/search-transformed-expected.txt: Removed. >- * platform/mac/fast/forms/search-zoomed-expected.png: Removed. >- * platform/mac/fast/forms/search-zoomed-expected.txt: Removed. >- * platform/qt/fast/forms/search-transformed-expected.txt: Removed. >- * platform/qt/fast/forms/search-zoomed-expected.txt: Removed. >- >-2011-06-24 Kent Tamura <tkent@chromium.org> >- >- Remove an JavaScript error in media-controls-clone.html. >- https://bugs.webkit.org/show_bug.cgi?id=63195 >- >- * media/media-controls-clone.html: Remove run() call. >- * platform/chromium-mac/media/media-controls-clone-expected.txt: Remove an error message. >- * platform/chromium-win/media/media-controls-clone-expected.txt: ditto. >- * platform/mac/media/media-controls-clone-expected.txt: ditto. >- * platform/win/media/media-controls-clone-expected.txt: ditto. >- >-2011-06-24 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: uncommenting chromium devtools tests. >- >- * platform/chromium/inspector/timeline/timeline-layout-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-24 Mario Sanchez Prada <msanchez@igalia.com> >- >- Reviewed by Chris Fleizach. >- >- [GTK] Consider rows being ignored when adding children to tables >- https://bugs.webkit.org/show_bug.cgi?id=62718 >- >- Unskip accessibility test that will be passing from now on. >- >- * platform/gtk/Skipped: Unskipped passing test. >- >-2011-06-24 Andrey Kosyakov <caseq@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: extension panel iframes do not span entire panel client area >- https://bugs.webkit.org/show_bug.cgi?id=63165 >- >- * http/tests/inspector/extensions-test.js: >- (initialize_ExtensionsTest.InspectorTest.showPanel): >- (): >- * http/tests/inspector/inspector-test.js: >- (): >- * http/tests/inspector/resources/extension-main.html: >- * http/tests/inspector/resources/extension-main.js: >- (dumpObject): >- (dumpArray): >- (evaluateOnFrontend.callbackWrapper): >- (evaluateOnFrontend): >- (): >- * http/tests/inspector/resources/extension-panel.html: >- * inspector/extensions/extensions-events.html: >- * inspector/extensions/extensions-expected.txt: >- * inspector/extensions/extensions.html: >- >-2011-06-24 Andrey Kosyakov <caseq@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: [refactoring] extension tests: replace dispatchOnFrontend with a more generic evaluateOnFrontend() >- https://bugs.webkit.org/show_bug.cgi?id=63160 >- >- * http/tests/inspector/extensions-test.js: >- (initialize_ExtensionsTest.InspectorTest._replyToExtension): >- (initialize_ExtensionsTest): >- * http/tests/inspector/resources/extension-main.html: >- * http/tests/inspector/resources/extension-main.js: >- (onError): >- (onTestsDone): >- * inspector/extensions/extensions-audits-tests.js: >- (extension_runAudits): >- (initialize_ExtensionsAuditsTest.InspectorTest.startExtensionAudits.onAuditsDone): >- (initialize_ExtensionsAuditsTest.InspectorTest.startExtensionAudits): >- (initialize_ExtensionsAuditsTest): >- * inspector/extensions/extensions-events.html: >- * inspector/extensions/extensions.html: >- >-2011-06-23 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Dan Bernstein. >- >- Need to turn off default animations for anchorPointZ in PlatformCALayer >- https://bugs.webkit.org/show_bug.cgi?id=63159 >- >- Test that changes transform-origin-z and relies on the pixel result >- to determine if it's animating. >- >- * transforms/3d/general/transform-origin-z-change-expected.png: Added. >- * transforms/3d/general/transform-origin-z-change-expected.txt: Added. >- * transforms/3d/general/transform-origin-z-change.html: Added. >- >-2011-06-20 MORITA Hajime <morrita@google.com> >- >- Reviewed by Dimitri Glazkov. >- >- [ShadowContentElement] should layout child whitespace between span. >- https://bugs.webkit.org/show_bug.cgi?id=62202 >- >- - Added a new test case. >- - Updated expectations, which missed necessary RnederText objects. >- >- * platform/chromium-win/fast/html/details-add-child-2-expected.txt: >- * platform/chromium-win/fast/html/details-add-details-child-2-expected.txt: >- * platform/chromium-win/fast/html/details-no-summary4-expected.txt: >- * platform/chromium-win/fast/html/details-open-javascript-expected.txt: >- * platform/chromium-win/fast/html/details-open2-expected.txt: >- * platform/chromium-win/fast/html/details-open4-expected.txt: >- * platform/chromium-win/fast/html/details-remove-child-2-expected.txt: >- * platform/chromium-win/fast/html/details-replace-text-expected.txt: >- * platform/gtk/fast/html/details-add-child-2-expected.txt: >- * platform/gtk/fast/html/details-add-details-child-2-expected.txt: >- * platform/gtk/fast/html/details-no-summary4-expected.txt: >- * platform/gtk/fast/html/details-open-javascript-expected.txt: >- * platform/gtk/fast/html/details-open2-expected.txt: >- * platform/gtk/fast/html/details-open4-expected.txt: >- * platform/gtk/fast/html/details-remove-child-2-expected.txt: >- * platform/gtk/fast/html/details-replace-text-expected.txt: >- * platform/mac/fast/html/details-add-child-2-expected.txt: >- * platform/mac/fast/html/details-add-details-child-2-expected.txt: >- * platform/mac/fast/html/details-no-summary4-expected.txt: >- * platform/mac/fast/html/details-open-javascript-expected.txt: >- * platform/mac/fast/html/details-open2-expected.txt: >- * platform/mac/fast/html/details-open4-expected.txt: >- * platform/mac/fast/html/details-remove-child-2-expected.txt: >- * platform/mac/fast/html/details-replace-text-expected.txt: >- * platform/qt/fast/html/details-add-child-2-expected.txt: >- * platform/qt/fast/html/details-add-details-child-2-expected.txt: >- * platform/qt/fast/html/details-no-summary4-expected.txt: >- * platform/qt/fast/html/details-open-javascript-expected.txt: >- * platform/qt/fast/html/details-open2-expected.txt: >- * platform/qt/fast/html/details-open4-expected.txt: >- * platform/qt/fast/html/details-remove-child-2-expected.txt: >- * platform/qt/fast/html/details-replace-text-expected.txt: >- * fast/dom/shadow/create-content-element-expected.txt: Added. >- * fast/dom/shadow/create-content-element.html: Added. >- >-2011-06-23 Adrienne Walker <enne@google.com> >- >- Unreviewed, rolling out r89632 and r89640. >- http://trac.webkit.org/changeset/89632 >- http://trac.webkit.org/changeset/89640 >- https://bugs.webkit.org/show_bug.cgi?id=60741 >- >- Breaks ancestor-overflow-change unexpectedly >- >- * compositing/rtl/rtl-absolute-expected.png: Removed. >- * compositing/rtl/rtl-absolute-expected.txt: Removed. >- * compositing/rtl/rtl-absolute-overflow-expected.png: Removed. >- * compositing/rtl/rtl-absolute-overflow-expected.txt: Removed. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.png: Removed. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.txt: Removed. >- * compositing/rtl/rtl-absolute-overflow-scrolled.html: Removed. >- * compositing/rtl/rtl-absolute-overflow.html: Removed. >- * compositing/rtl/rtl-absolute.html: Removed. >- * compositing/rtl/rtl-fixed-expected.png: Removed. >- * compositing/rtl/rtl-fixed-expected.txt: Removed. >- * compositing/rtl/rtl-fixed-overflow-expected.png: Removed. >- * compositing/rtl/rtl-fixed-overflow-expected.txt: Removed. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Removed. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Removed. >- * compositing/rtl/rtl-fixed-overflow-scrolled.html: Removed. >- * compositing/rtl/rtl-fixed-overflow.html: Removed. >- * compositing/rtl/rtl-fixed.html: Removed. >- * compositing/rtl/rtl-iframe-absolute-expected.png: Removed. >- * compositing/rtl/rtl-iframe-absolute-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.png: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.png: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html: Removed. >- * compositing/rtl/rtl-iframe-absolute-overflow.html: Removed. >- * compositing/rtl/rtl-iframe-absolute.html: Removed. >- * compositing/rtl/rtl-iframe-fixed-expected.png: Removed. >- * compositing/rtl/rtl-iframe-fixed-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.png: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.png: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html: Removed. >- * compositing/rtl/rtl-iframe-fixed-overflow.html: Removed. >- * compositing/rtl/rtl-iframe-fixed.html: Removed. >- * compositing/rtl/rtl-iframe-relative-expected.png: Removed. >- * compositing/rtl/rtl-iframe-relative-expected.txt: Removed. >- * compositing/rtl/rtl-iframe-relative.html: Removed. >- * compositing/rtl/rtl-relative-expected.png: Removed. >- * compositing/rtl/rtl-relative-expected.txt: Removed. >- * compositing/rtl/rtl-relative.html: Removed. >- * platform/chromium/test_expectations.txt: >- * platform/mac/Skipped: >- >-2011-06-23 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/5026848-1.html to dump-as-markup test >- https://bugs.webkit.org/show_bug.cgi?id=63289 >- >- Renamed editing/deleting/5026848* to editing/deleting/delete-across-editable-content-boundaries*, >- and converted editing/deleting/delete-across-editable-content-boundaries-1 to a dump-as-markup test. >- Removed old png/txt test results, and added new result. Also included radr number. >- >- * editing/deleting/delete-across-editable-content-boundaries-1.html: Added. >- * editing/deleting/delete-across-editable-content-boundaries-1-expected.txt: Added. >- * editing/deleting/delete-across-editable-content-boundaries-2.html: Added. >- * editing/deleting/delete-across-editable-content-boundaries-2-expected.txt: Added. >- * editing/deleting/delete-across-editable-content-boundaries-3.html: Added. >- * editing/deleting/delete-across-editable-content-boundaries-3-expected.txt: Added. >- * editing/deleting/5026848-1.html: Removed. >- * editing/deleting/5026848-2.html: Removed. >- * editing/deleting/5026848-2-expected.txt: Removed. >- * editing/deleting/5026848-3.html: Removed. >- * editing/deleting/5026848-3-expected.txt: Removed. >- * platform/chromium-linux/editing/deleting/5026848-1-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5026848-1-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5026848-1-expected.txt: Removed. >- * platform/gtk/editing/deleting/5026848-1-expected.txt: Removed. >- * platform/mac-leopard/editing/deleting/5026848-1-expected.png: Removed. >- * platform/mac/editing/deleting/5026848-1-expected.png: Removed. >- * platform/mac/editing/deleting/5026848-1-expected.txt: Removed. >- * platform/qt/editing/deleting/5026848-1-expected.png: Removed. >- * platform/qt/editing/deleting/5026848-1-expected.txt: Removed. >- >-2011-06-23 Adrienne Walker <enne@google.com> >- >- [chromium] Unreviewed, mark a few tests failing on OSX after r89632. >- https://bugs.webkit.org/show_bug.cgi?id=60741 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK Rebaseline after r89627. >- >- * platform/gtk/editing/selection/extend-inside-transforms-backward-expected.png: Added. >- * platform/gtk/editing/selection/extend-inside-transforms-backward-expected.txt: Added. >- * platform/gtk/editing/selection/extend-inside-transforms-forward-expected.png: Added. >- * platform/gtk/editing/selection/extend-inside-transforms-forward-expected.txt: Added. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- WKTR: eventSender.keyDown is unimplemented >- https://bugs.webkit.org/show_bug.cgi?id=57515 >- >- Add another test that uses eventSender.keyDown to the mac-wk2 skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-23 Adrienne Walker <enne@google.com> >- >- Reviewed by Simon Fraser. >- >- Incorrect RenderLayer transforms on overflow RTL pages >- https://bugs.webkit.org/show_bug.cgi?id=60741 >- >- Add a number of composited positioning tests on pages with dir=rtl. >- The reference images are all identical to what the non-composited path >- generates. >- >- The overflow-scrolled tests on Safari do not generate the right images >- due to bug 63284, but the layer tree is correct so they are not >- skipped. >- >- * compositing/rtl/rtl-absolute-expected.png: Added. >- * compositing/rtl/rtl-absolute-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-expected.png: Added. >- * compositing/rtl/rtl-absolute-overflow-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-absolute-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-absolute-overflow.html: Added. >- * compositing/rtl/rtl-absolute.html: Added. >- * compositing/rtl/rtl-fixed-expected.png: Added. >- * compositing/rtl/rtl-fixed-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-expected.png: Added. >- * compositing/rtl/rtl-fixed-overflow-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-fixed-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-fixed-overflow.html: Added. >- * compositing/rtl/rtl-fixed.html: Added. >- * compositing/rtl/rtl-iframe-absolute-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-iframe-absolute-overflow.html: Added. >- * compositing/rtl/rtl-iframe-absolute.html: Added. >- * compositing/rtl/rtl-iframe-fixed-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.png: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled-expected.txt: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow-scrolled.html: Added. >- * compositing/rtl/rtl-iframe-fixed-overflow.html: Added. >- * compositing/rtl/rtl-iframe-fixed.html: Added. >- * compositing/rtl/rtl-iframe-relative-expected.png: Added. >- * compositing/rtl/rtl-iframe-relative-expected.txt: Added. >- * compositing/rtl/rtl-iframe-relative.html: Added. >- * compositing/rtl/rtl-relative-expected.png: Added. >- * compositing/rtl/rtl-relative-expected.txt: Added. >- * compositing/rtl/rtl-relative.html: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled-expected.png: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled-expected.txt: Added. >- * compositing/rtlclipping/rtl-absolute-overflow-scrolled.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/mac/Skipped: >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- compositing/tiling/huge-layer* flakey >- https://bugs.webkit.org/show_bug.cgi?id=48454 >- >- These tests have been flaking on multiple platforms, so disable the tests in order to get >- the bots green. >- >- * compositing/tiling/huge-layer-add-remove-child.html: Removed. >- * compositing/tiling/huge-layer-add-remove-child.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer-add-remove-child.html. >- * compositing/tiling/huge-layer-img.html: Removed. >- * compositing/tiling/huge-layer-img.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer-img.html. >- * compositing/tiling/huge-layer-resize.html: Removed. >- * compositing/tiling/huge-layer-resize.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer-resize.html. >- * compositing/tiling/huge-layer-with-layer-children-resize.html: Removed. >- * compositing/tiling/huge-layer-with-layer-children-resize.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer-with-layer-children-resize.html. >- * compositing/tiling/huge-layer-with-layer-children.html: Removed. >- * compositing/tiling/huge-layer-with-layer-children.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer-with-layer-children.html. >- * compositing/tiling/huge-layer.html: Removed. >- * compositing/tiling/huge-layer.html-disabled: Copied from LayoutTests/compositing/tiling/huge-layer.html. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- compositing/iframes/invisible-nested-iframe-show.html failing on SnowLeopard Intel Release >- (WebKit2 Tests) since introduction. >- https://bugs.webkit.org/show_bug.cgi?id=59864 >- >- Update the mac-wk2 results to contain the transform line and get the bots green. >- >- * platform/mac-wk2/compositing/iframes/invisible-nested-iframe-show-expected.txt: >- >-2011-06-23 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Simon Fraser. >- >- Add a test for vertical caret movements inside transform >- https://bugs.webkit.org/show_bug.cgi?id=62834 >- >- Add regression tests for vertical caret movements inside rotated contents. >- >- * editing/selection/extend-inside-transforms-backward.html: Added. >- * editing/selection/extend-inside-transforms-forward.html: Added. >- * platform/chromium/test_expectations.txt: Added test expectations to keep bots green >- until we rebaseline these tests on Chromium. >- * platform/mac/editing/selection/extend-inside-transforms-backward-expected.png: Added. >- * platform/mac/editing/selection/extend-inside-transforms-backward-expected.txt: Added. >- * platform/mac/editing/selection/extend-inside-transforms-forward-expected.png: Added. >- * platform/mac/editing/selection/extend-inside-transforms-forward-expected.txt: Added. >- >-2011-06-23 Gregg Tavares <gman@google.com> >- >- Reviewed by Kenneth Russell. >- >- add test expectation fast/canvas/canvas-large-dimensions.html for new assert in command buffer. >- https://bugs.webkit.org/show_bug.cgi?id=63278 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Emil A Eklund <eae@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- input/textarea onchange doesn't fire if value is set in key listener >- https://bugs.webkit.org/show_bug.cgi?id=63092 >- >- Add test for text field onchange when setting the value in a key listener. >- >- * fast/events/onchange-setvalue-expected.txt: Added. >- * fast/events/onchange-setvalue.html: Added. >- >-2011-06-23 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/delete-select-all-00* to dumpAsText >- https://bugs.webkit.org/show_bug.cgi?id=63193 >- >- converted editing/deleting/delete-select-all-002/003 to >- runDumpAsTextEditingTest(true), removed old test files (including a >- superfluous expected file for 001 on qt), and added new test files. >- >- * editing/deleting/delete-select-all-002-expected.txt: Added. >- * editing/deleting/delete-select-all-002.html: >- * editing/deleting/delete-select-all-003-expected.txt: Added. >- * editing/deleting/delete-select-all-003.html: >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- [Windows Tests] http/tests/media/video-cross-site.html sometimes crashes. >- https://bugs.webkit.org/show_bug.cgi?id=62024 >- >- Skip the test on Windows to get the bots green. >- >- * platform/win/Skipped: >- >-2011-06-23 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Simon Fraser. >- >- Add a test with a single <source> element >- https://bugs.webkit.org/show_bug.cgi?id=63285 >- >- * media/video-single-valid-source-expected.txt: Added. >- * media/video-single-valid-source.html: Added. >- >-2011-06-23 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Oliver Hunt. >- >- https://bugs.webkit.org/show_bug.cgi?id=61585 >- Crash running regexp /(?:(?=g))|(?:m).{2147483648,}/ >- >- Add regression tests where an alterative has a size of ~2^31. >- >- * fast/regex/overflow-expected.txt: Added. >- * fast/regex/overflow.html: Added. >- * fast/regex/script-tests/overflow.js: Added. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- [Snow Leopard WebKit2 Tests] http/tests/appcache/interrupted-update.html failing, probably >- since introduction in r86478. >- https://bugs.webkit.org/show_bug.cgi?id=63288 >- >- Add expected failing results in order to get the bots green. >- >- * platform/mac-wk2/http/tests/appcache/interrupted-update-expected.txt: Added. >- >-2011-06-23 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89591 and r89593. >- http://trac.webkit.org/changeset/89591 >- http://trac.webkit.org/changeset/89593 >- https://bugs.webkit.org/show_bug.cgi?id=63279 >- >- Caused test crashes in SL and Chromium (Requested by dimich_ >- on #webkit). >- >- * platform/mac/accessibility/aria-liveregion-without-element-access-expected.txt: Removed. >- * platform/mac/accessibility/aria-liveregion-without-element-access.html: Removed. >- >-2011-06-23 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Darin Adler. >- >- Incorrect MIME type used for some media layout tests >- https://bugs.webkit.org/show_bug.cgi?id=63275 >- >- * media/video-can-play-type-expected.txt: video/mpeg -> video/mp4 >- * media/video-can-play-type.html: Ditto. >- * media/video-source-error.html: Ditto. >- * media/video-source-type.html: Ditto. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- [WebKit2 Tests] svg/zoom/page/zoom-replaced-intrinsic-ratio-001.html failing since >- introduction in r88913. >- https://bugs.webkit.org/show_bug.cgi?id=63277 >- >- Add the (failing?) expected results in order to get the WK2 bots green. >- >- * platform/mac-wk2/svg: Added. >- * platform/mac-wk2/svg/zoom: Added. >- * platform/mac-wk2/svg/zoom/page: Added. >- * platform/mac-wk2/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. >- >-2011-06-23 Dan Bernstein <mitz@apple.com> >- >- Added expected results for Snow Leopard and earlier. >- >- * platform/mac-snowleopard/platform/mac/fast/text: Added. >- * platform/mac-snowleopard/platform/mac/fast/text/line-break-locale-expected.txt: Added. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- http/tests/multipart/win-boundary-crash.html flakey. >- https://bugs.webkit.org/show_bug.cgi?id=63268 >- >- Disable the test. I was wrong in thinking that the win skipped list inherits from mac. >- >- * http/tests/multipart/win-boundary-crash.html: Removed. >- * http/tests/multipart/win-boundary-crash.html-disabled: Copied from LayoutTests/http/tests/multipart/win-boundary-crash.html. >- * platform/mac/Skipped: >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- http/tests/multipart/win-boundary-crash.html flakey. >- https://bugs.webkit.org/show_bug.cgi?id=63268 >- >- The flakiness is happening on mac as well, move it to the mac skipped list. >- >- * platform/mac/Skipped: >- * platform/win/Skipped: >- >-2011-06-23 Nate Chapin <japhet@chromium.org> >- >- Unreviewed. >- >- Partial revert of test expectations for r89503. >- >- * http/tests/loading/cross-origin-XHR-willLoadRequest-expected.txt: >- * http/tests/misc/favicon-loads-with-icon-loading-override-expected.txt: >- * http/tests/misc/link-rel-icon-beforeload-expected.txt: >- >-2011-06-23 Young Han Lee <joybro@company100.net> >- >- Reviewed by Simon Fraser. >- >- runAnimationTest always fails if the pause API is enabled and the test target animation has "infinite" iteration count. >- https://bugs.webkit.org/show_bug.cgi?id=63152 >- >- The pausing conditions are modified. Now it accepts the infinite-iteration-count, >- but rejects the zero-iteration-count. There is no reason to consider the zero-count meaning no animation. >- >- * animations/keyframes-infinite-iterations-expected.txt: Added. >- * animations/keyframes-infinite-iterations.html: Added. >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- [Windows 7 Release Tests] http/tests/multipart/win-boundary-crash.html flakey. >- https://bugs.webkit.org/show_bug.cgi?id=63268 >- >- Add it to the Windows skipped list to get the bots green. >- >- * platform/win/Skipped: >- >-2011-06-23 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Adam Barth. >- >- Tests that we do not crash when doing a media query match. >- https://bugs.webkit.org/show_bug.cgi?id=63264 >- >- * fast/css/media-query-evaluator-crash-expected.txt: Added. >- * fast/css/media-query-evaluator-crash.html: Added. >- >-2011-06-23 Dan Bernstein <mitz@apple.com> >- >- Reviewed by Alexey Proskuryakov. >- >- Make line breaking obey the -webkit-locale property >- https://bugs.webkit.org/show_bug.cgi?id=63209 >- >- * platform/mac/fast/text/line-break-locale.html: Added. >- * platform/mac/platform/mac/fast/text/line-break-locale-expected.png: Added. >- * platform/mac/platform/mac/fast/text/line-break-locale-expected.txt: Added. >- >-2011-06-23 Chris Fleizach <cfleizach@apple.com> >- >- ARIA live regions don't trigger notifications for elements that aren't in the AX tree >- https://bugs.webkit.org/show_bug.cgi?id=62289 >- >- Actually add the layout tests this time. >- >- * platform/mac/accessibility/aria-liveregion-without-element-access-expected.txt: Added. >- * platform/mac/accessibility/aria-liveregion-without-element-access.html: Added. >- >-2011-06-23 Chris Fleizach <cfleizach@apple.com> >- >- Reviewed by Darin Adler. >- >- ARIA live regions don't trigger notifications for elements that aren't in the AX tree >- https://bugs.webkit.org/show_bug.cgi?id=62289 >- >- * platform/mac/accessibility/aria-liveregion-without-element-access-expected.txt: Added. >- * platform/mac/accessibility/aria-liveregion-without-element-access.html: Added. >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: marking debugger test as slow in chromium expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium Mac rebaseline. >- >- * platform/chromium-mac/fast/box-shadow/inset-box-shadows-expected.png: >- >-2011-06-23 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- remove references to dump-as-markup in editing/deleting/delete-by-word tests >- https://bugs.webkit.org/show_bug.cgi?id=62903 >- >- Each of these files had '../../../resources/dump-as-markup.js' referenced, which was broken. >- Neither of them was using dump-as-markup, so it did not break anything - this fix just removes >- the unused broken references. >- >- * editing/deleting/delete-by-word-001.html: >- * editing/deleting/delete-by-word-002.html: >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: marking debugger test as slow in chromium expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Jessie Berlin <jberlin@apple.com> >- >- [WebKit2 Tests] plugins/npruntime/embed-property-equality.html failing since introduction in >- r88679. >- https://bugs.webkit.org/show_bug.cgi?id=63205 >- >- This test does not fail on Windows, so add back in the passing expected results to get the >- bots green. >- >- * platform/win-wk2/plugins/npruntime: Added. >- * platform/win-wk2/plugins/npruntime/embed-property-equality-expected.txt: Added. >- >-2011-06-23 Csaba Osztrogonác <ossy@webkit.org> >- >- REGRESSION (r89449): http/tests/inspector/extensions-resources-redirect.html failing on SnowLeopard Intel Release (Tests), Windows 7 Release (Tests), Qt >- https://bugs.webkit.org/show_bug.cgi?id=63178 >- >- * platform/qt/Skipped: Skip http/tests/inspector/extensions-resources-redirect.html until fix. >- >-2011-06-23 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt]REGRESSION(r89503): It made 4 fast/notifications tests fail on Qt >- https://bugs.webkit.org/show_bug.cgi?id=63255 >- >- * platform/qt/Skipped: Skip failing tests until fix. >- >-2011-06-23 Adam Roben <aroben@apple.com> >- >- Add Windows expected failure results for a newish accessibility test >- >- The failure is tracked by <http://webkit.org/b/63191>. >- >- * platform/win/accessibility/aria-labelledby-overrides-aria-label-expected.txt: Added. >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: updated chromium expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Csaba Osztrogonác <ossy@webkit.org> >- >- Inspector may close at the start of the next inspector test in DRT >- https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- * platform/qt/Skipped: Unskip inspector tests after fix, skip still failing tests. >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: fix conflicting chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: brush up chromium inspector expectations. >- >- * http/tests/inspector/inspector-test.js: >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Zoltan Herczeg <zherczeg@inf.u-szeged.hu> >- >- Reviewed by Pavel Feldman. >- >- Inspector may close at the start of the next inspector test in DRT >- https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- The didEvaluateForTestInFrontend function call is postponed until >- all messages in the dispatch queue is processed. >- >- * http/tests/inspector/inspector-test.js: >- (initialize_InspectorTest.InspectorTest.completeTest): >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, final round of baselines for the new CSS2.1 tests added in r88913. >- >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-013-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-014-expected.txt: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/gtk/css2.1/20110323/inline-replaced-width-015-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-elements-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-elements-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/replaced-min-max-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/width-replaced-element-001-expected.txt: Added. >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed. Unexpected passes in chromium expectations removed from excludes. >- >- * platform/chromium/inspector/debugger/debugger-activation-crash2-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed. Chromium test expectations updated. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, baselines for the new CSS2.1 tests added in r88913. >- >- * platform/gtk/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Added. >- * platform/gtk/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt: Added. >- * platform/gtk/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Added. >- * platform/gtk/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/gtk/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Added. >- * platform/gtk/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt: Added. >- * platform/gtk/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Added. >- * platform/gtk/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-013-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-014-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-015-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-height-016-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-non-replaced-width-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/block-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-non-replaced-width-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/float-replaced-width-011-expected.txt: Added. >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, more GTK+ baselines for the new CSS2.1 tests added in r88913. >- >- * platform/gtk/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-014-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-016-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-017-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-018-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-019-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-021-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-022-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-023-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-024-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-025-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-026-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-028-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-029-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-030-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-031-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-032-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-033-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-035-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-height-036-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-013-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-015-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-020-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-022-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-027-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-029-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-034-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-036-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-041-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-043-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-048-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-050-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-055-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-057-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-062-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-064-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-069-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-071-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-replaced-width-076-expected.txt: Added. >- >-2011-06-23 Jeffrey Pfau <jpfau@apple.com> >- >- Reviewed by Nikolas Zimmermann. >- >- Incorrectly placed SVG gradients can cause crashes when referenced >- https://bugs.webkit.org/show_bug.cgi?id=62914 >- >- Added tests to make sure fallback color is used properly with invalid gradients. >- >- * svg/custom/invalid-gradient-with-xlink-expected.png: Added. >- * svg/custom/invalid-gradient-with-xlink-expected.txt: Added. >- * svg/custom/invalid-gradient-with-xlink.svg: Added. >- * svg/custom/xlink-to-invalid-gradient-expected.png: Added. >- * svg/custom/xlink-to-invalid-gradient-expected.txt: Added. >- * svg/custom/xlink-to-invalid-gradient.svg: Added. >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, another bunch of GTK+ baselines for the new CSS2.1 tests added in r88913. >- >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Added. >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, add GTK+ baselines for the new CSS2.1 tests added in r88913. >- >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/gtk/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Added. >- >-2011-06-23 Sergio Villar Senin <svillar@igalia.com> >- >- Unreviewed, rebaseline a couple of SVG tests for GTK+. >- >- * platform/gtk/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: >- * platform/gtk/svg/custom/pointer-events-text-expected.txt: >- >-2011-06-23 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: updating chromium expectations. >- >- * platform/chromium/fast/js/parser-xml-close-comment-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-23 Csaba Osztrogonác <ossy@webkit.org> >- >- Add new "CONSOLE MESSAGE: line 0: SVG animation pause API missing!" tests to the WK2 skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-22 Pavel Feldman <pfeldman@chromium.org> >- >- Not reviewed: rebaseline chromium expectation. >- >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Rob Buis. >- >- Convert SVGPointList to SVGAnimatorFactory concept >- https://bugs.webkit.org/show_bug.cgi?id=63171 >- >- Renamed test animate-points to svgpointlist-animation-1 and cleaned it up. >- svgpointlist-animation-2 checks from-by animations of SVGPointLists. >- >- * svg/animations/animate-points-expected.txt: Removed. >- * svg/animations/animate-points.html: Removed. >- * svg/animations/script-tests/animate-points.js: Removed. >- * svg/animations/script-tests/svgpointlist-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgpointlist-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgpointlist-animation-1-expected.txt: Added. >- * svg/animations/svgpointlist-animation-1.html: Added. >- * svg/animations/svgpointlist-animation-2-expected.txt: Added. >- * svg/animations/svgpointlist-animation-2.html: Added. >- >-2011-06-22 Pavel Feldman <pfeldman@chromium.org> >- >- Not reviewed: chromium expectations update. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Pavel Feldman <pfeldman@chromium.org> >- >- Not reviewed: chromium expectations update. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Dominic Cooney <dominicc@chromium.org> >- >- Reviewed by Mark Rowe. >- >- Add window.internals to WebKit2's WebKitTestRunner. >- https://bugs.webkit.org/show_bug.cgi?id=61073 >- >- * platform/mac-wk2/Skipped: unskip fast/harness/internals-object.html >- >-2011-06-22 Sam Weinig <sam@webkit.org> >- >- Reviewed by Adam Barth. >- >- Lower HTML parser DOM depth limit to 2048 >- https://bugs.webkit.org/show_bug.cgi?id=63219 >- >- Update nest test to reflect new limit and remove tests that were >- testing specific behaviors of the old parser. >- >- * fast/parser/block-nesting-cap-expected.txt: >- * fast/parser/block-nesting-cap-table-expected.txt: Removed. >- * fast/parser/block-nesting-cap-table.html: Removed. >- * fast/parser/element-nesting-cap-expected.txt: Removed. >- * fast/parser/element-nesting-cap.html: Removed. >- * fast/parser/script-tests/block-nesting-cap-table.js: Removed. >- * fast/parser/script-tests/block-nesting-cap.js: >- * fast/parser/script-tests/element-nesting-cap.js: Removed. >- >-2011-06-22 Kent Tamura <tkent@chromium.org> >- >- [Win] media/media-controls-clone.html failing on Windows 7 Release (Tests) >- https://bugs.webkit.org/show_bug.cgi?id=63195 >- >- * platform/win/media/media-controls-clone-expected.txt: Added. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by James Robinson. >- >- Fixing test spanOverlapsCanvas.html to properly use layer tree text and rebaselining test off that for windows and mac. >- https://bugs.webkit.org/show_bug.cgi?id=63190 >- >- * compositing/layer-creation/spanOverlapsCanvas-expected.txt: Copied from LayoutTests/platform/mac/compositing/layer-creation/spanOverlapsCanvas-expected.txt. >- * compositing/layer-creation/spanOverlapsCanvas.html: >- * platform/mac-snowleopard/compositing: Added. >- * platform/mac-snowleopard/compositing/layer-creation: Added. >- * platform/mac-snowleopard/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Added. >- * platform/mac/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Removed. >- * platform/win/compositing/layer-creation/spanOverlapsCanvas-expected.txt: >- >-2011-06-22 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IndexedDB open (database) should NOT throw if name is null >- https://bugs.webkit.org/show_bug.cgi?id=63110 >- >- * storage/indexeddb/database-name-undefined-expected.txt: >- * storage/indexeddb/database-name-undefined.html: removed some code here >- because it's duplicated in the mozilla/open-database-null-name test >- * storage/indexeddb/mozilla/open-database-null-name-expected.txt: >- * storage/indexeddb/mozilla/open-database-null-name.html: fixed expected >- behavior (db.name ends up as four-character string "null") >- >-2011-06-22 Nate Chapin <japhet@chromium.org> >- >- Reviewed by Adam Barth. >- >- Test updates for https://bugs.webkit.org/show_bug.cgi?id=62066. >- >- * fast/preloader/scan-body-from-head-import.html: Use window.internals. >- * fast/preloader/scan-body-from-head-script.html: Use window.internals. >- * http/tests/loading/cross-origin-XHR-willLoadRequest-expected.txt: >- * http/tests/loading/cross-origin-XHR-willLoadRequest.html: >- * http/tests/loading/preload-append-scan-expected.txt: >- * http/tests/loading/preload-append-scan.php: Use window.internals. >- * http/tests/misc/favicon-loads-with-icon-loading-override-expected.txt: >- * http/tests/misc/link-rel-icon-beforeload-expected.txt: >- * platform/chromium-linux/fast/preloader/scan-body-from-head-script-expected.txt: Removed. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- [WebKit2 Tests] plugins/npruntime/embed-property-equality.html failing since introduction in >- r88679. >- https://bugs.webkit.org/show_bug.cgi?id=63205 >- >- Add expected failing result in order to get the bots green. >- >- * platform/mac-wk2/plugins: Added. >- * platform/mac-wk2/plugins/npruntime: Added. >- * platform/mac-wk2/plugins/npruntime/embed-property-equality-expected.txt: Added. >- >-2011-06-22 Ojan Vafai <ojan@chromium.org> >- >- Update listing for perf tests to list each individual test. >- A number of the tests in this directory are not flaky. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed, baseline for new test added in http://trac.webkit.org/changeset/89490 >- >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added. >- >-2011-06-22 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed, rebaseline tests after http://trac.webkit.org/changeset/89475/ >- >- * platform/chromium-mac-leopard/fast/gradients/gradient-after-transparent-border-expected.png: >- * platform/chromium-mac/fast/borders/border-radius-wide-border-01-expected.png: Added. >- * platform/chromium-mac/fast/borders/mixed-border-styles-radius-expected.png: >- * platform/chromium-mac/fast/gradients/gradient-after-transparent-border-expected.png: >- >-2011-06-22 Annie Sullivan <sullivan@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- REGRESSION: Hitting enter in the middle of this span causes the cursor to go to the end of the span >- https://bugs.webkit.org/show_bug.cgi?id=61594 >- >- Adds two layout tests to verify that hitting enter in the middle of the span splits the span correctly >- and places the cursor in the correct position. >- >- * editing/inserting/return-key-before-br-in-span-expected.txt: Added. >- * editing/inserting/return-key-before-br-in-span.html: Added. >- * editing/inserting/return-key-middle-of-span-expected.txt: Added. >- * editing/inserting/return-key-middle-of-span.html: Added. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- Add more "CONSOLE MESSAGE: line 0: SVG animation pause API missing!" tests to the WK2 >- Skipped list to get the bots green. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-22 Rob Buis <rbuis@rim.com> >- >- Reviewed by Nikolas Zimmermann. >- >- SVG1.1SE test with pointer-events and invalid gradient fill fails >- https://bugs.webkit.org/show_bug.cgi?id=63109 >- >- * platform/mac/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.png: Added. >- * platform/mac/svg/W3C-SVG-1.1-SE/interact-pointer-03-t-expected.txt: Added. >- * svg/W3C-SVG-1.1-SE/interact-pointer-03-t.svg: Added. >- * svg/custom/pointer-events-invalid-fill-expected.txt: Added. >- * svg/custom/pointer-events-invalid-fill.svg: Added. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by Adam Roben. >- >- Setting expected results for platform/win >- https://bugs.webkit.org/show_bug.cgi?id=63190 >- >- * platform/win/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Added. >- >-2011-06-22 Adam Roben <aroben@apple.com> >- >- Add Windows expected results for some new tests from r87779 >- >- These differ from Mac due to some small rounding differences in a path. >- >- * platform/win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Added. >- * platform/win/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Added. >- * platform/win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Added. >- * platform/win/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Added. >- >-2011-06-22 Adam Roben <aroben@apple.com> >- >- Skip some flaky animation tests on Windows >- >- See <http://webkit.org/b/62561> and <http://webkit.org/b/62569>. >- >- * platform/win/Skipped: Added animations/animation-direction-normal.html and >- animations/play-state-paused.html. >- >-2011-06-22 Adam Roben <aroben@apple.com> >- >- Disable zoom-svg-through-object-with-*.xhtml >- >- These tests are flaky. See <http://webkit.org/b/63186>. >- >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- Removed mentions of these tests. >- >- * svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2.xhtml. >- * svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-absolute-size.xhtml. >- * svg/zoom/page/zoom-svg-through-object-with-auto-size.html-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-auto-size.html. >- * svg/zoom/page/zoom-svg-through-object-with-huge-size.xhtml-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-huge-size.xhtml. >- * svg/zoom/page/zoom-svg-through-object-with-override-size.html-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-override-size.html. >- * svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-percentage-size.xhtml. >- * svg/zoom/page/zoom-svg-through-object-with-text.xhtml-disabled: Renamed from LayoutTests/svg/zoom/page/zoom-svg-through-object-with-text.xhtml. >- >-2011-06-22 Balazs Kelemen <kbalazs@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt][WK2] Set up plugin tests >- https://bugs.webkit.org/show_bug.cgi?id=63066 >- >- * platform/qt-wk2/Skipped: >- Unskip passing plugin tests and create a new group for those >- that still fail for some reason. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- WebKit2 needs layoutTestController.overridePreference. >- https://bugs.webkit.org/show_bug.cgi?id=42197 >- >- Add more tests that use layoutTestController.overridePreference to the WK2 Skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-22 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IndexedDB createIndex should NOT throw if name arg is null >- https://bugs.webkit.org/show_bug.cgi?id=63114 >- >- * storage/indexeddb/mozilla/create-index-null-name-expected.txt: >- * storage/indexeddb/mozilla/create-index-null-name.html: >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89449): http/tests/inspector/extensions-resources-redirect.html failing on >- SnowLeopard Intel Release (Tests), Windows 7 Release (Tests). >- https://bugs.webkit.org/show_bug.cgi?id=63178 >- >- Add failing expected results in order to get the bots green. >- >- * platform/mac/http/tests/inspector/extensions-resources-redirect-expected.txt: Added. >- >-2011-06-22 Tony Chang <tony@chromium.org> >- >- Add test that got renamed. Should have been included with r89466. >- >- * storage/indexeddb/keypath-basics.html: Renamed from LayoutTests/storage/indexeddb/keypath-as-array.html. >- >-2011-06-22 Beth Dakin <bdakin@apple.com> >- >- Reviewed by Simon Fraser. >- >- https://bugs.webkit.org/show_bug.cgi?id=63174 >- Don't draw the borders as one path unless there really are 4 borders >- -and corresponding- >- <rdar://problem/9457997> >- >- * fast/borders/only-one-border-with-width.html: Added. >- * platform/mac/fast/borders/only-one-border-with-width-expected.png: Added. >- * platform/mac/fast/borders/only-one-border-with-width-expected.txt: Added. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by Oliver Hunt. >- >- Canvas in layer obscures overlapping span >- https://bugs.webkit.org/show_bug.cgi?id=63161 >- >- * compositing/layer-creation/spanOverlapsCanvas.html: Added. >- * platform/mac/compositing/layer-creation: Added. >- * platform/mac/compositing/layer-creation/spanOverlapsCanvas-expected.txt: Added. >- * platform/mac/compositing/layer-creation/spanOverlapsCanvas-expected.png: Added. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89426-r89428): inspector/console/console-trace-in-eval.html failing on >- SnowLeopard Intel Release (Tests) and Windows 7 Release (Tests). >- https://bugs.webkit.org/show_bug.cgi?id=63175 >- >- Add platform-specific results to in order to get the bots green. >- >- * platform/mac/inspector/console: Added. >- * platform/mac/inspector/console/console-trace-in-eval-expected.txt: Added. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- WebKitTestRunner needs layoutTestController.dumpFrameLoadCallbacks. >- https://bugs.webkit.org/show_bug.cgi?id=42331 >- >- Add another test that uses dumpFrameLoadCallbacks to the WK2 Skipped list. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-22 Kentaro Hara <haraken@google.com> >- >- Reviewed by Tony Chang. >- >- Check |keypath| argument of createObjectStore(). Remove storage/indexeddb/keypath-as-array.html. >- https://bugs.webkit.org/show_bug.cgi?id=63054 >- >- At the head of createObjectStore(), we parse |keypath| argument and throw an exception >- if the |keypath| is invalid. With this parsing, we remove keypath-as-array.html because >- the current keypath parser does not support an array of keypath and (more importantly) >- the current implementation of ObjectStore does not support multiple keypaths. >- We added keypath-basics.html that demonstrates that we do not support an array of keypaths. >- >- * storage/indexeddb/keypath-as-array-expected.txt: Removed. >- * storage/indexeddb/keypath-as-array.html: Removed. >- * storage/indexeddb/keypath-basics-expected.txt: Added. >- * storage/indexeddb/keypath-basics.html: Added. >- >-2011-06-22 Geoffrey Garen <ggaren@apple.com> >- >- Reviewed by Oliver Hunt. >- >- Removed the conceit that global variables are local variables when running global code >- https://bugs.webkit.org/show_bug.cgi?id=63106 >- >- * fast/js/recursion-limit-equal-expected.txt: Updated to reflect slightly >- changed recursion limit. >- >-2011-06-21 Geoffrey Garen <ggaren@apple.com> >- >- Reviewed by Oliver Hunt. >- >- Removed the conceit that global variables are local variables when running global code >- https://bugs.webkit.org/show_bug.cgi?id=63106 >- >- * fast/js/recursion-limit-equal-expected.txt: Updated to reflect slightly >- changed recursion limit. >- >-2011-06-22 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r89305-r89312): webarchive/loading/mainresource-null-mimetype-crash.html failing >- on SnowLeopard Intel Release (Tests). >- https://bugs.webkit.org/show_bug.cgi?id=63169 >- >- Add (failing?) expected results to get the bots green. >- >- * platform/mac/webarchive/loading/mainresource-null-mimetype-crash-expected.txt: Added. >- >-2011-06-22 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed update of test expectations. >- >- * platform/chromium-mac/fast/canvas/webgl/data-view-test-expected.txt: Added. >- * platform/chromium-win/fast/canvas/webgl/data-view-test-expected.txt: Added. >- >-2011-06-22 Young Han Lee <joybro@company100.net> >- >- Reviewed by Simon Fraser. >- >- animation-timing-function property with a list uses first item for all animations >- https://bugs.webkit.org/show_bug.cgi?id=60303 >- >- When an element has multiple animations that have different timingFunctions, >- the progress of each animation should be calculated using its respective timingFunction. >- But at this point, the timingFunction of the first animation is only used for the >- calculation, regardless of how many animations the element has. >- >- The code for getting a timingFunction is changed by this patch >- so that the timingFunction of the correct animation searched by its name will be used. >- >- * animations/multiple-animations-timing-function-expected.txt: Added. >- * animations/multiple-animations-timing-function.html: Added. >- >-2011-06-22 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89407, r89409, r89410, and r89411. >- http://trac.webkit.org/changeset/89407 >- http://trac.webkit.org/changeset/89409 >- http://trac.webkit.org/changeset/89410 >- http://trac.webkit.org/changeset/89411 >- https://bugs.webkit.org/show_bug.cgi?id=63168 >- >- Broke Chromium tests for Forms and Autofill (Requested by >- dimich on #webkit). >- >- * fast/css/text-input-with-webkit-border-radius-expected.txt: >- * fast/forms/search-abs-pos-cancel-button.html: >- * fast/forms/search-cancel-button-mouseup.html: >- * platform/chromium/test_expectations.txt: >- * platform/gtk/fast/css/input-search-padding-expected.txt: >- * platform/gtk/fast/css/pseudo-cache-stale-expected.txt: >- * platform/gtk/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/gtk/fast/forms/box-shadow-override-expected.txt: >- * platform/gtk/fast/forms/control-restrict-line-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/gtk/fast/forms/placeholder-position-expected.txt: >- * platform/gtk/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/gtk/fast/forms/placeholder-set-value-expected.txt: >- * platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/gtk/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/gtk/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/gtk/fast/forms/search-rtl-expected.txt: >- * platform/gtk/fast/forms/search-styled-expected.txt: >- * platform/gtk/fast/forms/search-transformed-expected.txt: >- * platform/gtk/fast/forms/search-vertical-alignment-expected.txt: >- * platform/gtk/fast/forms/search-zoomed-expected.txt: >- * platform/gtk/fast/forms/searchfield-heights-expected.txt: >- * platform/gtk/fast/forms/textfield-overflow-expected.txt: >- * platform/gtk/fast/repaint/search-field-cancel-expected.txt: >- * platform/gtk/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/gtk/fast/table/colspanMinWidth-vertical-expected.txt: >- * platform/mac/fast/css/input-search-padding-expected.png: >- * platform/mac/fast/css/input-search-padding-expected.txt: >- * platform/mac/fast/css/pseudo-cache-stale-expected.txt: >- * platform/mac/fast/forms/box-shadow-override-expected.txt: >- * platform/mac/fast/forms/control-restrict-line-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/mac/fast/forms/placeholder-position-expected.txt: >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/mac/fast/forms/placeholder-set-value-expected.txt: >- * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/mac/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/mac/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/mac/fast/forms/search-rtl-expected.txt: >- * platform/mac/fast/forms/search-styled-expected.txt: >- * platform/mac/fast/forms/search-transformed-expected.txt: >- * platform/mac/fast/forms/search-vertical-alignment-expected.png: >- * platform/mac/fast/forms/search-vertical-alignment-expected.txt: >- * platform/mac/fast/forms/search-zoomed-expected.txt: >- * platform/mac/fast/forms/searchfield-heights-expected.txt: >- * platform/mac/fast/repaint/search-field-cancel-expected.png: >- * platform/mac/fast/repaint/search-field-cancel-expected.txt: >- * platform/mac/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.png: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt: >- * platform/qt/fast/css/pseudo-cache-stale-expected.txt: >- * platform/qt/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/qt/fast/forms/control-restrict-line-height-expected.txt: >- * platform/qt/fast/forms/placeholder-set-value-expected.txt: >- * platform/qt/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/qt/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/qt/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/qt/fast/forms/search-rtl-expected.txt: >- * platform/qt/fast/forms/search-styled-expected.txt: >- * platform/qt/fast/forms/search-transformed-expected.txt: >- * platform/qt/fast/forms/search-vertical-alignment-expected.txt: >- * platform/qt/fast/forms/search-zoomed-expected.txt: >- * platform/qt/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/win/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/win/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/win/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/win/media/media-controls-clone-expected.txt: Removed. >- >-2011-06-22 Sam Weinig <sam@webkit.org> >- >- Reviewed by Adam Barth. >- >- HTML parser should limit element depth of produced tree >- https://bugs.webkit.org/show_bug.cgi?id=63082 >- >- * fast/parser/block-nesting-cap-expected.txt: >- * fast/parser/element-nesting-cap-expected.txt: >- Update expectations for new parser depth limit. >- >-2011-06-22 Adam Barth <abarth@webkit.org> >- >- Rollout 88332. >- >- * editing/spelling/spellcheck-api-expected.txt: Removed. >- * editing/spelling/spellcheck-api-pixel.html: Removed. >- * editing/spelling/spellcheck-api.html: Removed. >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-22 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IndexedDB: fix multiple issues in IDBDatabase.idl >- https://bugs.webkit.org/show_bug.cgi?id=63140 >- >- * storage/indexeddb/createObjectStore-name-argument-required-expected.txt: Added. >- * storage/indexeddb/createObjectStore-name-argument-required.html: Added. >- * storage/indexeddb/createObjectStore-null-name-expected.txt: Added. >- * storage/indexeddb/createObjectStore-null-name.html: Added. >- * storage/indexeddb/deleteObjectStore-name-argument-required-expected.txt: Added. >- * storage/indexeddb/deleteObjectStore-name-argument-required.html: Added. >- * storage/indexeddb/deleteObjectStore-null-name-expected.txt: Added. >- * storage/indexeddb/deleteObjectStore-null-name.html: Added. >- * storage/indexeddb/mozilla/create-objectstore-null-name-expected.txt: >- * storage/indexeddb/mozilla/create-objectstore-null-name.html: >- * storage/indexeddb/setVersion-null-expected.txt: Added. >- * storage/indexeddb/setVersion-null.html: Added. >- * storage/indexeddb/setVersion-undefined-expected.txt: >- * storage/indexeddb/setVersion-undefined.html: >- * storage/indexeddb/transaction-and-objectstore-calls-expected.txt: >- * storage/indexeddb/transaction-and-objectstore-calls.html: >- * storage/indexeddb/transaction-crash-on-abort-expected.txt: >- * storage/indexeddb/transaction-crash-on-abort.html: >- * storage/indexeddb/transaction-read-only-expected.txt: >- * storage/indexeddb/transaction-read-only.html: >- * storage/indexeddb/transaction-storeNames-required-expected.txt: Added. >- * storage/indexeddb/transaction-storeNames-required.html: Added. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Adding a mac platform expected result for webgl test to help fix burning bot. >- Filed https://bugs.webkit.org/show_bug.cgi?id=63151 for a real fix >- >- * platform/mac/fast/canvas/webgl/data-view-test-expected.txt: Added. >- >-2011-06-22 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Darin Adler. >- >- Assertion failure in RenderBlock::createLineBoxes() when a legend has display: inline >- https://bugs.webkit.org/show_bug.cgi?id=23753 >- >- The bug got fixed, so landing the test case. >- >- * fast/dom/legend-display-inline-expected.txt: Added. >- * fast/dom/legend-display-inline.html: Added. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Reverting rebaseline from r89434, because it needs more investigation. >- Filed this bug for figuring it out: https://bugs.webkit.org/show_bug.cgi?id=63151 >- >- * fast/canvas/webgl/data-view-test-expected.txt: >- >-2011-06-22 Pavel Feldman <pfeldman@google.com> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: split setAttributes and setAttributeValue. >- https://bugs.webkit.org/show_bug.cgi?id=63138 >- >- * inspector/elements/set-attribute.html: >- * inspector/elements/set-attribute-expected.txt: >- >-2011-06-22 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Dan Bernstein. >- >- video-loop.html sometimes fails on slow system >- https://bugs.webkit.org/show_bug.cgi?id=63143 >- >- * media/video-loop.html: Don't seek if an exception will be generated. >- >-2011-06-22 Matthew Delaney <mdelaney@apple.com> >- >- Fixing burning mac SL trees. These tests's expected results needed >- updating after parts of them were fixed recently in r89315. >- >- * fast/canvas/webgl/data-view-test-expected.txt: >- * platform/mac/canvas/philip/tests/2d.missingargs-expected.txt: >- >-2011-06-22 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- Animate viewBox attribute in SVG >- https://bugs.webkit.org/show_bug.cgi?id=20057 >- >- Test SVGRect animation with from-to and from-by animations. >- >- * svg/animations/script-tests/svgrect-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgrect-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgrect-animation-1-expected.txt: Added. >- * svg/animations/svgrect-animation-1.html: Added. >- * svg/animations/svgrect-animation-2-expected.txt: Added. >- * svg/animations/svgrect-animation-2.html: Added. >- >-2011-06-22 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, apply a couple of Chromium test expectation changes to test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed. Update platform specific exprected results after r89367 and r89381. >- >- * platform/qt/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: >- * platform/qt/svg/custom/pointer-events-text-expected.png: >- * platform/qt/svg/custom/pointer-events-text-expected.txt: >- >-2011-06-22 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, fix a syntax error in the last change in test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, add Chromium test expectations for tests started to fail since V8 3.4.5.1 roll. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-22 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, check in new Chromium-Leopard baselines. >- >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: Removed. >- * platform/chromium-mac-leopard/svg/custom/pointer-events-text-expected.png: Added. >- >-2011-06-22 Dirk Pranke <dpranke@chromium.org> >- >- Unreviewed, whitespace expectations change to trigger a round of >- builds. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Kent Tamura <tkent@chromium.org> >- >- [Win][Mac] Correct an accidental change in r89410. >- >- * platform/mac/media/media-controls-clone-expected.txt: >- * platform/win/media/media-controls-clone-expected.txt: Copied from LayoutTests/platform/mac/media/media-controls-clone-expected.txt. >- >-2011-06-21 Kent Tamura <tkent@chromium.org> >- >- [Win][GTK] Test expectation update for r89407. >- >- * platform/gtk/fast/css/input-search-padding-expected.txt: >- * platform/gtk/fast/css/pseudo-cache-stale-expected.txt: >- * platform/gtk/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/gtk/fast/forms/box-shadow-override-expected.txt: >- * platform/gtk/fast/forms/control-restrict-line-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-height-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/gtk/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/gtk/fast/forms/placeholder-position-expected.txt: >- * platform/gtk/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/gtk/fast/forms/placeholder-set-value-expected.txt: >- * platform/gtk/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/gtk/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/gtk/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/gtk/fast/forms/search-rtl-expected.txt: >- * platform/gtk/fast/forms/search-styled-expected.txt: >- * platform/gtk/fast/forms/search-transformed-expected.txt: >- * platform/gtk/fast/forms/search-vertical-alignment-expected.txt: >- * platform/gtk/fast/forms/search-zoomed-expected.txt: >- * platform/gtk/fast/forms/searchfield-heights-expected.txt: >- * platform/gtk/fast/forms/textfield-overflow-expected.txt: >- * platform/gtk/fast/repaint/search-field-cancel-expected.txt: >- * platform/gtk/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/gtk/fast/table/colspanMinWidth-vertical-expected.txt: >- * platform/mac/media/media-controls-clone-expected.txt: >- * platform/win/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/win/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/win/fast/forms/search-placeholder-value-changed-expected.txt: >- >-2011-06-21 Kent Tamura <tkent@chromium.org> >- >- [Qt] Test expectation update for r89407. >- >- * platform/qt/fast/css/pseudo-cache-stale-expected.txt: >- * platform/qt/fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/qt/fast/forms/control-restrict-line-height-expected.txt: >- * platform/qt/fast/forms/placeholder-set-value-expected.txt: >- * platform/qt/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/qt/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/qt/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/qt/fast/forms/search-rtl-expected.txt: >- * platform/qt/fast/forms/search-styled-expected.txt: >- * platform/qt/fast/forms/search-transformed-expected.txt: >- * platform/qt/fast/forms/search-vertical-alignment-expected.txt: >- * platform/qt/fast/forms/search-zoomed-expected.txt: >- * platform/qt/fast/replaced/width100percent-searchfield-expected.txt: >- >-2011-06-21 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Update expectation for some speech tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Avoid custom layout code of RenderTextControlSingleLine >- https://bugs.webkit.org/show_bug.cgi?id=61415 >- >- Update tests including <input type=search> or <input type=number>. Their >- internal structures are changed. >- Slight position changes for search result buttons and search cancel >- buttons are expected. >- >- * fast/css/text-input-with-webkit-border-radius-expected.txt: >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/css/input-search-padding-expected.png: >- * platform/mac/fast/css/input-search-padding-expected.txt: >- * platform/mac/fast/css/pseudo-cache-stale-expected.txt: >- * platform/mac/fast/forms/box-shadow-override-expected.txt: >- * platform/mac/fast/forms/control-restrict-line-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-layer-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-up-expected.txt: >- * platform/mac/fast/forms/input-appearance-spinbutton-visibility-expected.txt: >- * platform/mac/fast/forms/placeholder-position-expected.txt: >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.txt: >- * platform/mac/fast/forms/placeholder-set-value-expected.txt: >- * platform/mac/fast/forms/search-cancel-button-style-sharing-expected.txt: >- * platform/mac/fast/forms/search-display-none-cancel-button-expected.txt: >- * platform/mac/fast/forms/search-placeholder-value-changed-expected.txt: >- * platform/mac/fast/forms/search-rtl-expected.txt: >- * platform/mac/fast/forms/search-styled-expected.txt: >- * platform/mac/fast/forms/search-transformed-expected.txt: >- * platform/mac/fast/forms/search-vertical-alignment-expected.png: >- * platform/mac/fast/forms/search-vertical-alignment-expected.txt: >- * platform/mac/fast/forms/search-zoomed-expected.txt: >- * platform/mac/fast/forms/searchfield-heights-expected.txt: >- * platform/mac/fast/repaint/search-field-cancel-expected.png: >- * platform/mac/fast/repaint/search-field-cancel-expected.txt: >- * platform/mac/fast/replaced/width100percent-searchfield-expected.txt: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.png: >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.txt: >- * fast/forms/search-cancel-button-mouseup.html: Adjust click position for the cancel button. >- * fast/forms/search-abs-pos-cancel-button.html: ditto. >- >-2011-06-21 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, remove duplicate Chromium test expectation. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed. Update Chromium test expectations and baselines. >- >- * platform/chromium-win/fast/css/color-leakage-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by Simon Fraser. >- >- beginTransparencyLayer leaves context color out of sync, bleeds color into text >- https://bugs.webkit.org/show_bug.cgi?id=63093 >- >- * fast/css/color-leakage.html: Added pixel regression test that previously would have the >- border's color spilling into the text. >- * platform/mac/fast/css/color-leakage-expected.png: Added. >- * platform/mac/fast/css/color-leakage-expected.txt: Added. >- >-2011-06-21 Tony Chang <tony@chromium.org> >- >- Reviewed by Eric Seidel. >- >- add css parsing of flex() >- https://bugs.webkit.org/show_bug.cgi?id=62050 >- >- Add a new script-test, but skip it on all platforms since we don't >- build with ENABLE_CSS3_FLEXBOX anywhere. >- >- * css3/flexbox/flex-parsing-expected.txt: Added. >- * css3/flexbox/flex-parsing.html: Added. >- * css3/flexbox/script-tests/TEMPLATE.html: Added. >- * css3/flexbox/script-tests/flex-parsing.js: Added. >- (testFlex): >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-21 Ryosuke Niwa <rniwa@webkit.org> >- >- Remove failing test expectations from various tests for Chromium Windows. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Adrienne Walker <enne@google.com> >- >- Reviewed by Simon Fraser. >- >- Add child layers to the overlap map if their parent belatedly becomes composited >- https://bugs.webkit.org/show_bug.cgi?id=62181 >- >- * compositing/layer-creation/overlap-transformed-layer-expected.txt: Added. >- * compositing/layer-creation/overlap-transformed-layer.html: Added. >- >-2011-06-21 Zhenyao Mo <zmo@google.com> >- >- Reviewed by Kenneth Russell. >- >- Implement drawingBufferWidth/drawingBufferHeight in WebGL >- https://bugs.webkit.org/show_bug.cgi?id=58497 >- >- * fast/canvas/webgl/webgl-specific-expected.txt: >- * fast/canvas/webgl/webgl-specific.html: Test drawingBufferWidth/Height attributes. >- * fast/canvas/webgl/canvas-zero-size-expected.txt: >- * fast/canvas/webgl/canvas-zero-size.html: Added. >- * fast/canvas/webgl/drawingbuffer-test-expected.txt: >- * fast/canvas/webgl/drawingbuffer-test.html: Added. >- >-2011-06-21 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed update of test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Adjust some GPU test expectations to match bot reality. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89354. >- http://trac.webkit.org/changeset/89354 >- https://bugs.webkit.org/show_bug.cgi?id=63099 >- >- Broke tests on Mac (Requested by rniwa on #webkit). >- >- * http/tests/inspector/debugger-test.js: >- (initialize_DebuggerTest.InspectorTest.completeDebuggerTest.disableDebugger): >- >-2011-06-21 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed update of test expectations after r89381. >- >- * platform/chromium-linux/svg/custom/pointer-events-text-expected.png: >- * platform/chromium-win/svg/custom/pointer-events-text-expected.png: >- * platform/chromium-win/svg/custom/pointer-events-text-expected.txt: >- >-2011-06-21 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IndexedDB: IDBObjectStore methods should throw TypeError if required arguments are missing >- https://bugs.webkit.org/show_bug.cgi?id=63087 >- >- * storage/indexeddb/objectStore-required-arguments-expected.txt: Added. >- * storage/indexeddb/objectStore-required-arguments.html: Added. >- >-2011-06-21 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- convert editing/deleting/delete-3608430-fix.html to DumpAsTextEditingTest >- https://bugs.webkit.org/show_bug.cgi?id=62823 >- >- Fixed a superfluous quote, added a doctype, fixed a broken reference to 'abe.gif' >- (now points to abe.png, in the correct location), added a description, and converted >- to a DumpAsTextEditingTest. This test checks that deletion over an image will correctly >- remove an empty element before the image. >- >- * editing/deleting/delete-3608430-fix-expected.txt: Added. >- * editing/deleting/delete-3608430-fix.html: >- * platform/chromium-linux/editing/deleting/delete-3608430-fix-expected.png: Removed. >- * platform/chromium-win/editing/deleting/delete-3608430-fix-expected.png: Removed. >- * platform/chromium-win/editing/deleting/delete-3608430-fix-expected.txt: Removed. >- * platform/gtk/editing/deleting/delete-3608430-fix-expected.txt: Removed. >- * platform/mac/editing/deleting/delete-3608430-fix-expected.png: Removed. >- * platform/mac/editing/deleting/delete-3608430-fix-expected.txt: Removed. >- * platform/qt/editing/deleting/delete-3608430-fix-expected.txt: Removed. >- >-2011-06-21 Rob Buis <rbuis@rim.com> >- >- Reviewed by Dirk Schulze. >- >- All pointer-events fail if text has visibility="hidden" >- https://bugs.webkit.org/show_bug.cgi?id=62209 >- >- Update test results (improvement). >- >- * platform/mac/svg/custom/pointer-events-text-expected.png: >- * platform/mac/svg/custom/pointer-events-text-expected.txt: >- >-2011-06-21 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IndexedDB: keyrange methods should throw TypeError if required arguments are missing >- https://bugs.webkit.org/show_bug.cgi?id=63085 >- >- * storage/indexeddb/keyrange-required-arguments-expected.txt: Added. >- * storage/indexeddb/keyrange-required-arguments.html: Added. >- >-2011-06-21 Dmitry Titov <dimich@chromium.org> >- >- [Chromium] Unreviewed, updating test expectations after r89367, >- fixing typo in test_expectations.txt >- >- * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: >- * platform/chromium-linux/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Removed. >- * platform/chromium-win-xp/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: Removed. >- * platform/chromium-win-xp/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: should throw TypeError when indexedDB.open() name argument is missing >- https://bugs.webkit.org/show_bug.cgi?id=63065 >- >- * storage/indexeddb/database-name-undefined-expected.txt: >- * storage/indexeddb/database-name-undefined.html: >- >-2011-06-21 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: should throw TypeError when index .get() key argument is missing >- https://bugs.webkit.org/show_bug.cgi?id=63079 >- >- * storage/indexeddb/index-get-key-argument-required-expected.txt: Added. >- * storage/indexeddb/index-get-key-argument-required.html: Added. >- >-2011-06-21 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: cursor update() value argument is required >- https://bugs.webkit.org/show_bug.cgi?id=63032 >- >- * storage/indexeddb/cursor-update-value-argument-required-expected.txt: Added. >- * storage/indexeddb/cursor-update-value-argument-required.html: Added. >- >-2011-06-21 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Dirk Schulze. >- >- [GTK] r89314 caused several shadow tests to start failing >- https://bugs.webkit.org/show_bug.cgi?id=63045 >- >- * platform/gtk/Skipped: Unskip tests that are now passing. >- >-2011-06-21 Mikhail Naganov <mnaganov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: [Chromium] Remove old (aggregating) heap profiler. >- https://bugs.webkit.org/show_bug.cgi?id=63049 >- >- * inspector/profiler/detailed-heapshots-test.js: >- >-2011-06-21 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Rob Buis. >- >- SVG no fallback to discrete animation on attribute 'values' for SVGString >- https://bugs.webkit.org/show_bug.cgi?id=57085 >- >- Added new test to check fallback to discrete animations on string values. One >- test needed rebaseline. Even if we do not pass the test it is still a progression. >- >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-31-t-expected.txt: >- * svg/animations/script-tests/svgstring-animation-fallback-to-discrete.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgstring-animation-fallback-to-discrete-expected.txt: Added. >- * svg/animations/svgstring-animation-fallback-to-discrete.html: Added. >- >-2011-06-21 Matthew Delaney <mdelaney@apple.com> >- >- Reviewed by Simon Fraser. >- >- Adding version of fast/events/offsetX-offsetY.html without text run or line height deps >- https://bugs.webkit.org/show_bug.cgi?id=63073 >- >- * fast/events/document-elementFromPoint-expected.txt: Added. >- * fast/events/document-elementFromPoint.html: Added. >- >-2011-06-21 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Remove a now-passing test from chromium's text_expectations. Also >- comment out expectations for a few newly-added tests which were >- removed by a revert. This makes lint-test-files run cleanly. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Removing a now-passing test from chromium's test_expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Pavel Feldman <pfeldman@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: introduce InspectorFrontendAPI for actions initiated from the application menu. >- https://bugs.webkit.org/show_bug.cgi?id=62985 >- >- * http/tests/inspector/debugger-test.js: >- (initialize_DebuggerTest.InspectorTest.completeDebuggerTest.disableDebugger): >- >-2011-06-21 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Skip a test that takes too long on the GPU. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Stephen White <senorblanco@chromium.org> >- >- Reviewed by James Robinson. >- >- New test for patch introduced in r89250 >- https://bugs.webkit.org/show_bug.cgi?id=63016 >- >- * fast/canvas/script-tests/text-globalAlpha.js: Added. >- * fast/canvas/text-globalAlpha-expected.txt: Added. >- * fast/canvas/text-globalAlpha.html: Added. >- >-2011-06-21 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Show content in network panel correctly when two resources were loaded from the same url with different content. >- https://bugs.webkit.org/show_bug.cgi?id=62992 >- >- * http/tests/inspector/network/network-cachedresources-with-same-urls.html: Added. >- * http/tests/inspector/network/resources/resource.php: >- >-2011-06-20 Joseph Pecoraro <joepeck@webkit.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Chromium layout test failure after r89317 >- https://bugs.webkit.org/show_bug.cgi?id=63031 >- >- Event Listener sidebar output prints out the full path >- to the source file in the sourceName property. For testing >- purposes, since the path will be different per system, >- clip the early part of the path and leave the expected part. >- >- * http/tests/inspector/elements-test.js: >- (initialize_ElementTest.InspectorTest.dumpSelectedElementEventListeners): >- (initialize_ElementTest.InspectorTest.dumpObjectPropertySection): >- * platform/chromium/inspector/elements/event-listener-sidebar-expected.txt: >- >-2011-06-17 Pavel Podivilov <podivilov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: can't set breakpoint on the last script line. >- https://bugs.webkit.org/show_bug.cgi?id=62861 >- >- * http/tests/inspector/debugger-test.js: >- (initialize_DebuggerTest): >- * inspector/debugger/debugger-pause-on-breakpoint-expected.txt: >- * inspector/debugger/debugger-pause-on-breakpoint.html: >- >-2011-06-20 Yury Semikhatsky <yurys@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: console messages shouldn't prevent garbage collection of iframes >- https://bugs.webkit.org/show_bug.cgi?id=62996 >- >- * http/tests/inspector-enabled/console-clear-arguments-on-frame-remove-expected.txt: Added. >- * http/tests/inspector-enabled/console-clear-arguments-on-frame-remove.html: Added. >- * http/tests/inspector-enabled/resources/console-clear-arguments-iframe.html: Added. >- >-2011-06-21 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, update Chromium test expectations for some flaky tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-21 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed rollout r89237, r89238 and part of r89243, >- because the original patch r89233 was rolled out by r89320. >- >-2011-06-20 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, update expected test results on Chromium Mac-Leopard. >- >- * platform/chromium-mac-leopard/svg/dom/SVGNumberList-basics-expected.png: Added. >- * platform/chromium-mac-leopard/svg/dom/SVGStringList-basics-expected.png: Added. >- >-2011-06-20 Martin Robinson <mrobinson@igalia.com> >- >- Rebaseline a few more SVG tests for GTK+. >- >- * platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/batik/text/textEffect-expected.txt: >- * platform/gtk/svg/batik/text/textEffect3-expected.txt: >- * platform/gtk/svg/batik/text/xmlSpace-expected.txt: >- * platform/gtk/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/gtk/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/gtk/svg/text/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/text/text-text-04-t-expected.txt: >- * platform/gtk/svg/text/text-text-05-t-expected.txt: >- * platform/gtk/svg/text/text-text-06-t-expected.txt: >- * platform/gtk/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/gtk/svg/wicd/test-rightsizing-b-expected.txt: >- >-2011-06-20 Martin Robinson <mrobinson@igalia.com> >- >- Update the GTK+ skipped list. >- >- Unskip some tests which should now be passing and skip a bunch that >- were caused by a recent regression. Reclassify one failure that isn't >- actually a crasher. >- >- * platform/gtk/Skipped: Update the skipped list. >- >-2011-06-20 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed. Update Chromium test expectation for inspector/elements/event-listener-sidebar.html >- and rebaseline SVG tests changed in r89315. >- >- * platform/chromium-win/svg/dom/SVGNumberList-basics-expected.png: >- * platform/chromium-win/svg/dom/SVGStringList-basics-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Kenneth Russell <kbr@google.com> >- >- Unreviewed. Updated Chromium test expectations to fix ui_test >- WorkerTest.WorkerScriptError after WebKit roll to r89329. >- >- * platform/chromium-win/fast/workers/worker-script-error-expected.txt: >- >-2011-06-20 Dai Mikurube <dmikurube@chromium.org> >- >- Reviewed by Kent Tamura. >- >- Webkit allows disabled option as value of "required" select >- https://bugs.webkit.org/show_bug.cgi?id=62668 >- >- * fast/forms/ValidityState-valueMissing-001-expected.txt: >- * fast/forms/ValidityState-valueMissing-001.html: Changed to generate form validation error for disabled placeholder label option. >- >-2011-06-20 Kent Tamura <tkent@chromium.org> >- >- [Chromium] text expectation update for r89116. >- >- * platform/chromium-linux/media/media-controls-clone-expected.png: Added. >- * platform/chromium-mac/media/media-controls-clone-expected.png: Added. >- * platform/chromium-mac/media/media-controls-clone-expected.txt: Added. >- * platform/chromium-win/media/media-controls-clone-expected.png: Added. >- * platform/chromium-win/media/media-controls-clone-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Zhenyao Mo <zmo@google.com> >- >- Reviewed by Kenneth Russell. >- >- Update ANGLE to r696 >- https://bugs.webkit.org/show_bug.cgi?id=56396 >- >- * fast/canvas/webgl/glsl-conformance.html: Fix a bug in the test (otherwise after the roll this test will fail). >- * platform/chromium/test_expectations.txt: Once this test is fixed, it should pass in chromium. >- >-2011-06-20 Kenneth Russell <kbr@google.com> >- >- Unreviewed Chromium expectations update. Suppressions after recent commits. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Adam Barth <abarth@webkit.org> >- >- Update image results after mpilgrim's exception type change. >- >- * platform/chromium-linux/svg/dom/SVGNumberList-basics-expected.png: >- * platform/chromium-linux/svg/dom/SVGStringList-basics-expected.png: >- * platform/chromium-mac/svg/dom/SVGNumberList-basics-expected.png: Added. >- * platform/chromium-mac/svg/dom/SVGStringList-basics-expected.png: Added. >- >-2011-06-20 Kenneth Russell <kbr@google.com> >- >- Unreviewed Chromium expectations update. Revert the expectations >- for http/tests/misc/acid3.html after r89233 was rolled out. >- Commented on other test expectations added for r89233. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Joseph Pecoraro <joepeck@webkit.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: CRASH if Expanding Event Listener on document >- https://bugs.webkit.org/show_bug.cgi?id=61834 >- >- Add a test to list the event listeners in the sidebar. >- This test includes event listeners on the document, and >- it expands each of the sections which would have caused >- the CRASH fixed by this patch. >- >- * http/tests/inspector/elements-test.js: >- (initialize_ElementTest.InspectorTest.expandAndDumpSelectedElementEventListeners): >- (initialize_ElementTest.InspectorTest.expandSelectedElementEventListeners): >- (initialize_ElementTest.InspectorTest.expandSelectedElementEventListenersSubsections): >- (initialize_ElementTest.InspectorTest.expandSelectedElementEventListenersEventBars): >- (initialize_ElementTest.InspectorTest.dumpSelectedElementEventListeners): >- (initialize_ElementTest.InspectorTest.dumpObjectPropertySection): >- * inspector/elements/event-listener-sidebar-expected.txt: Added. >- * inspector/elements/event-listener-sidebar.html: Added. >- * platform/chromium/inspector/elements/event-listener-sidebar-expected.txt: Added. >- Chromium has slightly different results. It has more properties >- and includes extra information, like line numbers, for functions. >- >-2011-06-20 Joseph Pecoraro <joepeck@webkit.org> >- >- Reviewed by Darin Adler. >- >- Minimize memory due to layer backing stores for pages in the Page Cache >- https://bugs.webkit.org/show_bug.cgi?id=62675 >- >- Test the layer tree of a page with composited content, >- including content in iframes, looks like we expect. >- Enabling clearing backing stores in the PageCache should >- produce the same expected results. >- >- * compositing/iframes/page-cache-layer-tree-expected.txt: Added. >- * compositing/iframes/page-cache-layer-tree.html: Added. >- * compositing/iframes/resources/page-cache-helper.html: Added. >- * compositing/iframes/resources/page-cache-iframe.html: Added. >- >-2011-06-20 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Adam Barth. >- >- IDL generator should throw TypeError instead of SyntaxError on not enough arguments >- https://bugs.webkit.org/show_bug.cgi?id=63011 >- >- To align with WebIDL, we should throw TypeError whenever a function >- is called with missing required arguments. >- >- * fast/canvas/canvas-overloads-drawImageFromRect-expected.txt: >- * fast/canvas/canvas-overloads-fillText-expected.txt: >- * fast/canvas/canvas-overloads-strokeText-expected.txt: >- * fast/canvas/script-tests/canvas-overloads-drawImageFromRect.js: >- * fast/canvas/script-tests/canvas-overloads-fillText.js: >- * fast/canvas/script-tests/canvas-overloads-strokeText.js: >- * fast/canvas/webgl/data-view-test-expected.txt: >- * http/tests/xmlhttprequest/exceptions-expected.txt: >- * platform/chromium-mac/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt: >- * platform/chromium-win/svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt: >- * svg/dom/SVGAngle-expected.txt: >- * svg/dom/SVGColor-expected.txt: >- * svg/dom/SVGLength-expected.txt: >- * svg/dom/SVGLengthList-basics-expected.txt: >- * svg/dom/SVGMatrix-expected.txt: >- * svg/dom/SVGNumberList-basics-expected.txt: >- * svg/dom/SVGPaint-expected.txt: >- * svg/dom/SVGPoint-expected.txt: >- * svg/dom/SVGPointList-basics-expected.txt: >- * svg/dom/SVGStringList-basics-expected.txt: >- * svg/dom/SVGTransform-expected.txt: >- * svg/dom/SVGTransformList-basics-expected.txt: >- * svg/dom/SVGTransformList-expected.txt: >- * svg/dom/svgpath-out-of-bounds-getPathSeg-expected.txt: >- >-2011-05-03 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Dirk Schulze. >- >- REGRESSION: [CAIRO] wrong drawing of Gradients and Patterns on texts >- https://bugs.webkit.org/show_bug.cgi?id=31507 >- >- Unskip a test which is now passing and update pixel results with correct >- output. >- >- * platform/gtk/Skipped: >- * platform/gtk/fast/canvas/canvas-text-alignment-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-11-b-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-pattern-01-b-expected.png: >- * platform/gtk/svg/batik/text/textDecoration-expected.png: >- * platform/gtk/svg/batik/text/textEffect-expected.png: >- * platform/gtk/svg/batik/text/textEffect3-expected.png: >- * platform/gtk/svg/css/composite-shadow-text-expected.png: >- * platform/gtk/svg/css/text-gradient-shadow-expected.png: >- * platform/gtk/svg/custom/js-late-gradient-and-object-creation-expected.png: >- * platform/gtk/svg/custom/js-late-gradient-creation-expected.png: >- * platform/gtk/svg/custom/js-late-pattern-and-object-creation-expected.png: >- * platform/gtk/svg/custom/js-late-pattern-creation-expected.png: >- * platform/gtk/svg/custom/pattern-with-transformation-expected.png: >- * platform/gtk/svg/text/text-align-03-b-expected.png: >- * platform/gtk/svg/transforms/text-with-pattern-with-svg-transform-expected.png: >- >-2011-06-20 Tim Horton <timothy_horton@apple.com> >- >- Reviewed by Darin Adler. >- >- Incorrect clamping on SVG masks when root element is not located at (0,0) >- https://bugs.webkit.org/show_bug.cgi?id=63019 >- >- * platform/mac/svg/custom/absolute-root-position-masking-expected.png: Added. >- * platform/mac/svg/custom/absolute-root-position-masking-expected.txt: Added. >- * platform/qt/svg/custom/absolute-root-position-masking-expected.png: Added. >- * platform/qt/svg/custom/absolute-root-position-masking-expected.txt: Added. >- * svg/custom/absolute-root-position-masking.xhtml: Added. >- >-2011-06-20 Kenneth Russell <kbr@google.com> >- >- Unreviewed. >- >- Rolled out r89233 and r89235 because of crashes in http/tests/misc/acid3.html on Snow Leopard and other platforms >- https://bugs.webkit.org/show_bug.cgi?id=63022 >- >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/batik/text/textEffect-expected.png: >- * platform/mac/svg/batik/text/textEffect-expected.txt: >- * platform/mac/svg/batik/text/textEffect3-expected.png: >- * platform/mac/svg/batik/text/textEffect3-expected.txt: >- * platform/mac/svg/batik/text/xmlSpace-expected.png: >- * platform/mac/svg/batik/text/xmlSpace-expected.txt: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.png: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/mac/svg/custom/svg-fonts-fallback-expected.png: Removed. >- * platform/mac/svg/custom/svg-fonts-fallback-expected.txt: Removed. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.png: Removed. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.txt: Removed. >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png: >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.png: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.png: Removed. >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.txt: Removed. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/mac/svg/text/text-altglyph-01-b-expected.png: >- * platform/mac/svg/text/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.png: Removed. >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Removed. >- * platform/mac/svg/text/text-text-04-t-expected.png: >- * platform/mac/svg/text/text-text-04-t-expected.txt: >- * platform/mac/svg/text/text-text-05-t-expected.png: >- * platform/mac/svg/text/text-text-05-t-expected.txt: >- * platform/mac/svg/text/text-text-06-t-expected.png: >- * platform/mac/svg/text/text-text-06-t-expected.txt: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.png: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.txt: >- * svg/custom/resources/ABCFont.svg: >- * svg/custom/svg-fonts-fallback.xhtml: Removed. >- * svg/custom/svg-fonts-segmented.xhtml: Removed. >- * svg/custom/svg-fonts-word-spacing.html: Removed. >- * svg/text/select-text-svgfont-expected.txt: Removed. >- * svg/text/select-text-svgfont.html: Removed. >- * svg/text/text-overflow-ellipsis-svgfont.html: Removed. >- >-2011-06-20 Ryosuke Niwa <rniwa@webkit.org> >- >- Qt Rebaseline for r89257. >- >- * platform/qt/fast/tokenizer/002-expected.txt: >- * platform/qt/fast/tokenizer/external-script-document-write_2-expected.txt: >- * platform/qt/fast/tokenizer/script_extra_close-expected.txt: >- >-2011-06-20 Martin Robinson <mrobinson@igalia.com> >- >- Rebaseline some tests for GTK+ after r89257. >- >- * platform/gtk/fast/tokenizer/002-expected.txt: >- * platform/gtk/fast/tokenizer/external-script-document-write_2-expected.txt: >- * platform/gtk/fast/tokenizer/script_extra_close-expected.txt: >- >-2011-06-20 Martin Robinson <mrobinson@igalia.com> >- >- Rebaseline many SVG tests for GTK+ after r89233 and update the skipped list to include >- a new test that relies on the didRunInsecureContent callback. Add a platform-specific >- result for fast/dom/Window/window-properties.html as we now have the media stream >- feature enabled on the bots. >- >- * platform/gtk/Skipped: Update the skipped list. >- * platform/gtk/fast/dom/Window/window-properties-expected.txt: Added. >- * platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/gtk/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: >- * platform/gtk/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/batik/text/textEffect-expected.png: >- * platform/gtk/svg/batik/text/textEffect-expected.txt: >- * platform/gtk/svg/batik/text/textEffect3-expected.png: >- * platform/gtk/svg/batik/text/textEffect3-expected.txt: >- * platform/gtk/svg/batik/text/xmlSpace-expected.png: >- * platform/gtk/svg/batik/text/xmlSpace-expected.txt: >- * platform/gtk/svg/custom/glyph-selection-lang-attribute-expected.png: >- * platform/gtk/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.png: >- * platform/gtk/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/gtk/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/gtk/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/gtk/svg/text/text-altglyph-01-b-expected.png: >- * platform/gtk/svg/text/text-altglyph-01-b-expected.txt: >- * platform/gtk/svg/text/text-text-04-t-expected.png: >- * platform/gtk/svg/text/text-text-04-t-expected.txt: >- * platform/gtk/svg/text/text-text-05-t-expected.png: >- * platform/gtk/svg/text/text-text-05-t-expected.txt: >- * platform/gtk/svg/text/text-text-06-t-expected.png: >- * platform/gtk/svg/text/text-text-06-t-expected.txt: >- * platform/gtk/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/gtk/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/gtk/svg/wicd/test-rightsizing-b-expected.png: >- * platform/gtk/svg/wicd/test-rightsizing-b-expected.txt: >- * platform/gtk/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: >- >-2011-06-20 David Levin <levin@chromium.org> >- >- Reviewed by Dmitry Titov. >- >- Expand Web Worker test coverage for onerror to have test for url/line numbers. >- https://bugs.webkit.org/show_bug.cgi?id=62898 >- >- * fast/workers/resources/worker-script-error-bubbled.js: >- (onerror): Added a check for the url and put the last part in the message. >- * fast/workers/worker-script-error-expected.txt: Update to have the new result. >- * fast/workers/worker-script-error.html: Actually print the message from the worker. >- >-2011-06-20 Oliver Hunt <oliver@apple.com> >- >- Reviewed by Darin Adler. >- >- REGRESSION (r79060): Searching for a flight at united.com fails >- https://bugs.webkit.org/show_bug.cgi?id=63003 >- >- Roll out tests that were added by the patch we're rolling out, and add >- a test for the united.com Date. >- >- * fast/js/date-parse-test-expected.txt: >- * fast/js/script-tests/date-parse-test.js: >- >-2011-06-20 Alex Milowski <alex@milowski.com> >- >- Reviewed by Darin Adler. >- >- New tests for scripting changes to DOM for msub, msup, msubsup. >- https://bugs.webkit.org/show_bug.cgi?id=62098 >- >- * mathml/presentation/msub-base-changed.xhtml: Added. >- * mathml/presentation/msub-sub-changed.xhtml: Added. >- * mathml/presentation/msubsup-base-changed.xhtml: Added. >- * mathml/presentation/msubsup-sub-changed.xhtml: Added. >- * mathml/presentation/msubsup-sup-changed.xhtml: Added. >- * mathml/presentation/msup-base-changed.xhtml: Added. >- * mathml/presentation/msup-sup-changed.xhtml: Added. >- * platform/mac/mathml/presentation/msub-base-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msub-base-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msub-sub-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msub-sub-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msubsup-base-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msubsup-base-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msubsup-sub-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msubsup-sub-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msubsup-sup-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msubsup-sup-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msup-base-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msup-base-changed-expected.txt: Added. >- * platform/mac/mathml/presentation/msup-sup-changed-expected.png: Added. >- * platform/mac/mathml/presentation/msup-sup-changed-expected.txt: Added. >- >-2011-06-20 Chang Shu <cshu@webkit.org> >- >- Reviewed by Adam Barth. >- >- fast/js/sputnik/Conformance/10_Execution_Contexts/10.2_Entering_An_Execution_Context/10.2.2_Eval_Code tests fail when showModalDialog isn't supported >- https://bugs.webkit.org/show_bug.cgi?id=53676 >- >- * platform/mac-wk2/Skipped: >- * platform/qt-wk2/Skipped: >- >-2011-06-20 Alex Milowski <alex@milowski.com> >- >- Reviewed by Darin Adler. >- >- New baselines for tests for the change to use anonymous blocks in the fix for: >- https://bugs.webkit.org/show_bug.cgi?id=57901 >- >- * platform/mac/mathml/presentation/over-expected.png: >- * platform/mac/mathml/presentation/over-expected.txt: >- * platform/mac/mathml/presentation/row-alignment-expected.png: >- * platform/mac/mathml/presentation/row-alignment-expected.txt: >- * platform/mac/mathml/presentation/under-expected.png: >- * platform/mac/mathml/presentation/under-expected.txt: >- * platform/mac/mathml/presentation/underover-expected.png: >- * platform/mac/mathml/presentation/underover-expected.txt: >- >-2011-06-20 Stephen White <senorblanco@chromium.org> >- >- Unreviewed, test_expectations fix. >- >- Revert some unintentional changes from my last patch. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- New baselines for tests affected by r62988. >- >- * platform/chromium-linux-x86/svg/wicd/test-scalable-background-image2-expected.png: Removed. >- * platform/chromium-linux/plugins/embed-attributes-style-expected.png: >- * platform/chromium-linux/svg/W3C-SVG-1.1/text-text-08-b-expected.png: >- * platform/chromium-linux/svg/batik/text/textDecoration-expected.png: >- * platform/chromium-linux/svg/css/text-shadow-multiple-expected.png: >- * platform/chromium-linux/svg/filters/sourceAlpha-expected.png: >- * platform/chromium-linux/svg/text/text-text-08-b-expected.png: >- * platform/chromium-linux/svg/wicd/test-scalable-background-image2-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Adam Barth <abarth@webkit.org> >- >- Reviewed by Alexey Proskuryakov. >- >- ASSERT in WebCore::HTMLToken::appendToAttributeName when visiting www.nba.com >- https://bugs.webkit.org/show_bug.cgi?id=61774 >- >- * fast/parser/attributes-on-close-script-expected.txt: Added. >- * fast/parser/attributes-on-close-script.html: Added. >- >-2011-06-20 Juan C. Montemayor <jmont@apple.com> >- >- Reviewed by Oliver Hunt. >- >- No context for javascript parse errors. >- https://bugs.webkit.org/show_bug.cgi?id=62613 >- >- Ran 'run-webkit-tests --reset' with 'fast/js/' and 'sputnik' to update >- those tests with the new parser error messages. >- >- The test 'fast/js/script-tests/parser-syntax-check.js' was fixed to >- not fail with the new parser error messages. >- >- * fast/dom/SelectorAPI/unknown-pseudo-expected.txt: >- * fast/dom/javascript-url-exception-isolation-expected.txt: >- * fast/encoding/meta-in-script-expected.txt: >- * fast/events/window-onerror5-expected.txt: >- * fast/events/window-onerror6-expected.txt: >- * fast/js/assign-expected.txt: >- * fast/js/basic-strict-mode-expected.txt: >- * fast/js/break-ASI-expected.txt: >- * fast/js/function-declaration-expected.txt: >- * fast/js/function-toString-object-literals-expected.txt: >- * fast/js/function-toString-parentheses-expected.txt: >- * fast/js/js-continue-break-restrictions-expected.txt: >- * fast/js/kde/garbage-n-expected.txt: >- * fast/js/kde/parse-expected.txt: >- * fast/js/kde/string-1-n-expected.txt: >- * fast/js/kde/string-2-n-expected.txt: >- * fast/js/mozilla/strict/12.14.1-expected.txt: >- * fast/js/mozilla/strict/13.1-expected.txt: >- * fast/js/mozilla/strict/regress-532254-expected.txt: >- * fast/js/no-semi-insertion-at-end-of-script-expected.txt: >- * fast/js/numeric-escapes-in-string-literals-expected.txt: >- * fast/js/object-extra-comma-expected.txt: >- * fast/js/object-literal-syntax-expected.txt: >- * fast/js/parser-xml-close-comment-expected.txt: >- * fast/js/postfix-syntax-expected.txt: >- * fast/js/regexp-compile-crash-expected.txt: >- * fast/js/removing-Cf-characters-expected.txt: >- * fast/js/reserved-words-as-property-expected.txt: >- * fast/js/script-tests/parser-syntax-check.js: >- (runTest): >- * fast/parser/entity-end-script-tag-expected.txt: >- * fast/regex/non-pattern-characters-expected.txt: >- * html5lib/runner-expected.txt: >- * http/tests/websocket/tests/bad-sub-protocol-control-chars-expected.txt: >- * http/tests/workers/shared-worker-importScripts-expected.txt: >- * http/tests/workers/worker-importScripts-expected.txt: >- * inspector/console/console-log-syntax-error-expected.txt: >- * inspector/debugger/debugger-autocontinue-on-syntax-error-expected.txt: >- * java/lc3/JavaObject/JavaObjectToBoolean-001-n-expected.txt: >- * loader/reload-subresource-when-type-changes-expected.txt: >- * platform/mac/fast/tokenizer/002-expected.txt: >- * platform/mac/fast/tokenizer/external-script-document-write_2-expected.txt: >- * platform/mac/fast/tokenizer/script_extra_close-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.2_White_Space/S7.2_A5_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A2.4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.1_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.3_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A3.4_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.3_Line_Terminators/S7.3_A6_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.4_Comments/S7.4_A2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.4_Comments/S7.4_A3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.4_Comments/S7.4_A4_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.4_Comments/S7.4_A4_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.10-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.11-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.12-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.13-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.14-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.15-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.16-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.17-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.19-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.20-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.21-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.22-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.23-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.24-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.25-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.2_Keywords/S7.5.2_A1.9-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.10-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.11-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.16-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.27-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.5_Tokens/7.5.3_Future_Reserved_Words/S7.5.3_A1.9-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T10-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.7_Punctuators/S7.7_A2_T9-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.3_Numeric_Literals/S7.8.3_A6.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A1.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.1_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A3.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.1_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.4_String_Literals/S7.8.4_A7.2_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.2_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.3_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.3_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.5_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A1.5_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.3_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.3_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.5_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A2.5_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A3.1_T7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A3.1_T8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.8_Literals/7.8.5_Regular_Expression_Literals/S7.8.5_A3.1_T9-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples/S7.9.2_A1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples/S7.9.2_A1_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/7.9.2_Examples/S7.9.2_A1_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A10_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A10_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A10_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A10_T8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A11_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A11_T8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.1_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A5.3_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T10-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T8-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.2_T9-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T3-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T4-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T5-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.3_T7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.4_T1-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A6.4_T2-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A9_T6-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A9_T7-expected.txt: >- * sputnik/Conformance/07_Lexical_Conventions/7.9_Automatic_Semicolon_Insertion/S7.9_A9_T8-expected.txt: >- * sputnik/Conformance/08_Types/8.2_The_Null_Type/S8.2_A2-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A13_T1-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A13_T2-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A13_T3-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A14_T1-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A14_T2-expected.txt: >- * sputnik/Conformance/08_Types/8.4_The_String_Type/S8.4_A14_T3-expected.txt: >- * sputnik/Conformance/11_Expressions/11.2_Left_Hand_Side_Expressions/11.2.4_Argument_Lists/S11.2.4_A1.3_T1-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.1_Postfix_Increment_Operator/S11.3.1_A1.1_T1-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.1_Postfix_Increment_Operator/S11.3.1_A1.1_T2-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.1_Postfix_Increment_Operator/S11.3.1_A1.1_T3-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.1_Postfix_Increment_Operator/S11.3.1_A1.1_T4-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.2_Postfix_Decrement_Operator/S11.3.2_A1.1_T1-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.2_Postfix_Decrement_Operator/S11.3.2_A1.1_T2-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.2_Postfix_Decrement_Operator/S11.3.2_A1.1_T3-expected.txt: >- * sputnik/Conformance/11_Expressions/11.3_PostfixExpressions/11.3.2_Postfix_Decrement_Operator/S11.3.2_A1.1_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A2_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A3_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A3_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A3_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A3_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.11_The_switch_Statement/S12.11_A3_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T10-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T11-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T12-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T13-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T14-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T15-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T6-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T7-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T8-expected.txt: >- * sputnik/Conformance/12_Statement/12.14_The_try_Statement/S12.14_A16_T9-expected.txt: >- * sputnik/Conformance/12_Statement/12.1_Block/S12.1_A4_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.1_Block/S12.1_A4_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T6-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T7-expected.txt: >- * sputnik/Conformance/12_Statement/12.2_Variable_Statement/S12.2_A8_T8-expected.txt: >- * sputnik/Conformance/12_Statement/12.4_Expression_Statement/S12.4_A1-expected.txt: >- * sputnik/Conformance/12_Statement/12.5_The_if_Statement/S12.5_A11-expected.txt: >- * sputnik/Conformance/12_Statement/12.5_The_if_Statement/S12.5_A6_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.5_The_if_Statement/S12.5_A6_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.5_The_if_Statement/S12.5_A8-expected.txt: >- * sputnik/Conformance/12_Statement/12.5_The_if_Statement/S12.5_A9_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A12-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A13_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A15-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.1_The_do_while_Statement/S12.6.1_A6_T6-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A13_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A15-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.2_The_while_statement/S12.6.2_A6_T6-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A11.1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A11_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A12.1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A12_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A4.1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A4_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A4_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A7.1_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A7.1_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A7_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A7_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8.1_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8.1_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8.1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.3_The_for_Statement/S12.6.3_A8_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A13_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.6_Iteration_Statements/12.6.4_The_for_in_Statement/S12.6.4_A15-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A1_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A1_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A1_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A5_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A5_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A5_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A6-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A8_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.7_The_continue_Statement/S12.7_A8_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A1_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A1_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A1_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A5_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A5_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A5_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A6-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A8_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.8_The_break_Statement/S12.8_A8_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T1-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T10-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T2-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T3-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T4-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T5-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T6-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T7-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T8-expected.txt: >- * sputnik/Conformance/12_Statement/12.9_The_return_Statement/S12.9_A1_T9-expected.txt: >- * sputnik/Conformance/13_Function_Definition/S13_A7_T3-expected.txt: >- * sputnik/Conformance/15_Native_Objects/15.1_The_Global_Object/15.1.2/15.1.2.1_eval/S15.1.2.1_A2_T2-expected.txt: >- * sputnik/Conformance/15_Native_Objects/15.3_Function/15.3.4/15.3.4.2_Function.prototype.toString/S15.3.4.2_A1_T1-expected.txt: >- >-2011-06-20 Mike Reed <reed@google.com> >- >- Reviewed by Stephen White. >- >- disable test in preparation for chromium change and new baseline >- https://bugs.webkit.org/show_bug.cgi?id=62984 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Ilya Tikhonovsky <loislo@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: It would be useful to be able to pause on element's style change. >- https://bugs.webkit.org/show_bug.cgi?id=62982 >- >- Current workaround is to use mutation events but it's awkward and doesn't >- compare _usability-wise_ to what could be implemented as native support in web inspector. >- In complex applications, being able to see which code causes element to change its style is indispensable. >- >- * inspector/debugger/dom-breakpoints.html: >- * platform/chromium/inspector/debugger/dom-breakpoints-expected.txt: >- >-2011-06-20 Chang Shu <cshu@webkit.org> >- >- unreviewed. >- >- Unskip passing tests. The bug(42317) has been resolved for a long time. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-20 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] Daily gardening. >- >- * platform/mac-wk2/Skipped: Skip some tests bacause of missing animation pause API >- and skip one test because of missing window.internals.createShadowContentElement. >- * platform/qt-wk2/Skipped: Skip one failing SVG test after r89233. >- * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: Updated after r89233. >- * platform/qt-wk2/fast/dom/Window/window-property-descriptors-expected.txt: Updated after r89233. >- * platform/qt-wk2/fast/dom/prototype-inheritance-2-expected.txt: Updated after r89233. >- >-2011-06-20 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, add more Chromium expectations for tests which started to fail since r89233. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, fix an error in the last edit of Chromium test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, add new Chromium test expectations since r89233. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-20 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Skip failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-20 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed, update Qt specific expected results after r89233, and skip failing tests until fix. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths >- from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- * platform/qt/Skipped: >- * platform/qt/fast/dom/Window/window-properties-expected.png: Added. >- * platform/qt/fast/dom/Window/window-properties-expected.txt: >- * platform/qt/fast/dom/Window/window-property-descriptors-expected.png: Added. >- * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: >- * platform/qt/fast/dom/prototype-inheritance-2-expected.png: Added. >- * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: >- * platform/qt/fast/dom/prototype-inheritance-expected.png: Added. >- * platform/qt/fast/dom/prototype-inheritance-expected.txt: >- * platform/qt/fast/js/global-constructors-expected.png: Added. >- * platform/qt/fast/js/global-constructors-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1-SE/types-dom-07-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/filters-turb-02-f-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-06-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-07-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-elems-08-t-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-01-b-expected.txt: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.png: >- * platform/qt/svg/W3C-SVG-1.1/render-groups-03-t-expected.txt: >- * platform/qt/svg/custom/glyph-transformation-with-hkern-expected.png: Added. >- * platform/qt/svg/custom/glyph-transformation-with-hkern-expected.txt: Added. >- * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.png: >- * platform/qt/svg/custom/scrolling-embedded-svg-file-image-repaint-problem-expected.txt: >- * platform/qt/svg/custom/svg-features-expected.png: Added. >- * platform/qt/svg/custom/svg-features-expected.txt: Added. >- * platform/qt/svg/custom/svg-fonts-in-html-expected.png: >- * platform/qt/svg/custom/svg-fonts-in-html-expected.txt: >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/qt/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/qt/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/qt/svg/wicd/test-rightsizing-b-expected.png: >- * platform/qt/svg/wicd/test-rightsizing-b-expected.txt: >- >-2011-06-20 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Reviewed by Rob Buis. >- >- Integrate SVG Fonts within GlyphPage concept, removing the special SVG code paths from Font, making it possible to reuse the simple text code path for SVG Fonts >- https://bugs.webkit.org/show_bug.cgi?id=59085 >- >- font substitution doesn't work for HTML text using SVG fonts >- https://bugs.webkit.org/show_bug.cgi?id=17608 >- >- Selection rects are wrong for text with SVG fonts >- https://bugs.webkit.org/show_bug.cgi?id=25460 >- >- With @font-face, SVG fonts only work as primary, non-segmented >- https://bugs.webkit.org/show_bug.cgi?id=32227 >- >- When using SVG fonts with @font-face word-spacing and text-align: justify are not being honored >- https://bugs.webkit.org/show_bug.cgi?id=34236 >- >- SVG @font-face breaks text-overflow: ellipsis >- https://bugs.webkit.org/show_bug.cgi?id=36840 >- >- REGRESSION: SVG Font selection problems >- https://bugs.webkit.org/show_bug.cgi?id=41934 >- >- Rewrite the SVG Fonts support to fully integrate within the GlyphPage concept and the "simple" code path used to render platform fonts. >- That means the special logic for measuring text using SVG Fonts, calculating offset for positions, computing selection rects etc. is all gone now. >- There's no difference anymore between using a native font or a SVG Font, in terms of these operations. >- >- Update SVG pixel test baseline. >- >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-03-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/fonts-glyph-04-t-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-08-b-expected.txt: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/batik/text/textEffect-expected.png: >- * platform/mac/svg/batik/text/textEffect-expected.txt: >- * platform/mac/svg/batik/text/textEffect3-expected.png: >- * platform/mac/svg/batik/text/textEffect3-expected.txt: >- * platform/mac/svg/batik/text/xmlSpace-expected.png: >- * platform/mac/svg/batik/text/xmlSpace-expected.txt: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.png: >- * platform/mac/svg/custom/glyph-selection-lang-attribute-expected.txt: >- * platform/mac/svg/custom/svg-fonts-fallback-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-fallback-expected.txt: Added. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-segmented-expected.txt: Added. >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.png: >- * platform/mac/svg/custom/svg-fonts-with-no-element-reference-expected.txt: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.png: >- * platform/mac/svg/custom/svg-fonts-without-missing-glyph-expected.txt: >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.png: Added. >- * platform/mac/svg/custom/svg-fonts-word-spacing-expected.txt: Added. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-dom-preserveAlpha-attr-expected.png: >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.png: >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.txt: >- * platform/mac/svg/text/text-altglyph-01-b-expected.png: >- * platform/mac/svg/text/text-altglyph-01-b-expected.txt: >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.png: Added. >- * platform/mac/svg/text/text-overflow-ellipsis-svgfont-expected.txt: Added. >- * platform/mac/svg/text/text-text-04-t-expected.png: >- * platform/mac/svg/text/text-text-04-t-expected.txt: >- * platform/mac/svg/text/text-text-05-t-expected.png: >- * platform/mac/svg/text/text-text-05-t-expected.txt: >- * platform/mac/svg/text/text-text-06-t-expected.png: >- * platform/mac/svg/text/text-text-06-t-expected.txt: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png: >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.txt: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.png: >- * platform/mac/svg/wicd/test-rightsizing-b-expected.txt: >- * svg/custom/resources/ABCFont.svg: >- * svg/custom/svg-fonts-fallback.xhtml: Added. >- * svg/custom/svg-fonts-segmented.xhtml: Added. >- * svg/custom/svg-fonts-word-spacing.html: Added. >- * svg/text/select-text-svgfont-expected.txt: Added. >- * svg/text/select-text-svgfont.html: Added. >- * svg/text/text-overflow-ellipsis-svgfont.html: Added. >- >-2011-06-19 MORITA Hajime <morrita@google.com> >- >- Reviewed by Dimitri Glazkov. >- >- The internals object should have createShadowContentElement() >- https://bugs.webkit.org/show_bug.cgi?id=62432 >- >- * fast/dom/shadow/create-content-element-expected.txt: Added. >- * fast/dom/shadow/create-content-element.html: Added. >- >-2011-06-19 Keishi Hattori <keishi@webkit.org> >- >- Reviewed by Kent Tamura. >- >- Clicking indeterminate checkbox should flip checkedness state >- https://bugs.webkit.org/show_bug.cgi?id=62262 >- >- * fast/forms/checkbox-click-indeterminate-expected.txt: Added. >- * fast/forms/checkbox-click-indeterminate.html: Added. Tests behavior when clicking indeterminate checkbox. >- >-2011-06-19 Oliver Hunt <oliver@apple.com> >- >- Reviewed by Sam Weinig. >- >- Correct logic for putting errors on the correct line when handling JSONP >- https://bugs.webkit.org/show_bug.cgi?id=62962 >- >- Add test case this time >- >- * fast/js/parser-syntax-check-expected.txt: >- * fast/js/script-tests/parser-syntax-check.js: >- >-2011-06-19 Adam Bergkvist <adam.bergkvist@ericsson.com> >- >- Reviewed by Martin Robinson. >- >- [GTK] Enable Media Stream feature and make it default on >- https://bugs.webkit.org/show_bug.cgi?id=60394 >- >- Unskipped the Media Stream tests. >- >- * platform/gtk/Skipped: >- >-2011-06-19 Dirk Schulze <krit@webkit.org> >- >- Uneviewed. >- >- SVGAnimatorFactory does not support SVGNumber >- https://bugs.webkit.org/show_bug.cgi?id=62938 >- >- Add animation tests of previous patch to skip list for webkit2. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-19 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimatorFactory does not support SVGNumber >- https://bugs.webkit.org/show_bug.cgi?id=62938 >- >- Added new tests to check behavior on SVGNumber animation. >- >- * svg/animations/script-tests/svgnumber-animation-1.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumber-animation-2.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgnumber-animation-3.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgnumber-animation-1-expected.txt: Added. >- * svg/animations/svgnumber-animation-1.html: Added. >- * svg/animations/svgnumber-animation-2-expected.txt: Added. >- * svg/animations/svgnumber-animation-2.html: Added. >- * svg/animations/svgnumber-animation-3-expected.txt: Added. >- * svg/animations/svgnumber-animation-3.html: Added. >- >-2011-06-19 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Marking several tests as crashing on Mac GPU. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-19 Robert Hogan <robert@webkit.org> >- >- Reviewed by Alexey Proskuryakov. >- >- [Qt] Qt Counterpart for http://trac.webkit.org/changeset/42078 >- https://bugs.webkit.org/show_bug.cgi?id=62514 >- >- * platform/qt/Skipped: Unskip http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html >- >-2011-06-18 Yufeng Shen <miletus@chromium.org> >- >- Reviewed by Darin Fisher. >- >- Adding "force" filed to Touch Event >- https://bugs.webkit.org/show_bug.cgi?id=62766 >- >- * fast/events/touch/document-create-touch-expected.txt: >- * fast/events/touch/script-tests/document-create-touch.js: >- >-2011-06-18 Alice Boxhall <aboxhall@chromium.org> >- >- Reviewed by Chris Fleizach. >- >- Accessibility description for an element should make use of aria-labelledby. >- https://bugs.webkit.org/show_bug.cgi?id=61995 >- >- * accessibility/aria-labelledby-on-input.html: >- * accessibility/aria-labelledby-overrides-aria-label-expected.txt: Added. >- * accessibility/aria-labelledby-overrides-aria-label.html: Added. >- * accessibility/aria-labelledby-overrides-label-expected.txt: >- * accessibility/aria-labelledby-overrides-label.html: >- * accessibility/aria-labelledby-stay-within.html: >- * platform/mac/accessibility/aria-labelledby-on-input-expected.txt: >- >-2011-06-18 Adam Bergkvist <adam.bergkvist@ericsson.com> >- >- Reviewed by Tony Gentilcore. >- >- Media Stream no-interface-object test should not have ReferenceError message in expected results >- https://bugs.webkit.org/show_bug.cgi?id=60391 >- >- Fixed no-interface-object test to not include ReferenceError message in expected results >- >- * fast/dom/MediaStream/no-interface-object-expected.txt: >- * fast/dom/MediaStream/script-tests/no-interface-object.js: >- (shouldThrowReferenceError): >- (test): >- >-2011-06-18 Jeremy Moskovich <jeremy@chromium.org> >- >- Reviewed by Eric Seidel. >- >- Set text-align:-webkit-match-parent for li elements in the default style sheet. >- https://bugs.webkit.org/show_bug.cgi?id=57232 >- >- * fast/css/list-item-text-align-expected.txt: Added. >- * fast/css/list-item-text-align.html: Added. >- >-2011-06-18 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Skip failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-18 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89154. >- http://trac.webkit.org/changeset/89154 >- https://bugs.webkit.org/show_bug.cgi?id=62926 >- >- It broke debug build on Qt (Requested by Ossy_weekend on >- #webkit). >- >- * platform/qt/Skipped: >- >-2011-06-17 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Rob Buis. >- >- SVGAnimation should use direct unit animation for SVGAngle >- https://bugs.webkit.org/show_bug.cgi?id=62807 >- >- Tests animation of SVGAngle with different units. >- >- * svg/animations/script-tests/svgangle-animation-deg-to-grad.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgangle-animation-deg-to-rad.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgangle-animation-grad-to-deg.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgangle-animation-grad-to-rad.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgangle-animation-rad-to-deg.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svgangle-animation-rad-to-grad.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/svgangle-animation-deg-to-grad-expected.txt: Added. >- * svg/animations/svgangle-animation-deg-to-grad.html: Added. >- * svg/animations/svgangle-animation-deg-to-rad-expected.txt: Added. >- * svg/animations/svgangle-animation-deg-to-rad.html: Added. >- * svg/animations/svgangle-animation-grad-to-deg-expected.txt: Added. >- * svg/animations/svgangle-animation-grad-to-deg.html: Added. >- * svg/animations/svgangle-animation-grad-to-rad-expected.txt: Added. >- * svg/animations/svgangle-animation-grad-to-rad.html: Added. >- * svg/animations/svgangle-animation-rad-to-deg-expected.txt: Added. >- * svg/animations/svgangle-animation-rad-to-deg.html: Added. >- * svg/animations/svgangle-animation-rad-to-grad-expected.txt: Added. >- * svg/animations/svgangle-animation-rad-to-grad.html: Added. >- >-2011-06-17 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Darin Adler. >- >- Assertion failure in SVGTextLayoutEngine constructor (!m_layoutAttributes.isEmpty()) >- https://bugs.webkit.org/show_bug.cgi?id=62884 >- >- * svg/custom/assert-empty-layout-attributes-expected.txt: Added. >- * svg/custom/assert-empty-layout-attributes.svg: Added. >- >-2011-06-17 David Grogan <dgrogan@chromium.org> >- >- Reviewed by Eric Seidel. >- >- layout test for misalignment caused by float->int rounding error >- https://bugs.webkit.org/show_bug.cgi?id=61906 >- >- Just the layout test demonstrating the problem. It will be a while >- until I have cycles to play around with the fix started in >- https://bugs.webkit.org/show_bug.cgi?id=22759. And it'd be nice to >- know if this were fixed for free via the ongoing systemic int->float >- refactoring. >- >- * css1/units/rounding-expected.txt: Added. >- * css1/units/rounding.html: Added. >- >-2011-06-17 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Some new chromium test expectations and updates. >- >- * platform/chromium-mac-leopard/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-17 Gavin Barraclough <barraclough@apple.com> >- >- Rubber Stamped by Sam Weinig. >- >- Land a couple more regex tests. >- >- * fast/regex/pcre-test-1-expected.txt: >- * fast/regex/script-tests/pcre-test-1.js: >- >-2011-06-17 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Dave Hyatt. >- >- Tests that we do not crash when unable to remove floats from >- parent's next siblings blocks. >- https://bugs.webkit.org/show_bug.cgi?id=62875 >- >- * fast/block/float/float-not-removed-from-next-sibling5-expected.txt: Added. >- * fast/block/float/float-not-removed-from-next-sibling5.html: Added. >- >-2011-06-17 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Network panel does not show main resource content for iframes deleted from the document >- https://bugs.webkit.org/show_bug.cgi?id=62810 >- >- * http/tests/inspector/network/network-iframe-load-and-delete-expected.txt: Added. >- * http/tests/inspector/network/network-iframe-load-and-delete.html: Added. >- >-2011-06-17 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix Chromium test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-17 Ryosuke Niwa <rniwa@webkit.org> >- >- Add image failing expectations for Leopard after r89091. >- I'm giving up on these tests; no matter what I do, they fail. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-17 Chris Evans <cevans@chromium.org> >- >- Reviewed by Adam Barth. >- >- Detect mixed-scripting involving https -> http redirects >- https://bugs.webkit.org/show_bug.cgi?id=62846 >- >- * http/tests/security/mixedContent/redirect-https-to-http-script-in-iframe-expected.txt: Update expectation. >- * http/tests/security/mixedContent/redirect-https-to-http-script-in-iframe.html: Remove FIXME as the test is now working as expected. >- >-2011-06-12 Robert Hogan <robert@webkit.org> >- >- Reviewed by Alexey Proskuryakov. >- >- [Qt] Qt Counterpart for http://trac.webkit.org/changeset/42078 >- https://bugs.webkit.org/show_bug.cgi?id=62514 >- >- * platform/qt/Skipped: Unskip http/tests/xmlhttprequest/redirect-cross-origin-tripmine.html >- >-2011-06-17 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium Mac rebaselines for r89091. >- >- * platform/chromium-mac-leopard/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Added. >- * platform/chromium-mac-leopard/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Added. >- * platform/chromium-mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-actual.png: Added. >- * platform/chromium-mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-actual.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-17 Chang Shu <cshu@webkit.org> >- >- Reviewed by Anders Carlsson. >- >- [Qt] [WK2] Debug info leaks to stdout from plugins in Qt WebKit2 layout tests >- https://bugs.webkit.org/show_bug.cgi?id=61940 >- >- Unskip passed tests. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-17 Annie Sullivan <sullivan@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- Layout tests editing/inserting/return-key-in-hidden-field.html and return-key-span-start.html don't run in webkit2 >- https://bugs.webkit.org/show_bug.cgi?id=62734 >- >- Modify tests to use execCommand(insertParagraph) instead of eventSender to inject a new line. >- >- * editing/inserting/return-key-in-hidden-field-expected.txt: >- * editing/inserting/return-key-in-hidden-field.html: >- * editing/inserting/return-key-span-start.html: >- * platform/mac-wk2/Skipped: >- >-2011-06-17 Annie Sullivan <sullivan@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- div can be a child of span on InsertParagraph >- https://bugs.webkit.org/show_bug.cgi?id=62687 >- >- Update layout test results with new code to prevent div inside of span. >- >- * editing/inserting/return-key-span-start-expected.txt: The new result is the correct behavior. >- * editing/inserting/return-with-object-element-expected.txt: An extra space has been added before the newline. >- >-2011-06-17 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, update Chromium test expectation for fast/dom/HTMLMeterElement/meter-writing-mode.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-17 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] fast/frames/flattening tests fail intermittently >- https://bugs.webkit.org/show_bug.cgi?id=62785 >- >- * platform/qt-wk2/Skipped: Add one more flakey test - fast/frames/flattening/frameset-flattening-grid.html >- >-2011-06-17 Csaba Osztrogonác <ossy@webkit.org> >- >- new test introduced in r89118, but fail on Qt >- https://bugs.webkit.org/show_bug.cgi?id=62847 >- >- * platform/qt/Skipped: Skip fast/parser/xhtml-innerhtml-null-byte.xhtml. >- >-2011-06-17 Kent Tamura <tkent@chromium.org> >- >- [Mac] Correct svn:mime-type to image/png. >- >- * platform/mac/compositing/framesets/composited-frame-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/geometry/horizontal-scroll-composited-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/geometry/layer-due-to-layer-children-deep-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/geometry/layer-due-to-layer-children-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/geometry/vertical-scroll-composited-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/iframes/composited-iframe-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/iframes/iframe-in-composited-layer-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/images/content-image-change-expected.png: Added property svn:mime-type. >- * platform/mac/compositing/objects/composited-object-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/repaint/layer-repaint-expected.png: Modified property svn:mime-type. >- * platform/mac/compositing/webgl/webgl-no-alpha-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/class_as_selector-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/comments-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/containment-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/contextual_selectors-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/grouping-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/id_as_selector-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/basic/inheritance-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_bottom_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_bottom_width-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_bottom_width_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_color-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_color_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_left-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_left_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_left_width-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_left_width_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_right-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_right_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_right_width-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_right_width_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_style-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_style_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_top-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_top_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_top_width-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_top_width_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_width-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/border_width_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/clear-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/clear_float-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/float-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/float_elements_in_series-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/float_on_text_elements-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/height-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_bottom_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_left-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_left_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_right-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_right_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_top-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/margin_top_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_bottom_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_left-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_left_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_right-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_right_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_top-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/box_properties/padding_top_inline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/cascade/cascade_order-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/cascade/important-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/display-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/list_style-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/list_style_image-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/list_style_position-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/list_style_type-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/classification/white_space-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background_attachment-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background_color-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background_image-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background_position-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/background_repeat-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/color_and_background/color-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/font_properties/font-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/font_properties/font_size-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/font_properties/font_style-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/font_properties/font_weight-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/canvas-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/floating_elements-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/height_of_lines-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/horizontal_formatting-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/inline_elements-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/replaced_elements-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/formatting_model/vertical_formatting-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/pseudo/anchor-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/pseudo/firstletter-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/pseudo/firstline-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/pseudo/multiple_pseudo_elements-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/pseudo/pseudo_elements_in_selectors-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/letter_spacing-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/line_height-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/text_align-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/text_decoration-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/text_indent-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/vertical_align-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/text_properties/word_spacing-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/units/color_units-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/units/length_units-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/units/percentage_units-expected.png: Modified property svn:mime-type. >- * platform/mac/css1/units/urls-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-014-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-016-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-017-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-018-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-019-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-021-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-022-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-023-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-024-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-025-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-026-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-028-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-029-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-030-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-031-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-032-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-033-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-035-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-height-036-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-013-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-015-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-020-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-022-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-027-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-029-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-034-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-036-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-041-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-043-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-048-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-050-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-055-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-057-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-062-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-064-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-069-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-071-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/absolute-replaced-width-076-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-013-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-014-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-015-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-height-016-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-non-replaced-width-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/block-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-008-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-009-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-010-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-non-replaced-width-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/float-replaced-width-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-height-007-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-006-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-011-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-012-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-013-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-014-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/inline-replaced-width-015-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-elements-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-002-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-003-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-004-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-005-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/replaced-min-max-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/width-non-replaced-inline-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/20110323/width-replaced-element-001-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-c71-fwd-parsing-00-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-c71-fwd-parsing-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-c71-fwd-parsing-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-c71-fwd-parsing-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-c71-fwd-parsing-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-05-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0402-syntax-06-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0505-c16-descendant-00-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0505-c16-descendant-01-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0505-c16-descendant-02-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0509-c15-ids-00-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0509-c15-ids-01-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0509-id-sel-syntax-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0509-id-sel-syntax-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0510-c25-pseudo-elmnt-00-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0511-c21-pseud-anch-00-e-i-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0511-c21-pseud-link-00-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0511-c21-pseud-link-01-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0511-c21-pseud-link-02-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0511-c21-pseud-link-03-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0602-c13-inh-underlin-00-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0602-c13-inheritance-00-e-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0602-inherit-bdr-pad-b-00-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0603-c11-import-00-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0801-c412-hz-box-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5501-imrgn-t-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5501-mrgn-t-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-01-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-02-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-03-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-04-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-05-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-imrgn-r-06-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-mrgn-r-00-c-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-mrgn-r-01-c-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-mrgn-r-02-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5502-mrgn-r-03-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5503-imrgn-b-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5503-mrgn-b-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-01-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-02-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-03-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-04-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-05-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-imrgn-l-06-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-mrgn-l-00-c-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-mrgn-l-01-c-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-mrgn-l-02-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5504-mrgn-l-03-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5505-imrgn-00-a-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5505-mrgn-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5505-mrgn-01-e-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5505-mrgn-02-c-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0803-c5505-mrgn-03-c-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5506-ipadn-t-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5506-ipadn-t-01-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5506-ipadn-t-02-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5506-padn-t-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-ipadn-r-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-ipadn-r-01-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-ipadn-r-02-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-ipadn-r-03-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-ipadn-r-04-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-padn-r-00-c-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-padn-r-01-c-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-padn-r-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5507-padn-r-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5508-ipadn-b-00-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5508-ipadn-b-01-f-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5508-ipadn-b-02-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5508-ipadn-b-03-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-ipadn-l-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-ipadn-l-01-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-ipadn-l-02-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-ipadn-l-03-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-ipadn-l-04-f-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-padn-l-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-padn-l-01-b-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-padn-l-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5509-padn-l-03-f-g-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5510-ipadn-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5510-padn-00-b-ag-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5510-padn-01-e-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0804-c5510-padn-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5511-brdr-tw-00-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5511-brdr-tw-01-b-g-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5511-brdr-tw-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5511-brdr-tw-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5511-ibrdr-tw-00-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5512-brdr-rw-00-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5512-brdr-rw-01-b-g-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5512-brdr-rw-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5512-brdr-rw-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t0805-c5512-ibrdr-rw-00-a-expected.png: Modified property svn:mime-type. >- * platform/mac/css2.1/t09-c5526c-display-00-e-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/4922367-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5026848-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5099303-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5126166-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5144139-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5206311-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5272440-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5369009-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5390681-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5433862-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/5483370-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-br-013-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-first-list-item-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-line-015-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-line-016-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-line-017-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/delete-ws-fixup-002-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/merge-endOfParagraph-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/merge-into-empty-block-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/merge-no-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/merge-whitespace-pre-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/pruning-after-merge-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/smart-delete-003-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/smart-delete-004-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/table-cells-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/deleting/type-delete-after-quote-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4580583-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4580583-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4641880-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4641880-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4747450-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4916402-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4916541-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/4924441-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5080333-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5080333-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5136770-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5138441-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5190926-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5481523-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/5482023-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/create-list-with-hr-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/find-after-replace-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/findString-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/insertHorizontalRule-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/insertImage-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/execCommand/remove-list-from-range-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/12882-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/4278698-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/4840662-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/4875189-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5002441-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5058163-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5058163-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5156401-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5418891-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5510537-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/5549929-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/6703873-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/break-blockquote-after-delete-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/editable-html-element-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/edited-whitespace-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/editing-empty-divs-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-3786362-fix-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-at-end-01-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-at-end-02-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-009-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-001-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-002-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-003-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-004-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-005-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-br-quoted-006-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-paragraph-01-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-paragraph-02-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-paragraph-03-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-paragraph-04-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/insert-paragraph-05-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/line-break-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/multiple-lines-selected-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/paragraph-separator-03-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/paragraph-separator-in-table-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/inserting/typing-around-br-001-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/3976872-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4076267-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4242293-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4631972-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4641033-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4944770-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4944770-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4947130-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/4989774-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5032095-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5071074-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5071074-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5247341-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5368833-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5387578-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5478250-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/5601583-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/8145-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/8145-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/bad-placeholder-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/copy-standalone-image-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/displaced-generic-placeholder-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/drop-text-without-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-after-delete-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-after-delete-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-end-blockquote-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-end-borders-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-end-list-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-end-table-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/merge-start-blockquote-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/nested-blocks-with-text-area-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/nested-blocks-with-text-field-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-RTFD-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-blockquote-after-blockquote-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-4-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-blockquote-into-blockquote-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-table-003-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-text-013-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-text-014-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/paste-text-016-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/pasting-object-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/pasting-tabs-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/prevent-block-nesting-01-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/quirks-mode-br-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/smart-drag-drop-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/smart-paste-008-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/styled-element-markup-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/subframe-dragndrop-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/testcase-9507-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/undoable-fragment-removes-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/pasteboard/unrendered-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/13804-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/14971-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/25228-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4402375-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4818145-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4889598-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4895428-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4895428-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4932260-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4947387-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4960116-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4975120-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/4983858-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5007143-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5007143-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5057506-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5057506-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5076323-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5081257-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5099303-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5131716-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5131716-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5131716-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5131716-4-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5195166-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5232159-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5234383-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5234383-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5240265-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/5354455-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/6476-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/7152-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/7152-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/addRange-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/after-line-wrap-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-and-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-ltr-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-ltr-2-left-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-ltr-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-ltr-right-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-rtl-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-rtl-2-left-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-rtl-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/caret-rtl-right-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/clear-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/click-start-of-line-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/contenteditable-click-inside-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/designmode-no-caret-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/drag-in-iframe-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/editable-html-element-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/editable-non-editable-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/end-of-document-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/expanding-selections-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/expanding-selections2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/focus_editable_html-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/iframe-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/inline-closest-leaf-child-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/inline-table-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/leave-requested-block-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-4-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-5-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-6-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-7-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-8-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/mixed-editability-9-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/move-by-sentence-linebreak-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/node-removal-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/node-removal-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/paragraph-granularity-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/previous-line-position-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/replace-selection-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/replaced-boundaries-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/replaced-boundaries-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/replaced-boundaries-3-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-across-readonly-input-1-expected.png: Added property svn:mime-type. >- * platform/mac/editing/selection/select-across-readonly-input-2-expected.png: Added property svn:mime-type. >- * platform/mac/editing/selection/select-across-readonly-input-3-expected.png: Added property svn:mime-type. >- * platform/mac/editing/selection/select-across-readonly-input-4-expected.png: Added property svn:mime-type. >- * platform/mac/editing/selection/select-across-readonly-input-5-expected.png: Added property svn:mime-type. >- * platform/mac/editing/selection/select-all-005-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-all-006-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-all-iframe-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-box-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-element-paragraph-boundary-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-from-textfield-outwards-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/select-text-overflow-ellipsis-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/selection-actions-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/selection-background-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/triple-click-in-pre-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/unrendered-space-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/word-granularity-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/wrapped-line-caret-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/selection/wrapped-line-caret-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-1-expected.png: Added property svn:mime-type. >- * platform/mac/editing/spelling/autocorrection-at-beginning-of-word-2-expected.png: Added property svn:mime-type. >- * platform/mac/editing/spelling/delete-autocorrected-word-2-expected.png: Added property svn:mime-type. >- * platform/mac/editing/spelling/inline_spelling_markers-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5017613-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5017613-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5046875-1-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5046875-2-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5065910-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/5084241-expected.png: Modified property svn:mime-type. >- * platform/mac/editing/style/apple-style-editable-mix-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/background-position-parsing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/body-generated-image-propagated-to-root-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/positioned-root-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/quirks-mode-line-box-backgrounds-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/size/backgroundSize20-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/size/backgroundSize21-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/size/backgroundSize22-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/backgrounds/table-root-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/basic/percent-height-inside-anonymous-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/basic/quirk-percent-height-grandchild-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/avoidance-percent-width-compat-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/avoidance-percent-width-strict-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/clamped-right-float-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/clear-element-too-wide-for-containing-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/float-forced-below-other-floats-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/float-overflow-hidden-containing-block-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/float-overhangs-root-expected.png: Added property svn:mime-type. >- * platform/mac/fast/block/float/floatstack-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/in-margin-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/nested-clearance-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/overhanging-tall-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/float/overlapping-floats-with-overflow-hidden-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/block-font-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/block-glyphs-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/block-glyphs-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/block-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/font-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/font-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/glyphs-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/inline-box-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/inline-box-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/inline-box-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/inline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/inline-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/none-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/parsing-invalid-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/lineboxcontain/replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/010-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/011-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/012-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/015-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/016-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/017-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/018-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/019-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/020-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/021-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/022-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/margin-collapse/block-inside-inline/025-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/absolute-positioning-no-scrollbar-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-lr/007-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/auto/vertical-rl/007-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/complex-positioned-movement-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/differing-writing-modes-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/differing-writing-modes-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/fixed-positioning-scrollbar-bug-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/hiding-inside-relpositioned-inline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/move-with-auto-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/negative-rel-position-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/replaced-inside-fixed-top-bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/rtl-static-positioning-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/rtl-static-positioning-inline-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/static-distance-with-positioned-ancestor-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/static-inline-position-dynamic-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/table-cell-static-position-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/trailing-space-test-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-lr/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/block/positioning/vertical-rl/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/Kusa-Makura-background-canvas-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/background-horizontal-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/background-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/background-vertical-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/basic-vertical-line-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/block-level-images-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/body-direction-propagation-blocked-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/body-direction-propagation-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/body-writing-mode-propagation-blocked-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/body-writing-mode-propagation-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/border-image-horizontal-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/border-image-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/border-image-vertical-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/border-radius-clipping-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/border-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/box-shadow-horizontal-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/box-shadow-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/box-shadow-vertical-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/broken-ideograph-small-caps-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/broken-ideographic-font-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/english-bt-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/english-lr-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/english-rl-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/fallback-orientation-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/fieldsets-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/floats-in-block-layout-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/horizontal-bt-replaced-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/inline-direction-positioning-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-lr-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-lr-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-rl-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-rl-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-ruby-horizontal-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-ruby-vertical-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/japanese-ruby-vertical-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/margin-collapse-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/root-lr-basic-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/self-collapsing-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/text-orientation-basic-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/vertical-align-table-baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/vertical-baseline-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/vertical-font-fallback-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/vertical-lr-replaced-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/blockflow/vertical-rl-replaced-selection-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/001-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/002-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/003-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/003-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/004-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/004-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/005-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/005-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/006-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/006-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/007-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/007-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/007-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/008-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-color/008-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/001-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/002-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/003-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/003-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/004-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/004-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/005-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/005-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/006-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/006-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/007-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/007-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/007-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/008-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/008-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/009-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/009-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/010-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/background-image/010-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/001-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/002-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/003-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/003-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/004-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/004-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/004-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/005-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/005-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/005-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/006-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/006-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/006-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/007-declarative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/007-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/body-propagation/overflow/007-xhtml-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/bidi-002-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/bidi-009a-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/bidi-012-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-image-border-radius-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-circle-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-constraints-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-groove-01-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-groove-02-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-groove-03-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-inline-flow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-split-inline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-wide-border-01-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-wide-border-02-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-wide-border-03-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/border-radius-wide-border-04-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDashed04-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDashed05-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDashed06-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDotted04-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDotted05-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDotted06-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble04-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble05-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble06-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble07-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble08-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/borderRadiusDouble09-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/different-color-borders-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/borders/outline-alpha-block-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/outline-alpha-inline-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/rtl-border-01-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/rtl-border-02-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/rtl-border-03-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/rtl-border-04-expected.png: Added property svn:mime-type. >- * platform/mac/fast/borders/rtl-border-05-expected.png: Added property svn:mime-type. >- * platform/mac/fast/box-shadow/inset-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/box-shadow/spread-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/box-shadow/transform-fringing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/canvas/canvas-text-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/canvas/canvas-text-baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/clip/overflow-border-radius-clip-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/after-duplicated-after-split-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/table-before-after-child-add-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/table-cell-before-after-child-add-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/table-row-before-after-child-add-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/table-row-before-after-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css-generated-content/table-table-before-after-child-add-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/attribute-selector-empty-value-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/begin-end-contain-selector-empty-value-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/border-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/border-radius-non-negative-expected.png: Added property svn:mime-type. >- * platform/mac/fast/css/color-correction-backgrounds-and-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-on-background-image-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-on-backgrounds-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-on-box-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-on-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-on-text-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/color-correction-untagged-images-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/css3-space-in-nth-and-lang-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/disabled-author-styles-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/focus-ring-detached-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/focus-ring-multiline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/focus-ring-outline-color-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/focus-ring-outline-offset-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/focus-ring-outline-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/font-face-in-shadow-DOM-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/font-face-woff-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/font-smoothing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/line-height-determined-by-primary-font-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/line-height-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/namespaces/namespaces-comments-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/namespaces/namespaces-empty-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/namespaces/namespaces-escapes-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/namespaces/namespaces-invalid-at-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/negative-leading-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/nested-floating-relative-position-percentages-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/nested-layers-with-hover-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/nested-rounded-corners-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/percent-top-relative-container-height-unspecified-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/percent-top-value-with-relative-position-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/positioned-overflow-scroll-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/pseudo-cache-stale-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/rem-dynamic-scaling-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/rem-units-on-root-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/rtl-to-viewport-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/css/text-rendering-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dom/34176-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dom/52776-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png: Added property svn:mime-type. >- * platform/mac/fast/dom/HTMLTableColElement/resize-table-using-col-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dom/scroll-reveal-left-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dom/scroll-reveal-top-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dynamic/text-combine-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dynamic/window-resize-scrollbars-test-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/dynamic/window-scrollbars-test-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/events/context-no-deselect-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/events/pointer-events-dashboard-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/fast-mobile-scrolling/fixed-position-element-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/fast-mobile-scrolling/no-fixed-position-elements-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/caret-rtl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/color/input-appearance-color-expected.png: Added property svn:mime-type. >- * platform/mac/fast/forms/form-added-to-table-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/form-in-malformed-markup-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/image-border-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/input-field-text-truncated-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/input-placeholder-visibility-1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/input-placeholder-visibility-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/input-placeholder-visibility-3-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/input-type-text-min-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/isindex-placeholder-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/listbox-bidi-align-expected.png: Added property svn:mime-type. >- * platform/mac/fast/forms/menulist-style-color-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/password-placeholder-text-security-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/placeholder-pseudo-style-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/search-display-none-cancel-button-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/search-placeholder-value-changed-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/search-vertical-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/textarea-placeholder-visibility-1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/textarea-placeholder-visibility-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/textarea-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/forms/textfield-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/content-opacity-1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/content-opacity-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/frameset-flattening-advanced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/frameset-flattening-grid-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/frameset-flattening-simple-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/frameset-flattening-subframe-resize-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/frameset-flattening-subframesets-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-fixed-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-fixed-width-and-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-fixed-width-and-height-no-scrolling-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-fixed-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-nested-expected.png: Added property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-offscreen-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png: Added property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-out-of-view-expected.png: Added property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png: Added property svn:mime-type. >- * platform/mac/fast/frames/flattening/iframe-flattening-simple-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/frame-length-fractional-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/frameset-style-recalc-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/frames/take-focus-from-iframe-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/gradients/background-clipped-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/gradients/css3-linear-right-angle-gradients-expected.png: Added property svn:mime-type. >- * platform/mac/fast/history/visited-link-background-color-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/html/link-rel-stylesheet-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/html/marquee-scrollamount-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/favicon-as-image-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/icon-decoding-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-circle-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-focus-ring-outline-color-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-focus-ring-outline-color-explicitly-inherited-from-map-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-focus-ring-outline-color-not-inherited-from-map-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-focus-ring-zero-outline-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/images/imagemap-polygon-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/25277-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/25277-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/continuation-outlines-with-layers-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/inline-continuation-borders-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/inline-focus-ring-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/inline-wrap-with-parent-padding-expected.png: Added property svn:mime-type. >- * platform/mac/fast/inline/long-wrapped-line-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/nested-top-alignment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/positioned-object-between-replaced-elements-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/inline/vertical-align-text-bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/js/missing-title-end-tag-js-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/layers/inline-dirty-z-order-lists-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/layers/opacity-stacking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/layers/remove-only-this-layer-update-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/layers/self-painting-outline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/001-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/002-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/003-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/005-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/006-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/007-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/008-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/009-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/anonymous-items-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/lists/list-marker-with-line-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/media/media-query-invalid-value-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/border-padding-pagination-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/column-break-with-balancing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/column-count-with-rules-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/column-rules-stacking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/float-paginate-complex-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/float-paginate-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/layers-in-multicol-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/layers-split-across-columns-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/margin-collapse-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/max-height-columns-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/nested-columns-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/paginate-block-replaced-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/positioned-split-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/positioned-with-constrained-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/scrolling-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/shadow-breaking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/anonymous-before-child-parent-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/anonymous-split-block-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/anonymous-style-inheritance-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/clone-anonymous-block-non-inline-child-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-child-complex-splitting-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-child-generated-content-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-child-property-removal-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-columns-child-dynamic-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-columns-child-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-immediate-columns-child-removal-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-nested-columns-child-dynamic-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-nested-columns-child-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Added property svn:mime-type. >- * platform/mac/fast/multicol/span/span-margin-collapsing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/table-margin-collapse-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/table-vertical-align-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/unsplittable-inline-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/border-padding-pagination-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/column-break-with-balancing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/column-count-with-rules-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/column-rules-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/float-avoidance-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/float-multicol-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/float-paginate-complex-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/float-paginate-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/nested-columns-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-lr/unsplittable-inline-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/border-padding-pagination-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/column-break-with-balancing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/column-count-with-rules-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/column-rules-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/float-avoidance-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/float-multicol-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/float-paginate-complex-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/float-paginate-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/nested-columns-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/multicol/vertical-rl/unsplittable-inline-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/border-radius-clipping-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/float-in-relpositioned-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/line-clamp-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/overflow-float-stacking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/overflow-rtl-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/overflow-stacking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/overflow-with-local-background-attachment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/overflow_hidden-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/overflow/trailing-float-linebox-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/reflections/reflection-masks-opacity-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/reflections/transparent-reflected-sublayers-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/background-generated-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/background-misaligned-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/block-selection-gap-in-composited-layer-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/block-selection-gap-in-table-cell-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/block-selection-gap-stale-cache-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/block-selection-gap-stale-cache-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/button-spurious-layout-hint-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/dynamic-table-vertical-alignment-change-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/fixed-move-after-keyboard-scroll-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/float-in-new-block-with-layout-delta-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/float-new-in-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/inline-block-resize-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/inline-color-change-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/inline-horizontal-bt-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/inline-vertical-lr-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/inline-vertical-rl-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/japanese-rl-selection-clear-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/japanese-rl-selection-repaint-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/layout-state-relative-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/layout-state-scrolloffset-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/layout-state-scrolloffset2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/layout-state-scrolloffset3-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/line-in-scrolled-clipped-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/moving-shadow-on-container-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/moving-shadow-on-path-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/no-caret-repaint-in-non-content-editable-element-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/opacity-change-on-overflow-float-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/rel-positioned-inline-with-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/repaint-across-writing-mode-boundary-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/repaint-during-scroll-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/scale-page-shrink-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/selection-clear-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/selection-gap-overflow-scroll-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/selection-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/stacked-diacritics-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/text-append-dirty-lines-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/view-background-from-body-1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/repaint/view-background-from-body-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/border-radius-clip-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/max-width-percent-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/outline-replaced-elements-expected.png: Added property svn:mime-type. >- * platform/mac/fast/replaced/percent-height-in-anonymous-block-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/percent-height-in-anonymous-block-in-table-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/percent-height-in-anonymous-block-widget-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-lr/absolute-position-percentage-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-lr/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-lr/absolute-position-with-auto-width-and-left-and-right-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-rl/absolute-position-percentage-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-rl/absolute-position-with-auto-height-and-top-and-bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/replaced/vertical-rl/absolute-position-with-auto-width-and-left-and-right-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/base-shorter-than-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/nested-ruby-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/quirks-mode-ruby-spacing-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/quirks-mode-ruby-spacing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-auto-line-expansion-bt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-auto-line-expansion-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-auto-line-expansion-lr-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-auto-line-expansion-rl-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-empty-rt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-length-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-run-break-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-runs-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-runs-spans-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-simple-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-simple-rp-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/ruby-trailing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-insert-rt-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-insert-text1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-insert-text2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-insert-text3-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-remove-rt1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-remove-rt2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-remove-text1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/ruby/rubyDOM-remove-text2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/runin/002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/runin/generated-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/runin/generated2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/runin/generated3-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/runin/generated4-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/027-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/028-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/035-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/038-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/040-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/auto-with-percent-height-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/001-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/002-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/003-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/004-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/border-collapsing-head-foot-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/equal-precedence-resolution-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/border-collapsing/rtl-border-collapsing-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/colspanMinWidth-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/dynamic-caption-add-before-child-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/dynamic-caption-add-remove-before-child-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/dynamic-descendant-percentage-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/empty-row-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-granular-cols-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-percent-inside-percent-table-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-percent-width-inside-auto-table-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-percent-width-inside-div-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-percent-width-inside-extra-large-div-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-percent-width-inside-fixed-width-table-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-table-with-small-percent-width-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/fixed-with-auto-with-colspan-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/floating-th-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/growCellForImageQuirk-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/height-percent-test-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/multiple-captions-display-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/percent-widths-stretch-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/relative-position-containment-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/relative-position-offsets-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/relative-position-stacking-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/rowspan-paint-order-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/table-and-parts-outline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/table-continuation-outline-paint-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/table-display-types-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/table-display-types-strict-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/table-display-types-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/table/vertical-align-baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/backslash-to-yen-sign-euc-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/bidi-embedding-pop-and-push-same-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/complex-text-opacity-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/decorations-transformed-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/emphasis-combined-text-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/emphasis-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/emphasis-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/hyphenate-character-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/hyphenate-first-word-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/hyphenate-limit-before-after-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/hyphenate-locale-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/hyphens-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-AN-after-L-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-AN-after-empty-run-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-CS-after-AN-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-linebreak-001-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-linebreak-002-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-linebreak-003-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-mirror-he-ar-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-neutral-directionality-paragraph-start-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/bidi-neutral-run-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/hindi-spacing-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/pop-up-button-text-alignment-and-direction-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/text-combine-image-test-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/international/vertical-text-glyph-test-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/justify-ideograph-complex-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/justify-ideograph-leading-expansion-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/justify-ideograph-simple-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/justify-ideograph-vertical-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/line-breaking-with-kerning-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/myanmar-shaping-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/selection-rect-rounding-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/shadow-translucent-fill-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/sticky-typesetting-features-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/thai-combining-mark-positioning-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/x-height-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/text/zero-font-size-expected.png: Added property svn:mime-type. >- * platform/mac/fast/transforms/rotated-transform-affects-scrolling-1-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/transforms/rotated-transform-affects-scrolling-2-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/transforms/transform-overflow-expected.png: Modified property svn:mime-type. >- * platform/mac/fast/transforms/transform-positioned-ancestor-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/color-bitmap-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/cursive-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/default-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/fantasy-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/monospace-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/sans-serif-expected.png: Modified property svn:mime-type. >- * platform/mac/fonts/serif-expected.png: Modified property svn:mime-type. >- * platform/mac/fullscreen/full-screen-iframe-zIndex-expected.png: Added property svn:mime-type. >- * platform/mac/fullscreen/full-screen-remove-ancestor-after-expected.png: Added property svn:mime-type. >- * platform/mac/fullscreen/full-screen-stacking-context-expected.png: Added property svn:mime-type. >- * platform/mac/fullscreen/full-screen-zIndex-after-expected.png: Added property svn:mime-type. >- * platform/mac/fullscreen/full-screen-zIndex-expected.png: Added property svn:mime-type. >- * platform/mac/http/tests/misc/favicon-as-image-expected.png: Modified property svn:mime-type. >- * platform/mac/http/tests/misc/generated-content-inside-table-expected.png: Modified property svn:mime-type. >- * platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Modified property svn:mime-type. >- * platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Modified property svn:mime-type. >- * platform/mac/http/tests/misc/slow-loading-image-in-pattern-expected.png: Modified property svn:mime-type. >- * platform/mac/http/tests/webarchive/cross-origin-stylesheet-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/media/media-controls-clone-expected.png: Added property svn:mime-type. >- * platform/mac/printing/simultaneous-position-float-change-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/basic-scrollbar-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/disabled-scrollbar-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/key-window-not-first-responder-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/listbox-scrollbar-combinations-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/overflow-scrollbar-combinations-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/scrollbar-buttons-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/scrollbar-orientation-expected.png: Modified property svn:mime-type. >- * platform/mac/scrollbars/scrollbars-on-positioned-content-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/color-prop-05-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-dom-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-dom-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-dom-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-dom-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/coords-units-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/filters-image-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/paths-dom-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-17-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/pservers-grad-20-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-03-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/pservers-pattern-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-04-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-05-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1-SE/types-dom-06-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-36-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-37-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-39-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-40-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-41-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-46-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-60-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-61-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-62-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-63-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-65-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-66-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-67-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-68-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-69-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-70-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-77-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-78-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-80-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-81-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/animate-elem-83-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/coords-units-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/coords-units-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/coords-units-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/coords-viewattr-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-composite-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-conv-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-diffuse-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-gauss-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-image-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-light-04-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-morph-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-specular-01-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/filters-turb-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-01-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-03-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-04-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-05-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-06-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-elem-07-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/fonts-kern-01-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/linking-a-05-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/linking-uri-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/linking-uri-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/linking-uri-03-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/pservers-grad-14-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/script-handle-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/struct-frag-06-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/text-intro-05-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/text-text-04-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/text-text-05-t-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/W3C-SVG-1.1/text-tselect-02-f-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/as-image/svg-as-background-with-relative-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/as-image/svg-as-background-with-viewBox-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/as-object/object-box-sizing-no-width-height-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/filters/feTile-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/paints/patternRegions-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/paints/patternRegions-positioned-objects-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/smallFonts-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textAnchor3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textLayout-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textLength-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textOnPath-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textOnPath2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textOnPathSpaces-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textPCDATA-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/textProperties-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/verticalTextOnPath-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/batik/text/xmlSpace-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-in-mask-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-in-mask-objectBoundingBox-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-in-mask-userSpaceOnUse-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-child-clipped-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-childs-clipped-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-clipped-evenodd-twice-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-clipped-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-clipped-no-content-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-clipped-nonzero-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-evenodd-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-evenodd-nonzero-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-nonzero-evenodd-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-nonzero-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-objectBoundingBox-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-on-clipped-use-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-on-g-and-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-on-g-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-on-svg-and-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-on-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-pixelation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-recursive-call-by-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-recursive-call-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-text-and-shape-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-text-and-stroke-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-use-as-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-use-as-child2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-use-as-child3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-use-as-child4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-use-as-child5-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-userSpaceOnUse-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-with-container-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-with-different-unittypes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-with-different-unittypes2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-with-invisibile-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/clip-path-with-text-clipped-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/deep-nested-clip-in-mask-different-unitTypes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/deep-nested-clip-in-mask-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/deep-nested-clip-in-mask-panning-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/nested-clip-in-mask-image-based-clipping-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/nested-clip-in-mask-path-and-image-based-clipping-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/clip-path/nested-clip-in-mask-path-based-clipping-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/arrow-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/circle-in-mask-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/clippath-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/composite-shadow-example-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/composite-shadow-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/composite-shadow-with-opacity-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/group-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/mask-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/path-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/shadow-and-opacity-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/shadow-changes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/shadow-with-large-radius-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/shadow-with-negative-offset-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/stars-with-shadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/css/text-shadow-multiple-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/SVGPaint-mutate-attribute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/SVGPaint-mutate-inline-style-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/absolute-sized-content-with-resources-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/altglyph-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/animate-target-id-changed-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/animate-target-removed-from-document-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/animation-currentColor-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/baseval-animval-equality-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/broken-internal-references-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/bug45331-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/clip-path-id-changes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/clip-path-referencing-use-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/clip-path-referencing-use2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/clone-element-with-animated-svg-properties-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/dominant-baseline-hanging-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/embedding-external-svgs-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/empty-mask-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/feComponentTransfer-Discrete-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/feComponentTransfer-Gamma-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/feComponentTransfer-Linear-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/feComponentTransfer-Table-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/fill-fallback-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/fill-opacity-update-expected.png: Added property svn:mime-type. >- * platform/mac/svg/custom/getPresentationAttribute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/getscreenctm-in-scrollable-div-area-nested-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/getscreenctm-in-scrollable-svg-area-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/getsvgdocument-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/glyph-transformation-with-hkern-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/gradient-with-1d-boundingbox-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/image-parent-translation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/immutable-properties-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/invalid-dasharray-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/invalid-fill-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/invalid-fill-hex-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/invalid-stroke-hex-expected.png: Added property svn:mime-type. >- * platform/mac/svg/custom/invalid-uri-stroke-expected.png: Added property svn:mime-type. >- * platform/mac/svg/custom/invisible-text-after-scrolling-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/js-repaint-rect-on-path-with-stroke-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/js-update-stop-linked-gradient-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/marker-child-changes-css-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/marker-opacity-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/marker-referencePoint-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/marker-strokeWidth-changes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mask-invalidation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mask-on-multiple-objects-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mask-with-default-value-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/massive-coordinates-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mouse-move-on-svg-container-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mouse-move-on-svg-container-standalone-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mouse-move-on-svg-root-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/mouse-move-on-svg-root-standalone-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/nested-pattern-boundingBoxModeContent-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/non-scaling-stroke-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/non-scaling-stroke-markers-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-no-size-attributes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-explicit-height-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-explicit-width-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-explicit-width-height-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-no-width-height-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/painting-marker-07-f-inherit-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/path-zero-strokewidth-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-excessive-malloc-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-incorrect-tiling-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-no-pixelation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-referencing-preserve-aspect-ratio-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-size-bigger-than-target-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-skew-transformed-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pattern-with-transformation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/percentage-of-html-parent-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pointer-events-image-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/pointer-events-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/radial-gradient-with-outstanding-focalPoint-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/recursive-filter-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/recursive-gradient-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/recursive-mask-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/recursive-pattern-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-content-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-content-with-resources-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-deep-shadow-tree-content-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-inner-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-shadow-tree-content-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-shadow-tree-content-with-symbol-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-use-on-symbol-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/relative-sized-use-without-attributes-on-symbol-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/repaint-moving-svg-and-div-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/repaint-on-constant-size-change-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/repaint-stroke-width-changes-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/resource-invalidate-on-target-update-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/rootmost-svg-xy-attrs-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/shape-rendering-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/small-rect-scale-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/stroke-fallback-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/stroke-opacity-update-expected.png: Added property svn:mime-type. >- * platform/mac/svg/custom/svg-float-border-padding-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/svg-modify-currentTranslate-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/tearoffs-with-tearoffs-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/text-rotated-gradient-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/text-rotation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/text-x-dy-lists-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/text-xy-updates-SVGList-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-font-face-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-instanceRoot-as-event-target-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-instanceRoot-event-bubbling-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-instanceRoot-event-listeners-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-on-clip-path-with-transformation-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-property-synchronization-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-setAttribute-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-svg-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-svg1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-svg2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-symbol-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-symbol1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/custom/use-transfer-width-height-properties-to-symbol2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-appendItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-basics-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-getItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-initialize-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-insertItemBefore-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-removeItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-replaceItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGLengthList-xml-dom-modifications-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-appendItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-clear-and-initialize-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-cloning-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-insertItemBefore-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-removeItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-replaceItem-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-segment-modification-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-xml-dom-synchronization-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGPathSegList-xml-dom-synchronization2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGScriptElement/script-change-externalResourcesRequired-while-loading-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGScriptElement/script-load-and-error-events-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGScriptElement/script-reexecution-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dom/SVGScriptElement/script-set-href-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCircleElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCircleElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGClipPath-influences-hitTesting-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCursorElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCursorElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCursorElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGCursorElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGEllipseElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGEllipseElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-bias-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-divisor-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-edgeMode-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelMatrix-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-kernelUnitLength-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-order-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-preserveAlpha-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetX-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEConvolveMatrixElement-svgdom-targetY-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-diffuseConstant-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-lighting-color-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-dom-surfaceScale-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-inherit-lighting-color-css-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-lighting-color-css-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-diffuseConstant-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDiffuseLightingElement-svgdom-surfaceScale-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-in2-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-scale-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-xChannelSelector-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-dom-yChannelSelector-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-in2-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-scale-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-xChannelSelector-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDisplacementMapElement-svgdom-yChannelSelector-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-dx-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-dy-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-color-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-shadow-opacity-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-dom-stdDeviation-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dx-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-dy-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-color-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-shadow-opacity-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEDropShadowElement-svgdom-stdDeviation-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEFloodElement-inherit-flood-color-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEImageElement-dom-preserveAspectRatio-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEImageElement-svgdom-preserveAspectRatio-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dx-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-dy-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dx-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-dy-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFEOffsetElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularConstant-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-dom-specularExponent-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-dom-suraceScale-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-inherit-lighting-color-css-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-lighting-color-css-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-remove-lightSource-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularConstant-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-specularExponent-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpecularLightingElement-svgdom-suraceScale-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-limitingConeAngle-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtX-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtY-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-pointsAtZ-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-specularExponent-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-dom-z-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-limitingConeAngle-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtX-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtY-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-pointsAtZ-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-specularExponent-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFESpotLightElement-svgdom-z-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFETileElement-dom-in-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFETileElement-svgdom-in-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-filterRes-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-filterUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-primitiveUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-filterRes-call-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-filterResX-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-filterResY-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-filterUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-primitiveUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-result-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-result-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGFilterPrimitiveStandardAttributes-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGForeignObjectElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGForeignObjectElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGGElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGGElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-preserveAspectRatio-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-preserveAspectRatio-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGImageElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-dom-x1-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-dom-x2-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-dom-y1-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-dom-y2-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-svgdom-x1-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-svgdom-x2-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-svgdom-y1-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGLineElement-svgdom-y2-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-markerHeight-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-markerUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-markerWidth-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-orient-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-refX-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-dom-refY-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-markerHeight-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-markerUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-markerWidth-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-orientAngle-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-orientType-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-refX-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-refY-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAngle-call-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMarkerElement-svgdom-setOrientToAuto-call-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskContentUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-maskUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskContentUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-maskUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGMaskElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPathElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPathElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternContentUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternTransform-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-patternUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternContentUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternTransform-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-patternUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPatternElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPolygonElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPolygonElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPolylineElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGPolylineElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cx-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-cy-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fx-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-fy-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientTransform-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-gradientUnits-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-dom-r-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cx-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-cy-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fx-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-fy-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientTransform-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-gradientUnits-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRadialGradientElement-svgdom-r-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-dom-height-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-dom-width-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-dom-x-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-dom-y-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-svgdom-height-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-svgdom-width-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-svgdom-x-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGRectElement-svgdom-y-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGSVGElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGSVGElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTRefElement-dom-href-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-dx-attr-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-dy-attr-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-rotate-attr-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-transform-attr-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-x-attr-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-dom-y-attr-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-dx-prop-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-dy-prop-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-rotate-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-transform-prop-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-x-prop-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGTextElement-svgdom-y-prop-expected.png: Added property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGUseElement-dom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/dynamic-updates/SVGUseElement-svgdom-requiredFeatures-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/big-sized-filter-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feColorMatrix-values-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feComposite-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feConvolveFilter-y-bounds-expected.png: Added property svn:mime-type. >- * platform/mac/svg/filters/feDisplacementMap-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feDropShadow-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feGaussianBlur-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feLighting-crash-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feMerge-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feMerge-wrong-input-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feOffset-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/feTile-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filter-on-filter-for-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filter-on-tspan-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filter-rounding-issues-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filter-width-update-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filterRes1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filterRes2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filterRes3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/filteredImage-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/parent-children-with-same-filter-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/shadow-on-filter-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/shadow-on-rect-with-filter-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/sourceAlpha-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/subRegion-in-userSpace-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/subRegion-one-effect-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/filters/subRegion-two-effects-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/foreignObject/disallowed-svg-nodes-as-direct-children-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/foreignObject/no-crash-with-svg-content-in-html-document-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/foreignObject/svg-document-as-direct-child-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/foreignObject/svg-document-in-html-document-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/foreignObject/text-tref-02-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/hixie/intrinsic/001-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/hixie/intrinsic/002-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/hixie/intrinsic/003-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/in-html/circle-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-foreignObject-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-inner-svg-element-defaults-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-inner-svg-element-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-defaults-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-ignore-attribute-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-auto-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-defaults-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-hidden-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-scroll-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/overflow/overflow-on-outermost-svg-element-in-xhtml-visible-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/repaint/filter-repaint-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/font-size-below-point-five-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/font-size-below-point-five-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/foreignObject-text-clipping-bug-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/kerning-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/multichar-glyph-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/scaled-font-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-squeeze-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-squeeze-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-squeeze-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-squeeze-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-stretch-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-stretch-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-stretch-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacing-stretch-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-squeeze-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-textLength-spacingAndGlyphs-stretch-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-with-tspans-1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-with-tspans-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-with-tspans-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/select-x-list-with-tspans-4-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/selection-styles-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/small-fonts-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/small-fonts-3-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/small-fonts-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/small-fonts-in-html5-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/text-hkern-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/text-hkern-on-vertical-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/text-path-middle-align-expected.png: Added property svn:mime-type. >- * platform/mac/svg/text/text-repaint-rects-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/text-vkern-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/text/text-vkern-on-horizontal-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/transforms/text-with-mask-with-svg-transform-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/wicd/rightsizing-grid-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/wicd/test-rightsizing-a-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/wicd/test-rightsizing-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/wicd/test-scalable-background-image1-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/wicd/test-scalable-background-image2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/absolute-sized-document-no-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/absolute-sized-document-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/relative-sized-document-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-coords-viewattr-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-foreignObject-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-hixie-mixed-008-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-hixie-mixed-009-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-hixie-rendering-model-004-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-mask-with-percentages-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-float-border-padding-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-2-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-absolute-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-auto-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-huge-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-no-width-height-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-override-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-percentage-size-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/page/zoom-svg-through-object-with-text-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/absolute-sized-document-no-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/absolute-sized-document-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/relative-sized-document-scrollbars-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-coords-viewattr-01-b-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-foreignObject-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-hixie-mixed-008-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-hixie-mixed-009-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-hixie-rendering-model-004-expected.png: Modified property svn:mime-type. >- * platform/mac/svg/zoom/text/zoom-svg-float-border-padding-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/layering/paint-test-layering-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/layering/paint-test-layering-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug10296-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug1055-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug106816-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug113235-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug11944-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug119786-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug131020-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug13118-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug13196-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug133756-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug139524-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug14159-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug1430-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug14929-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug15247-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug17130-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug17130-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug1800-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug18359-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug18955-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug19061-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug19061-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug194024-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug19599-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug20804-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2267-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug23235-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug23299-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug24627-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2479-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2479-4-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug25086-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug25663-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2684-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug27038-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2773-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2886-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug29058-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug29429-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2947-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2981-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2981-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug2997-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug30692-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug3103-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug32205-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug33855-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug3454-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug3681-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug3977-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug41890-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug42187-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug43039-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug4382-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug43854-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug4427-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug44505-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug45055-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug45486-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug46368-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug46368-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug46623-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug46924-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug47432-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug51727-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug52505-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug52506-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug5538-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug55694-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug57300-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug5799-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug5835-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug60749-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug6184-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug6404-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug650-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug68912-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug69382-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7112-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7112-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7121-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7342-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7471-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug7714-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug78162-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug80762-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug82946-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug8858-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug8950-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug9123-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug9123-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug92143-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug93363-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug96334-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/bugs/bug965-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/collapsing_borders/bug41262-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/borders-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_span-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_auto_autoFix-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_auto_autoPer-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_auto_fix-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_auto_fixPer-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_auto_per-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_fix_autoFix-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_fix_autoPer-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_fix_fix-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/col_widths_fix_fixPer-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/margins-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/one_row-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/row_span-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/table_rules-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/core/table_widths-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/dom/deleteTbodyRebuild1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/dom/insertCellsRebuild1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/body_tbody-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/body_tfoot-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/body_thead-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/col_span-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_span-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_width_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/colgroup_width_px-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_frame_border-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_frame_box-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_row_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_row_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_row_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_rules_all-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_rules_groups-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/table_rules_none-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_border_0-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_border_1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_border_2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_border_3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_cellpadding-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_cellpadding_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_cellspacing-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_class-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_id-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_row_th_nowrap-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_style-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_colspan-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_height-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_nowrap-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_rowspan-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_td_width-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_colspan-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_height-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_rowspan-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_th_width-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_width_percent-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tables_width_px-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tbody_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/td_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tfoot_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/thead_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/tr_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_col_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_col_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_col_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_col_width_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_col_width_rel-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_colgroup_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_colgroup_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_colgroup_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_colgroup_width_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_colgroup_width_rel-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_bgcolor_name-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_bgcolor_rgb-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_border-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_border_none-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_border_px-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_frame_void-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_rules_groups-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_rules_none-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_width_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_table_width_px-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tbody_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_bgcolor_name-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_bgcolor_rgb-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_height-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_nowrap-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_td_width-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tfoot_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_align_center-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_align_left-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_align_right-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_bgcolor_name-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_bgcolor_rgb-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_nowrap-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_th_width-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_align_char-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_class-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_id-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_style-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_valign_middle-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_thead_valign_top-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tr_align_justify-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_name-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tr_bgcolor_rgb-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tr_valign_baseline-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/marvin/x_tr_valign_bottom-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/cell_widths-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/cellspacing-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/nested2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/nestedTables-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/padding-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/test3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/test6-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla/other/wa_table_thtd_rowspan-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/97619-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug1010-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug10140-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug101759-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug10216-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug1055-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug106966-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug1128-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug11331-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug11945-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug131020-3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug14007-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug14489-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug1725-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug17826-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug18770-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug21518-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug22122-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug2479-5-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug25707-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug29058-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-18-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug3166-5-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug32205-4-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug42043-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug4294-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug47163-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug51000-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug56024-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug59252-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug61042-2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug73629-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/bugs/bug91057-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-5-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/collapsing_borders/bug41262-6-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/backgrounds-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/captions1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/captions2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/captions3-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/col_span2-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/columns-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/conflicts-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/core/standards1-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_above-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_below-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_hsides-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_lhs-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_rhs-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_void-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_frame_vsides-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_cols-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/table_rules_rows-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/tables_cellspacing_pct-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_above-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_below-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_border-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_box-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_hsides-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_lhs-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_rhs-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_frame_vsides-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_all-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_cols-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/marvin/x_table_rules_rows-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/other/empty_cells-expected.png: Modified property svn:mime-type. >- * platform/mac/tables/mozilla_expected_failures/other/test4-expected.png: Modified property svn:mime-type. >- * platform/mac/transforms/2d/hindi-rotated-expected.png: Modified property svn:mime-type. >- * platform/mac/transforms/2d/zoom-menulist-expected.png: Modified property svn:mime-type. >- * platform/mac/transforms/svg-vs-css-expected.png: Modified property svn:mime-type. >- * platform/mac/transitions/opacity-transition-zindex-expected.png: Modified property svn:mime-type. >- * platform/mac/transitions/svg-text-shadow-transition-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/archive-empty-frame-dom-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/archive-empty-frame-source-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/archive-with-unencoded-url-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/doctype-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-body-background-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-css-import-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-duplicate-resources-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-frameset-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-img-src-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-input-src-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-link-href-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-object-data-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-script-src-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-table-background-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-td-background-expected.png: Modified property svn:mime-type. >- * platform/mac/webarchive/test-xml-stylesheet-expected.png: Modified property svn:mime-type. >- >-2011-06-16 MORITA Hajime <morrita@google.com> >- >- Unreviewed expectations update for: >- - fast/speech/input-appearance-numberandspeech.html >- and just unskips them because they pass always. >- - input-appearance-spinbutton-disabled-readonly.html >- - input-appearance-spinbutton-layer.html >- - input-appearance-spinbutton-visibility.html >- >- * platform/chromium-mac-leopard/fast/speech/input-appearance-numberandspeech-expected.png: >- * platform/chromium-mac/fast/speech/input-appearance-numberandspeech-expected.png: >- * platform/chromium-mac/fast/speech/input-appearance-numberandspeech-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 MORITA Hajime <morrita@google.com> >- >- Unreviewed expectations update for >- meter-styles.html, meter-writing-mode.html, progress-writing-mode.html >- >- * platform/chromium-linux/fast/dom/HTMLMeterElement/meter-styles-expected.png: >- * platform/chromium-win/fast/dom/HTMLMeterElement/meter-styles-expected.png: >- * platform/chromium-win/fast/dom/HTMLMeterElement/meter-styles-expected.txt: >- * platform/chromium-win/fast/dom/HTMLMeterElement/meter-writing-mode-expected.png: Added. >- * platform/chromium-win/fast/dom/HTMLMeterElement/meter-writing-mode-expected.txt: Added. >- * platform/chromium-win/fast/dom/HTMLProgressElement/progress-writing-mode-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Jeffrey Pfau <jpfau@apple.com> >- >- Reviewed by Alexey Proskuryakov. >- >- Using null bytes when setting innerHTML in XTHML results in assertion and a crash due to null-pointer dereference >- https://bugs.webkit.org/show_bug.cgi?id=61053 >- >- Added test cases covering two cases of using innerHTML with null bytes in XHTML. >- >- * fast/parser/xhtml-innerhtml-null-byte-expected.txt: Added. >- * fast/parser/xhtml-innerhtml-null-byte-first-expected.txt: Added. >- * fast/parser/xhtml-innerhtml-null-byte-first.xhtml: Added. >- * fast/parser/xhtml-innerhtml-null-byte.xhtml: Added. >- >-2011-06-16 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, mark more Chromium test failures for tests added in r89091. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Eric Seidel. >- >- Verify cloned <audio> and <video> are rendered correctly. >- https://bugs.webkit.org/show_bug.cgi?id=62001 >- >- Add a test to verify cloned media controls are rendered correctly. >- >- * media/media-controls-clone.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/mac/media/media-controls-clone-expected.png: Added. >- * platform/mac/media/media-controls-clone-expected.txt: Added. >- >-2011-06-16 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, add Chromium test expectation for fast/js/keywords-and-reserved_words.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Gavin Barraclough <barraclough@apple.com> >- >- Rubber stamped by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=25079 >- JS Arrays et al receive the wrong prototype >- >- Adding abarth's testcase, for this issue that was already fixed in ToT by other changes. >- >- * fast/js/cross-frame-prototype-expected.txt: Added. >- * fast/js/cross-frame-prototype.html: Added. >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Another Windows rebaseline after r89091. >- >- The problem was that my original rebaseline for Windows overrode mac's expected results. >- This rebaseline should work. >- >- * platform/win/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. >- * platform/win/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. >- >-2011-06-16 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Oliver Hunt. >- >- https://bugs.webkit.org/show_bug.cgi?id=53014 >- ES5 strict mode keyword restrictions aren't implemented >- >- The following are future restricted words is strict mode code: >- implements, interface, let, package, private, protected, public, static, yield >- >- * fast/js/keywords-and-reserved_words-expected.txt: Added. >- * fast/js/keywords-and-reserved_words.html: Added. >- * fast/js/script-tests/keywords-and-reserved_words.js: Added. >- (isKeyword): >- (isStrictKeyword): >- (classifyIdentifier): >- >-2011-06-16 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, rolling out r89107. >- http://trac.webkit.org/changeset/89107 >- >- The test already had correct expectation. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Yuta Kitamura <yutak@chromium.org> >- >- Unreviewed, add Chromium test expectation for fast/js/multiline-comment-newline.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium Windows XP rebaseline after r89091. >- >- * platform/chromium-win-xp/editing/selection: Added. >- * platform/chromium-win-xp/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/chromium-win-xp/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix Mac baselines for r89091. I don't know why the original baseline was wrong. >- >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Update Chromium test expectation after r89100. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Update Chromium Mac test expectations after r89091. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK+ rebaselines after r89091. >- >- * platform/gtk/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. >- * platform/gtk/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. >- >-2011-06-16 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Oliver Hunt. >- >- https://bugs.webkit.org/show_bug.cgi?id=23611 >- Multiline Javascript comments cause incorrect parsing of following script. >- >- From the spec: >- "A MultiLineComment [is] simply discarded if it contains no line terminator, >- but if a MultiLineComment contains one or more line terminators, then it is >- replaced with a single line terminator, which becomes part of the stream of >- inputs for the syntactic grammar." >- >- This may result in behavioural changes, due to automatic semicolon insertion. >- >- * fast/js/multiline-comment-newline-expected.txt: Added. >- * fast/js/multiline-comment-newline.html: Added. >- * fast/js/script-tests/multiline-comment-newline.js: Added. >- (shouldBeUndefined): >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Qt rebaselines after r89091. >- >- * platform/qt/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. >- * platform/qt/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Windows rebaselines for r89091. >- >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium rebaselines after r89091. >- >- They are all considered passing even though vertical text aren't rendered correctly in these tests >- because only selection range matters in these tests. >- >- * platform/chromium-linux/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Added. >- * platform/chromium-linux/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Added. >- * platform/chromium-win/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. >- >-2011-06-16 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Your chromium layout test results are now diamonds! Ok, not really. >- But they're 0.03% better. >- >- * platform/chromium-linux/fast/transforms/transformed-document-element-expected.png: >- * platform/chromium-win/fast/transforms/transformed-document-element-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89055. >- http://trac.webkit.org/changeset/89055 >- https://bugs.webkit.org/show_bug.cgi?id=62835 >- >- Caused failures on all ports except GTK (Requested by >- mrobinson on #webkit). >- >- * http/tests/loading/resources/status-code-error-with-response-body.php: Removed. >- * http/tests/loading/resources/status-code-error-without-response-body.php: Removed. >- * http/tests/loading/status-code-error-without-response-body-expected.txt: Removed. >- * http/tests/loading/status-code-error-without-response-body.html: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Wyatt Carss <wcarss@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- markup-dump conversion + rename: editing/deleting/5408255.html >- https://bugs.webkit.org/show_bug.cgi?id=62680 >- >- Tests if the UI delete button works while '-webkit-user-select: none' is applied. >- There should be no visible content in the dumped markup. Holding off on rename. >- >- * editing/deleting/5408255.html: >- * editing/deleting/5408255-expected.txt: >- * platform/chromium-linux/editing/deleting/5408255-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/deleting/5408255-expected.png: Removed. >- * platform/chromium-mac/editing/deleting/5408255-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5408255-expected.png: Removed. >- * platform/chromium-win/editing/deleting/5408255-expected.txt: Removed. >- * platform/gtk/editing/deleting/5408255-expected.png: Removed. >- * platform/gtk/editing/deleting/5408255-expected.txt: Removed. >- * platform/mac/editing/deleting/5408255-expected.png: Removed. >- * platform/mac/editing/deleting/5408255-expected.txt: Removed. >- * platform/qt/editing/deleting/5408255-expected.txt: Removed. >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Darin Adler. >- >- Support logical line movement in vertical writing mode >- https://bugs.webkit.org/show_bug.cgi?id=62743 >- >- Added various tests to ensure WebKit uses a proper line direction point >- when extending selection horizontally in vertical writing modes. >- >- * editing/selection/vertical-lr-ltr-extend-line-backward-br.html: Added. >- * editing/selection/vertical-lr-ltr-extend-line-forward-br.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-backward-br.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-backward-p.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-backward-wrap.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-forward-br.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-forward-p.html: Added. >- * editing/selection/vertical-rl-ltr-extend-line-forward-wrap.html: Added. >- * editing/selection/vertical-rl-rtl-extend-line-backward-br.html: Added. >- * editing/selection/vertical-rl-rtl-extend-line-backward-p.html: Added. >- * editing/selection/vertical-rl-rtl-extend-line-forward-br.html: Added. >- * editing/selection/vertical-rl-rtl-extend-line-forward-p.html: Added. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-lr-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-p-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-backward-wrap-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-p-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-ltr-extend-line-forward-wrap-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-backward-p-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-br-expected.txt: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.png: Added. >- * platform/mac/editing/selection/vertical-rl-rtl-extend-line-forward-p-expected.txt: Added. >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip the failing test added by r89056 on Qt. >- The failure is tracked by the bug 62821. >- >- * platform/qt/Skipped: >- >-2011-06-16 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- A yak. Just kidding. More test expectations updates. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Yet more chromium expectations updates. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Eric Seidel. >- >- Consider padding and border when looking for the next/previous line position >- https://bugs.webkit.org/show_bug.cgi?id=55481 >- >- Added a test to ensure WebKit can allow vertical caret movements even when >- inline elements that span multiple lines have paddings, borders, or both. >- >- * editing/selection/move-vertically-with-paddings-borders-expected.txt: Added. >- * editing/selection/move-vertically-with-paddings-borders.html: Added. >- >-2011-06-16 Keunsoon Lee <keunsoon.lee@samsung.com> >- >- Reviewed by Martin Robinson. >- >- [SOUP] Abnormal operation if server sends 5xx status code without HTTP body >- https://bugs.webkit.org/show_bug.cgi?id=60875 >- >- * http/tests/loading/resources/status-code-error-with-response-body.php: Added. >- Accepting status code and creating response having body with the received status code >- * http/tests/loading/resources/status-code-error-without-response-body.php: Added. >- Accepting status code and creating response having no body with the received status code >- * http/tests/loading/status-code-error-without-response-body-expected.txt: Added. >- * http/tests/loading/status-code-error-without-response-body.html: Added. >- Sending XMLHttpRequest and check if return callback is onerror or onload for all 4xx and 5xx status codes. >- * platform/chromium/test_expectations.txt: add BUGWK60875 >- >-2011-06-16 Chang Shu <cshu@webkit.org> >- >- Reviewed by Sam Weinig. >- >- [Qt] [WK2] Qt WebKit2 needs undo/redo support >- https://bugs.webkit.org/show_bug.cgi?id=62637 >- >- Unskip passed tests. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-16 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Network panel shows incorrect query parameters when url has fragment. >- https://bugs.webkit.org/show_bug.cgi?id=62723 >- >- * http/tests/inspector/resource-parameters-expected.txt: >- * http/tests/inspector/resource-parameters.html: >- >-2011-06-16 Stephen White <senorblanco@chromium.org> >- >- Unreviewed. >- >- Update chromium test expectations. Add some missing bug ID's (lazy >- gardener, no chocolate for you), and remove some now-passing tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Cache XHR content in backend, do not use initialContentSet for XHRs. >- https://bugs.webkit.org/show_bug.cgi?id=61205 >- >- Added inspector backend cache for XHR content. >- >- * http/tests/inspector/network/network-xhr-async-expected.txt: Added. >- * http/tests/inspector/network/network-xhr-async.html: Added. >- * http/tests/inspector/network/network-xhr-sync-expected.txt: Added. >- * http/tests/inspector/network/network-xhr-sync.html: Added. >- >-2011-06-16 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Darin Adler. >- >- HTMLTable should cache its 'rows' collection results >- https://bugs.webkit.org/show_bug.cgi?id=62800 >- >- * perf/table-rows-length-caching-expected.txt: Added. >- * perf/table-rows-length-caching.html: Added. >- This test checks that the call to table.rows is CONSTANT once it has >- been populated once (and the DOM is not mutated). >- >-2011-06-16 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Adding more new baselines. >- >- * platform/chromium-mac-leopard/fast/forms/basic-textareas-expected.png: >- * platform/chromium-mac-leopard/svg/hixie/text/003-expected.png: >- >-2011-06-16 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Adding new baselines. >- >- * platform/chromium-mac-leopard/fast/replaced/outline-replaced-elements-expected.png: Added. >- >-2011-06-16 Eric Carlson <eric.carlson@apple.com> >- >- Unreviewed, removing test incorrectly added to GTK skipped list. >- >- [Qt] http/tests/appcache/video.html fails >- https://bugs.webkit.org/show_bug.cgi?id=62741 >- >- * platform/gtk/Skipped: Unskip test. >- * platform/qt/Skipped: Add bug url. >- >-2011-06-16 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r89025. >- http://trac.webkit.org/changeset/89025 >- https://bugs.webkit.org/show_bug.cgi?id=62799 >- >- "Some layout tests fail" (Requested by yurys on #webkit). >- >- * http/tests/inspector/network/network-xhr-async-expected.txt: Removed. >- * http/tests/inspector/network/network-xhr-async.html: Removed. >- * http/tests/inspector/network/network-xhr-sync-expected.txt: Removed. >- * http/tests/inspector/network/network-xhr-sync.html: Removed. >- >-2011-06-16 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: Cache XHR content in backend, do not use initialContentSet for XHRs. >- https://bugs.webkit.org/show_bug.cgi?id=61205 >- >- Added inspector backend cache for XHR content. >- >- * http/tests/inspector/network/network-xhr-async-expected.txt: Added. >- * http/tests/inspector/network/network-xhr-async.html: Added. >- * http/tests/inspector/network/network-xhr-sync-expected.txt: Added. >- * http/tests/inspector/network/network-xhr-sync.html: Added. >- >-2011-06-16 Florian Schneider <fschneider@chromium.org> >- >- Unreviewed. >- >- Remove an outdated chromium test expectation. >- https://bugs.webkit.org/show_bug.cgi?id=62716 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Updating test expectations after V8 push. >- >- * platform/chromium-mac/fast/js/function-prototype-descriptor-expected.txt: >- * platform/chromium-win/fast/js/function-prototype-descriptor-expected.txt: >- >-2011-06-16 Zsolt Fehér <h490267@stud.u-szeged.hu> >- >- Reviewed by Csaba Osztrogonác. >- >- Unskip passing tests what needs layoutTestController.clearBackForwardList >- https://bugs.webkit.org/show_bug.cgi?id=42333 >- >- * platform/qt-wk2/Skipped: >- >-2011-06-16 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Updating text expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 MORITA Hajime <morrita@google.com> >- >- Unreviewed expectations update for meter-element.html >- >- * platform/chromium-win/fast/dom/HTMLMeterElement/meter-element-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-16 Adam Barth <abarth@webkit.org> >- >- Disable a subtest while we investigate. I'm going to need dglazkov's >- help to understand what's going on in the shadows here. >- >- * fast/events/shadow-boundary-crossing-expected.txt: >- * fast/events/shadow-boundary-crossing.html: >- >-2011-06-16 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] fast/frames/flattening tests fail intermittently >- https://bugs.webkit.org/show_bug.cgi?id=62785 >- >- * platform/qt-wk2/Skipped: Skip flakey tests until fix. >- - fast/frames/flattening/frameset-flattening-advanced.html >- - fast/frames/flattening/frameset-flattening-simple.html >- * platform/qt-wk2/fast/dom/prototype-inheritance-2-expected.txt: Added, >- because NotificationCenter and NotificationCenterPrototype is missing. >- >-2011-06-16 MORITA Hajime <morrita@google.com> >- >- Unreviewed expectations update. >- - spellcheck-api-pixel.html -> Added expectations >- - spellcheck-api.html -> Removed test_expectations.txt entry because it passes. >- >- * platform/chromium-linux/editing/spelling/spellcheck-api-pixel-expected.png: Added. >- * platform/chromium-mac-leopard/editing/spelling/spellcheck-api-pixel-expected.png: Added. >- * platform/chromium-mac/editing/spelling/spellcheck-api-pixel-expected.png: Added. >- * platform/chromium-mac/editing/spelling/spellcheck-api-pixel-expected.txt: Added. >- * platform/chromium-win/editing/spelling/spellcheck-api-pixel-expected.png: Added. >- * platform/chromium-win/editing/spelling/spellcheck-api-pixel-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] new test introduced in r88958 fail on Qt >- >- * platform/qt/Skipped: Skip http/tests/appcache/video.html until fix. >- >-2011-06-15 Mikhail Naganov <mnaganov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- WebInspector [Chromium]: Make heap snapshots UI more responsive. >- https://bugs.webkit.org/show_bug.cgi?id=62360 >- >- Two changes have been made: >- - when we request elements, sort array only partially; >- - when populating children, do it in batches; >- >- * inspector/profiler/heap-snapshot.html: >- * inspector/utilities.html: >- >-2011-06-08 Keishi Hattori <keishi@webkit.org> >- >- Reviewed by Kent Tamura. >- >- Fix range element not updating when value attribute is set with JS >- https://bugs.webkit.org/show_bug.cgi?id=61857 >- >- * fast/forms/range-set-attribute-expected.txt: Added. >- * fast/forms/range-set-attribute.html: Added. Test to see if setting the value attribute of a >- range input element updates the value. >- >-2011-06-15 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- [Chromium][Qt] Some slider clicking tests fail. >- https://bugs.webkit.org/show_bug.cgi?id=62683 >- >- * fast/forms/slider-mouse-events-expected.txt: >- * fast/forms/slider-mouse-events.html: Add step=5 to ignore small difference of thumb sizes. >- * platform/chromium-win/fast/forms/slider-mouse-events-expected.txt: Removed. >- * platform/chromium/test_expectations.txt: >- * platform/qt/Skipped: slider-onchange-event.html should pass by this change. >- >-2011-06-15 Dirk Pranke <dpranke@chromium.org> >- >- Unreviewed, whitespace change to force a build. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Dirk Pranke <dpranke@chromium.org> >- >- Unreviewed, expectations change. >- >- Refine expectations to eliminate some unexpected passes. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Dirk Pranke <dpranke@chromium.org> >- >- Unreviewed, expectations change. >- >- Refine expectations to eliminate some unexpected passes. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Dirk Pranke <dpranke@chromium.org> >- >- Unreviewed, expectations change. >- >- Add Mac Leopard baselines for the new CSS2.1 tests added in >- r88913. >- >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-width-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-elements-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Antti Koivisto. >- >- Tests that accessing the parent stylesheet in nodes (not in document) >- do not result in crash when document is cleared. >- https://bugs.webkit.org/show_bug.cgi?id=62586 >- >- * fast/dom/body-clone-link-decl-parent-crash-expected.txt: Added. >- * fast/dom/body-clone-link-decl-parent-crash.html: Added. >- * fast/dom/styled-clone-inline-style-decl-parent-crash-expected.txt: Added. >- * fast/dom/styled-clone-inline-style-decl-parent-crash.html: Added. >- * fast/dom/styled-not-in-document-clone-inline-style-decl-parent-crash-expected.txt: Added. >- * fast/dom/styled-not-in-document-clone-inline-style-decl-parent-crash.html: Added. >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; more test expectations cleanup. >- >- Get rid of some unexpected passes from the GPU bots. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Dan Bernstein. >- >- Have Document keep track of whether scroll listeners are registered >- https://bugs.webkit.org/show_bug.cgi?id=62757 >- >- This test relied on the fact that, with async scroll event dispatch, >- an element would get a scroll event even if the listener is registered >- after the scroll happens. Fix the test to register the listener before >- the first scroll. >- >- * fast/events/remove-child-onscroll.html: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; test expectations cleanup. >- >- Removing some incorrect text results (platform/mac fallback is correct). >- Adding some bug IDs from my lazy gardening last time around. >- >- * platform/chromium-win/animations/animation-drt-api-expected.txt: Removed. >- * platform/chromium-win/animations/animation-drt-api-multiple-keyframes-expected.txt: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; yet more test expectations updates. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Oliver Hunt <oliver@apple.com> >- >- Reviewed by Darin Adler. >- >- REGRESSION (r88719): 5by5.tv schedule is not visible >- https://bugs.webkit.org/show_bug.cgi?id=62720 >- >- Add test for the "interesting" ascii characters that may occur in an identifier >- >- * fast/js/parser-syntax-check-expected.txt: >- * fast/js/script-tests/parser-syntax-check.js: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; more chromium test expectations updates. >- >- Rebaseline one GPU test on Linux. >- >- * platform/chromium-gpu-linux/platform/chromium/compositing/layout-width-change-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; more chromium test expectations updates. >- >- Rebaselined one additional CSS 2.1 test on Linux. >- >- * platform/chromium-linux/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; new chromium test baselines. >- >- New chromium baselines for CSS 2.1 tests introduced in r88913. Note >- that some results are incorrect, and were left failing in >- test_expectations (yes, I checked them all). >- >- * platform/chromium-linux/css2.1/20110323: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/chromium-linux/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/chromium-mac-leopard/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/chromium-mac-leopard/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/chromium-mac/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/chromium-mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-014-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-016-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-017-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-018-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-019-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-021-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-022-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-023-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-024-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-025-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-026-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-028-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-029-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-030-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-031-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-032-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-033-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-035-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-height-036-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-013-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-015-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-020-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-022-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-027-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-029-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-034-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-036-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-041-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-043-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-048-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-050-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-055-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-057-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-062-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-064-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-069-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-071-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/absolute-replaced-width-076-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-013-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-014-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-015-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-height-016-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-non-replaced-width-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/block-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-008-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-009-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-010-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-non-replaced-width-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/float-replaced-width-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-height-007-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-006-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-011-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-012-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-013-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-014-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/inline-replaced-width-015-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-002-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-003-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-004-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-intrinsic-005-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/replaced-min-max-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Added. >- * platform/chromium-win/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/chromium-win/css2.1/20110323/width-replaced-element-001-expected.txt: Added. >- * platform/chromium-win/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Added. >- * platform/chromium-win/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Added. >- * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/chromium-win/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Eric Carlson <eric.carlson@apple.com> >- >- Skip new failing test. >- >- [Qt] http/tests/appcache/video.html fails >- https://bugs.webkit.org/show_bug.cgi?id=62741 >- >- * platform/gtk/Skipped: >- >-2011-06-15 Tony Chang <tony@chromium.org> >- >- Fix Qt results for RenderDeprecatedFlexibleBox rename. >- >- * platform/qt/fast/forms/range-thumb-height-percentage-expected.txt: >- * platform/qt/fast/multicol/client-rects-expected.txt: >- >-2011-06-15 Eric Carlson <eric.carlson@apple.com> >- >- Reviewed by Alexey Proskuryakov. >- >- MediaPlayerPrivate should not know about application cache >- https://bugs.webkit.org/show_bug.cgi?id=62648 >- >- Add test for <video> in the application cache. >- >- * http/tests/appcache/resources/video.manifest: Added. >- * http/tests/appcache/video-expected.txt: Added. >- * http/tests/appcache/video.html: Added. >- >-2011-06-15 Tony Chang <tony@chromium.org> >- >- Fixing more results with RenderDeprecatedFlexibleBox rename. >- >- * platform/chromium-mac/fast/layers/video-layer-expected.txt: >- * platform/chromium-mac/media/audio-controls-rendering-expected.txt: >- * platform/chromium-mac/media/audio-repaint-expected.txt: >- * platform/chromium-mac/media/controls-after-reload-expected.txt: >- * platform/chromium-mac/media/controls-strict-expected.txt: >- * platform/chromium-mac/media/controls-styling-expected.txt: >- * platform/chromium-mac/media/controls-without-preload-expected.txt: >- * platform/chromium-mac/media/video-controls-rendering-expected.txt: >- * platform/chromium-mac/media/video-display-toggle-expected.txt: >- * platform/chromium-mac/media/video-empty-source-expected.txt: >- * platform/chromium-mac/media/video-no-audio-expected.txt: >- * platform/chromium-mac/media/video-volume-slider-expected.txt: >- * platform/chromium-mac/media/video-zoom-controls-expected.txt: >- * platform/chromium-win/fast/layers/video-layer-expected.txt: >- * platform/chromium-win/media/audio-controls-rendering-expected.txt: >- * platform/chromium-win/media/audio-repaint-expected.txt: >- * platform/chromium-win/media/controls-after-reload-expected.txt: >- * platform/chromium-win/media/controls-strict-expected.txt: >- * platform/chromium-win/media/controls-styling-expected.txt: >- * platform/chromium-win/media/controls-without-preload-expected.txt: >- * platform/chromium-win/media/video-controls-rendering-expected.txt: >- * platform/chromium-win/media/video-display-toggle-expected.txt: >- * platform/chromium-win/media/video-empty-source-expected.txt: >- * platform/chromium-win/media/video-no-audio-expected.txt: >- * platform/chromium-win/media/video-volume-slider-expected.txt: >- * platform/chromium-win/media/video-zoom-controls-expected.txt: >- * platform/win-xp/media/audio-repaint-expected.txt: >- >-2011-06-15 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK rebaseline after r88913. >- >- * platform/gtk/svg/hixie/text/003-expected.txt: >- >-2011-06-15 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: indexedDB.open() name argument is required >- https://bugs.webkit.org/show_bug.cgi?id=62398 >- >- * storage/indexeddb/database-name-undefined-expected.txt: Added. >- * storage/indexeddb/database-name-undefined.html: Added. >- >-2011-06-15 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Dimitri Glazkov. >- >- Can't type text when input element is shrunken by a CSS rule >- https://bugs.webkit.org/show_bug.cgi?id=62550 >- >- Added a regression test now that the bug no longer reproduces. >- >- * fast/forms/type-after-focus-rule-shrink-width-expected.txt: Added. >- * fast/forms/type-after-focus-rule-shrink-width.html: Added. >- >-2011-06-15 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Serious performance regression during continuous focused element style updates >- https://bugs.webkit.org/show_bug.cgi?id=61038 >- >- * inspector/elements/edit-dom-actions.html: >- * inspector/elements/set-attribute.html: >- * inspector/styles/styles-update-from-js-expected.txt: >- * inspector/styles/styles-update-from-js.html: >- >-2011-06-15 Martin Robinson <mrobinson@igalia.com> >- >- Reclassify a failing GTK+ test. >- >- * platform/gtk/Skipped: This test is actually failing because >- EventSender.mouseScrollBy is missing. >- >-2011-06-15 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Alexey Proskuryakov. >- >- Textarea will not accept space characters at end of line >- https://bugs.webkit.org/show_bug.cgi?id=61483 >- >- Added a regression test now that the bug has been resolved by r88883. >- >- * editing/input/insert-wrapping-space-in-textarea-expected.txt: Added. >- * editing/input/insert-wrapping-space-in-textarea.html: Added. >- >-2011-06-15 Andrey Kosyakov <caseq@chromium.org> >- >- Unreviewed, rolled out r88937 (broke build on mac) >- >- * http/tests/inspector/network/network-xhr-async-expected.txt: Removed. >- * http/tests/inspector/network/network-xhr-async.html: Removed. >- * http/tests/inspector/network/network-xhr-sync-expected.txt: Removed. >- * http/tests/inspector/network/network-xhr-sync.html: Removed. >- >-2011-06-15 Pavel Feldman <pfeldman@google.com> >- >- Not reviewed: fixing new inspector test. >- >- * inspector/debugger/error-in-watch-expressions-expected.txt: >- * inspector/debugger/error-in-watch-expressions.html: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations update. >- >- A few more updates to bring test_expectations in line with reality. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Pavel Podivilov <podivilov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: script select can be too wide. >- https://bugs.webkit.org/show_bug.cgi?id=62701 >- >- * inspector/debugger/scripts-panel-expected.txt: >- * inspector/debugger/scripts-panel.html: >- >-2011-06-15 Noel Gordon <noel.gordon@gmail.com> >- >- Reviewed by Eric Seidel. >- >- CSS property outline not displayed on an iframe. >- https://bugs.webkit.org/show_bug.cgi?id=57439 >- >- * fast/replaced/no-focus-ring-embed-expected.txt: Added. >- * fast/replaced/no-focus-ring-embed.html: Added. >- * fast/replaced/no-focus-ring-iframe-expected.txt: Added. >- * fast/replaced/no-focus-ring-iframe.html: Added. >- * fast/replaced/no-focus-ring-object-expected.txt: Added. >- * fast/replaced/no-focus-ring-object.html: Added. >- * fast/replaced/outline-replaced-elements-expected.txt: Added. >- * fast/replaced/outline-replaced-elements.html: Added. >- * fast/replaced/resources/focus-test.js: Added. >- (element.onfocus): Use a small delay to avoid test false positives. >- * platform/mac/fast/replaced/outline-replaced-elements-expected.png: Added. >- >-2011-06-15 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88916. >- http://trac.webkit.org/changeset/88916 >- https://bugs.webkit.org/show_bug.cgi?id=62728 >- >- Broke a bunch of layout tests on chromium (Requested by >- podivilov on #webkit). >- >- * inspector/debugger/scripts-panel-expected.txt: >- * inspector/debugger/scripts-panel.html: >- >-2011-06-15 Stephen White <senorblanco@chromium.org> >- >- Unreviewed; chromium test expectations update. >- >- Suppressing the failures introduced at r88913. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Pavel Podivilov <podivilov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: script links are displayed with original line number in pretty-print mode. >- https://bugs.webkit.org/show_bug.cgi?id=62282 >- >- * inspector/debugger/script-formatter-expected.txt: >- * inspector/debugger/script-formatter.html: >- >-2011-06-15 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Test expectation update for r88757 and r88901. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- https://bugs.webkit.org/show_bug.cgi?id=62685 >- >- * platform/chromium-gpu-linux/media/controls-after-reload-expected.png: >- * platform/chromium-gpu-linux/media/controls-strict-expected.png: >- * platform/chromium-gpu-linux/media/controls-styling-expected.png: >- * platform/chromium-gpu-linux/media/controls-without-preload-expected.png: >- * platform/chromium-gpu-linux/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-linux/media/video-display-toggle-expected.png: >- * platform/chromium-gpu-linux/media/video-no-audio-expected.png: >- * platform/chromium-gpu-linux/media/video-volume-slider-expected.png: >- * platform/chromium-gpu-linux/media/video-zoom-controls-expected.png: >- * platform/chromium-gpu-mac/media/controls-after-reload-expected.png: >- * platform/chromium-gpu-mac/media/controls-strict-expected.png: >- * platform/chromium-gpu-mac/media/controls-styling-expected.png: >- * platform/chromium-gpu-mac/media/controls-without-preload-expected.png: >- * platform/chromium-gpu-mac/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-mac/media/video-display-toggle-expected.png: >- * platform/chromium-gpu-mac/media/video-no-audio-expected.png: >- * platform/chromium-gpu-mac/media/video-volume-slider-expected.png: >- * platform/chromium-gpu-mac/media/video-zoom-controls-expected.png: >- * platform/chromium-gpu-win/media/controls-after-reload-expected.png: >- * platform/chromium-gpu-win/media/controls-strict-expected.png: >- * platform/chromium-gpu-win/media/controls-styling-expected.png: >- * platform/chromium-gpu-win/media/controls-without-preload-expected.png: >- * platform/chromium-gpu-win/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-win/media/video-display-toggle-expected.png: >- * platform/chromium-gpu-win/media/video-no-audio-expected.png: >- * platform/chromium-gpu-win/media/video-volume-slider-expected.png: >- * platform/chromium-gpu-win/media/video-zoom-controls-expected.png: >- * platform/chromium-linux/media/video-volume-slider-expected.png: >- * platform/chromium-mac-leopard/media/video-volume-slider-expected.png: >- * platform/chromium-mac/fast/layers/video-layer-expected.txt: >- * platform/chromium-mac/media/audio-controls-rendering-expected.txt: >- * platform/chromium-mac/media/audio-repaint-expected.txt: >- * platform/chromium-mac/media/controls-after-reload-expected.txt: >- * platform/chromium-mac/media/controls-strict-expected.txt: >- * platform/chromium-mac/media/controls-styling-expected.txt: >- * platform/chromium-mac/media/controls-without-preload-expected.txt: >- * platform/chromium-mac/media/video-controls-rendering-expected.txt: >- * platform/chromium-mac/media/video-display-toggle-expected.txt: >- * platform/chromium-mac/media/video-empty-source-expected.txt: >- * platform/chromium-mac/media/video-no-audio-expected.txt: >- * platform/chromium-mac/media/video-volume-slider-expected.png: >- * platform/chromium-mac/media/video-volume-slider-expected.txt: >- * platform/chromium-mac/media/video-zoom-controls-expected.txt: >- * platform/chromium-win/fast/layers/video-layer-expected.txt: >- * platform/chromium-win/media/audio-controls-rendering-expected.txt: >- * platform/chromium-win/media/audio-repaint-expected.txt: >- * platform/chromium-win/media/controls-after-reload-expected.txt: >- * platform/chromium-win/media/controls-strict-expected.txt: >- * platform/chromium-win/media/controls-styling-expected.txt: >- * platform/chromium-win/media/controls-without-preload-expected.txt: >- * platform/chromium-win/media/video-controls-rendering-expected.txt: >- * platform/chromium-win/media/video-display-toggle-expected.txt: >- * platform/chromium-win/media/video-empty-source-expected.txt: >- * platform/chromium-win/media/video-no-audio-expected.txt: >- * platform/chromium-win/media/video-volume-slider-expected.png: >- * platform/chromium-win/media/video-volume-slider-expected.txt: >- * platform/chromium-win/media/video-zoom-controls-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-15 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Skip failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-14 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: "data" URLs not detected in CSS url(...) values properly >- https://bugs.webkit.org/show_bug.cgi?id=62643 >- >- * inspector/styles/styles-url-linkify-expected.txt: >- * inspector/styles/styles-url-linkify.html: >- >-2011-06-15 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, skipped accessibility test failing in GTK. >- >- Failing after r88830, filed bug 62335 for fixing this issue. >- >- * platform/gtk/Skipped: Skipped test. >- >-2011-06-15 Pavel Feldman <pfeldman@google.com> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: [REGRESSION] errors in watches and in console are not rendered in red. >- https://bugs.webkit.org/show_bug.cgi?id=62708 >- >- * inspector/debugger/error-in-watch-expressions-expected.txt: Added. >- * inspector/debugger/error-in-watch-expressions.html: Added. >- >-2011-06-15 Pavel Podivilov <podivilov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: script select can be too wide. >- https://bugs.webkit.org/show_bug.cgi?id=62701 >- >- * inspector/debugger/scripts-panel-expected.txt: >- * inspector/debugger/scripts-panel.html: >- >-2011-06-15 Csaba Osztrogonác <ossy@webkit.org> >- >- Add Qt specific expected files for new passing tests introduced in r88913. >- >- [Qt] css2.1/20110323/inline-non-replaced-height-* tests fail >- https://bugs.webkit.org/show_bug.cgi?id=62710 >- >- * platform/qt/Skipped: Skip failing tests. >- - css2.1/20110323/inline-non-replaced-height-002.htm >- - css2.1/20110323/inline-non-replaced-height-003.htm >- >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-014-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-016-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-017-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-018-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-019-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-021-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-022-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-023-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-024-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-025-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-026-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-028-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-029-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-030-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-031-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-032-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-033-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-035-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-height-036-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-013-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-015-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-020-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-022-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-027-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-029-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-034-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-036-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-041-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-043-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-048-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-050-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-055-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-057-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-062-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-064-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-069-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-071-expected.txt: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/qt/css2.1/20110323/absolute-replaced-width-076-expected.txt: Added. >- * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Added. >- * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt: Added. >- * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Added. >- * platform/qt/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Added. >- * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt: Added. >- * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Added. >- * platform/qt/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-013-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-014-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-015-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-height-016-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-008-expected.png: Added. >- * platform/qt/css2.1/20110323/block-non-replaced-width-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/block-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-008-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-009-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-010-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/qt/css2.1/20110323/float-non-replaced-width-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/qt/css2.1/20110323/float-replaced-width-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-height-007-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-006-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-011-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-012-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-013-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-014-expected.txt: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/qt/css2.1/20110323/inline-replaced-width-015-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-elements-001-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-elements-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-002-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-003-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-004-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-005-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/qt/css2.1/20110323/replaced-min-max-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/qt/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Added. >- * platform/qt/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/qt/css2.1/20110323/width-replaced-element-001-expected.txt: Added. >- >-2011-06-10 Yury Semikhatsky <yurys@chromium.org> >- >- Reviewed by Dmitry Titov. >- >- [Chromium] Worker object may be garbage collected if it doesn't send any messages >- https://bugs.webkit.org/show_bug.cgi?id=62446 >- >- * fast/workers/resources/worker-init.js: Added. >- * fast/workers/worker-init-expected.txt: Added. >- * fast/workers/worker-init.html: Added. >- >-2011-06-15 Nikolas Zimmermann <nzimmermann@rim.com> >- >- Reviewed by David Hyatt. >- >- CSS 2.1: Support replaced elements with relative intrinsic sizes >- https://bugs.webkit.org/show_bug.cgi?id=15849 >- >- CSS 2.1 failure: html4/replaced-intrinsic-ratio-001 >- https://bugs.webkit.org/show_bug.cgi?id=53099 >- >- Imported all CSS 2.1 tests named *replaced* and *intrinsic* (except the still failing background-intrinsic-*) tests. >- All of these pass now, except block-non-replaced-width-008.htm which is unrelated to this patch. >- >- * css2.1/20110323: Added. >- * css2.1/20110323/absolute-non-replaced-height-001.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-002.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-003.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-004.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-005.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-006.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-007.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-008.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-009.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-010.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-011.htm: Added. >- * css2.1/20110323/absolute-non-replaced-height-012.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-001.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-002.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-003.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-004.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-005.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-006.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-007.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-008.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-009.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-010.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-011.htm: Added. >- * css2.1/20110323/absolute-non-replaced-max-height-012.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-001.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-002.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-003.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-004.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-005.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-006.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-007.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-008.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-009.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-010.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-011.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-012.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-013.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-014.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-015.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-016.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-017.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-018.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-019.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-020.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-021.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-022.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-023.htm: Added. >- * css2.1/20110323/absolute-non-replaced-width-024.htm: Added. >- * css2.1/20110323/absolute-replaced-height-001.htm: Added. >- * css2.1/20110323/absolute-replaced-height-002.htm: Added. >- * css2.1/20110323/absolute-replaced-height-003.htm: Added. >- * css2.1/20110323/absolute-replaced-height-004.htm: Added. >- * css2.1/20110323/absolute-replaced-height-005.htm: Added. >- * css2.1/20110323/absolute-replaced-height-007.htm: Added. >- * css2.1/20110323/absolute-replaced-height-008.htm: Added. >- * css2.1/20110323/absolute-replaced-height-009.htm: Added. >- * css2.1/20110323/absolute-replaced-height-010.htm: Added. >- * css2.1/20110323/absolute-replaced-height-011.htm: Added. >- * css2.1/20110323/absolute-replaced-height-012.htm: Added. >- * css2.1/20110323/absolute-replaced-height-014.htm: Added. >- * css2.1/20110323/absolute-replaced-height-016.htm: Added. >- * css2.1/20110323/absolute-replaced-height-017.htm: Added. >- * css2.1/20110323/absolute-replaced-height-018.htm: Added. >- * css2.1/20110323/absolute-replaced-height-019.htm: Added. >- * css2.1/20110323/absolute-replaced-height-021.htm: Added. >- * css2.1/20110323/absolute-replaced-height-022.htm: Added. >- * css2.1/20110323/absolute-replaced-height-023.htm: Added. >- * css2.1/20110323/absolute-replaced-height-024.htm: Added. >- * css2.1/20110323/absolute-replaced-height-025.htm: Added. >- * css2.1/20110323/absolute-replaced-height-026.htm: Added. >- * css2.1/20110323/absolute-replaced-height-028.htm: Added. >- * css2.1/20110323/absolute-replaced-height-029.htm: Added. >- * css2.1/20110323/absolute-replaced-height-030.htm: Added. >- * css2.1/20110323/absolute-replaced-height-031.htm: Added. >- * css2.1/20110323/absolute-replaced-height-032.htm: Added. >- * css2.1/20110323/absolute-replaced-height-033.htm: Added. >- * css2.1/20110323/absolute-replaced-height-035.htm: Added. >- * css2.1/20110323/absolute-replaced-height-036.htm: Added. >- * css2.1/20110323/absolute-replaced-width-001.htm: Added. >- * css2.1/20110323/absolute-replaced-width-006.htm: Added. >- * css2.1/20110323/absolute-replaced-width-008.htm: Added. >- * css2.1/20110323/absolute-replaced-width-013.htm: Added. >- * css2.1/20110323/absolute-replaced-width-015.htm: Added. >- * css2.1/20110323/absolute-replaced-width-020.htm: Added. >- * css2.1/20110323/absolute-replaced-width-022.htm: Added. >- * css2.1/20110323/absolute-replaced-width-027.htm: Added. >- * css2.1/20110323/absolute-replaced-width-029.htm: Added. >- * css2.1/20110323/absolute-replaced-width-034.htm: Added. >- * css2.1/20110323/absolute-replaced-width-036.htm: Added. >- * css2.1/20110323/absolute-replaced-width-041.htm: Added. >- * css2.1/20110323/absolute-replaced-width-043.htm: Added. >- * css2.1/20110323/absolute-replaced-width-048.htm: Added. >- * css2.1/20110323/absolute-replaced-width-050.htm: Added. >- * css2.1/20110323/absolute-replaced-width-055.htm: Added. >- * css2.1/20110323/absolute-replaced-width-057.htm: Added. >- * css2.1/20110323/absolute-replaced-width-062.htm: Added. >- * css2.1/20110323/absolute-replaced-width-064.htm: Added. >- * css2.1/20110323/absolute-replaced-width-069.htm: Added. >- * css2.1/20110323/absolute-replaced-width-071.htm: Added. >- * css2.1/20110323/absolute-replaced-width-076.htm: Added. >- * css2.1/20110323/abspos-non-replaced-width-margin-000-ref.htm: Added. >- * css2.1/20110323/abspos-non-replaced-width-margin-000.htm: Added. >- * css2.1/20110323/abspos-replaced-width-margin-000-ref.htm: Added. >- * css2.1/20110323/abspos-replaced-width-margin-000.htm: Added. >- * css2.1/20110323/block-non-replaced-height-001.htm: Added. >- * css2.1/20110323/block-non-replaced-height-002.htm: Added. >- * css2.1/20110323/block-non-replaced-height-003.htm: Added. >- * css2.1/20110323/block-non-replaced-height-004.htm: Added. >- * css2.1/20110323/block-non-replaced-height-005.htm: Added. >- * css2.1/20110323/block-non-replaced-height-006.htm: Added. >- * css2.1/20110323/block-non-replaced-height-007.htm: Added. >- * css2.1/20110323/block-non-replaced-height-008.htm: Added. >- * css2.1/20110323/block-non-replaced-height-009.htm: Added. >- * css2.1/20110323/block-non-replaced-height-010.htm: Added. >- * css2.1/20110323/block-non-replaced-height-011.htm: Added. >- * css2.1/20110323/block-non-replaced-height-012.htm: Added. >- * css2.1/20110323/block-non-replaced-height-013.htm: Added. >- * css2.1/20110323/block-non-replaced-height-014.htm: Added. >- * css2.1/20110323/block-non-replaced-height-015.htm: Added. >- * css2.1/20110323/block-non-replaced-height-016.htm: Added. >- * css2.1/20110323/block-non-replaced-width-001.htm: Added. >- * css2.1/20110323/block-non-replaced-width-002.htm: Added. >- * css2.1/20110323/block-non-replaced-width-003.htm: Added. >- * css2.1/20110323/block-non-replaced-width-004.htm: Added. >- * css2.1/20110323/block-non-replaced-width-005.htm: Added. >- * css2.1/20110323/block-non-replaced-width-006.htm: Added. >- * css2.1/20110323/block-non-replaced-width-007.htm: Added. >- * css2.1/20110323/block-non-replaced-width-008.htm: Added. >- * css2.1/20110323/block-replaced-height-001.htm: Added. >- * css2.1/20110323/block-replaced-height-002.htm: Added. >- * css2.1/20110323/block-replaced-height-003.htm: Added. >- * css2.1/20110323/block-replaced-height-004.htm: Added. >- * css2.1/20110323/block-replaced-height-005.htm: Added. >- * css2.1/20110323/block-replaced-height-007.htm: Added. >- * css2.1/20110323/block-replaced-width-001.htm: Added. >- * css2.1/20110323/block-replaced-width-006.htm: Added. >- * css2.1/20110323/float-non-replaced-height-001.htm: Added. >- * css2.1/20110323/float-non-replaced-width-001.htm: Added. >- * css2.1/20110323/float-non-replaced-width-002.htm: Added. >- * css2.1/20110323/float-non-replaced-width-003.htm: Added. >- * css2.1/20110323/float-non-replaced-width-004.htm: Added. >- * css2.1/20110323/float-non-replaced-width-005.htm: Added. >- * css2.1/20110323/float-non-replaced-width-006.htm: Added. >- * css2.1/20110323/float-non-replaced-width-007.htm: Added. >- * css2.1/20110323/float-non-replaced-width-008.htm: Added. >- * css2.1/20110323/float-non-replaced-width-009.htm: Added. >- * css2.1/20110323/float-non-replaced-width-010.htm: Added. >- * css2.1/20110323/float-non-replaced-width-011.htm: Added. >- * css2.1/20110323/float-non-replaced-width-012.htm: Added. >- * css2.1/20110323/float-replaced-height-001.htm: Added. >- * css2.1/20110323/float-replaced-height-002.htm: Added. >- * css2.1/20110323/float-replaced-height-003.htm: Added. >- * css2.1/20110323/float-replaced-height-004.htm: Added. >- * css2.1/20110323/float-replaced-height-005.htm: Added. >- * css2.1/20110323/float-replaced-height-007.htm: Added. >- * css2.1/20110323/float-replaced-width-001.htm: Added. >- * css2.1/20110323/float-replaced-width-002.htm: Added. >- * css2.1/20110323/float-replaced-width-003.htm: Added. >- * css2.1/20110323/float-replaced-width-004.htm: Added. >- * css2.1/20110323/float-replaced-width-005.htm: Added. >- * css2.1/20110323/float-replaced-width-006.htm: Added. >- * css2.1/20110323/float-replaced-width-011.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-height-001.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-height-002.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-width-001.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-width-002.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-width-003.htm: Added. >- * css2.1/20110323/inline-block-non-replaced-width-004.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-001.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-002.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-003.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-004.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-005.htm: Added. >- * css2.1/20110323/inline-block-replaced-height-007.htm: Added. >- * css2.1/20110323/inline-block-replaced-width-001.htm: Added. >- * css2.1/20110323/inline-block-replaced-width-006.htm: Added. >- * css2.1/20110323/inline-non-replaced-height-002.htm: Added. >- * css2.1/20110323/inline-non-replaced-height-003.htm: Added. >- * css2.1/20110323/inline-non-replaced-width-001.htm: Added. >- * css2.1/20110323/inline-non-replaced-width-002.htm: Added. >- * css2.1/20110323/inline-replaced-height-001.htm: Added. >- * css2.1/20110323/inline-replaced-height-002.htm: Added. >- * css2.1/20110323/inline-replaced-height-003.htm: Added. >- * css2.1/20110323/inline-replaced-height-004.htm: Added. >- * css2.1/20110323/inline-replaced-height-005.htm: Added. >- * css2.1/20110323/inline-replaced-height-007.htm: Added. >- * css2.1/20110323/inline-replaced-width-001.htm: Added. >- * css2.1/20110323/inline-replaced-width-006.htm: Added. >- * css2.1/20110323/inline-replaced-width-011.htm: Added. >- * css2.1/20110323/inline-replaced-width-012.htm: Added. >- * css2.1/20110323/inline-replaced-width-013.htm: Added. >- * css2.1/20110323/inline-replaced-width-014.htm: Added. >- * css2.1/20110323/inline-replaced-width-015.htm: Added. >- * css2.1/20110323/replaced-elements-001.htm: Added. >- * css2.1/20110323/replaced-intrinsic-001.htm: Added. >- * css2.1/20110323/replaced-intrinsic-002.htm: Added. >- * css2.1/20110323/replaced-intrinsic-003.htm: Added. >- * css2.1/20110323/replaced-intrinsic-004.htm: Added. >- * css2.1/20110323/replaced-intrinsic-005.htm: Added. >- * css2.1/20110323/replaced-intrinsic-ratio-001.htm: Added. >- * css2.1/20110323/replaced-min-max-001.htm: Added. >- * css2.1/20110323/resources: Added. >- * css2.1/20110323/resources/1x1-green.png: Added. >- * css2.1/20110323/resources/1x1-lime.png: Added. >- * css2.1/20110323/resources/1x1-red.png: Added. >- * css2.1/20110323/resources/abspos-replaced-width-margin-000-narrow.png: Added. >- * css2.1/20110323/resources/abspos-replaced-width-margin-000-wide.png: Added. >- * css2.1/20110323/resources/blue15x15.png: Added. >- * css2.1/20110323/resources/blue96x96.png: Added. >- * css2.1/20110323/resources/intrinsic-ratio.svg: Added. >- * css2.1/20110323/resources/replaced-intrinsic-001.svg: Added. >- * css2.1/20110323/resources/replaced-intrinsic-002.svg: Added. >- * css2.1/20110323/resources/replaced-intrinsic-003.svg: Added. >- * css2.1/20110323/resources/replaced-intrinsic-004.svg: Added. >- * css2.1/20110323/resources/replaced-intrinsic-005.svg: Added. >- * css2.1/20110323/resources/replaced-min-max-1.png: Added. >- * css2.1/20110323/resources/replaced-min-max-10.png: Added. >- * css2.1/20110323/resources/replaced-min-max-11.png: Added. >- * css2.1/20110323/resources/replaced-min-max-12.png: Added. >- * css2.1/20110323/resources/replaced-min-max-13.png: Added. >- * css2.1/20110323/resources/replaced-min-max-14.png: Added. >- * css2.1/20110323/resources/replaced-min-max-15.png: Added. >- * css2.1/20110323/resources/replaced-min-max-16.png: Added. >- * css2.1/20110323/resources/replaced-min-max-17.png: Added. >- * css2.1/20110323/resources/replaced-min-max-18.png: Added. >- * css2.1/20110323/resources/replaced-min-max-19.png: Added. >- * css2.1/20110323/resources/replaced-min-max-2.png: Added. >- * css2.1/20110323/resources/replaced-min-max-3.png: Added. >- * css2.1/20110323/resources/replaced-min-max-4.png: Added. >- * css2.1/20110323/resources/replaced-min-max-5.png: Added. >- * css2.1/20110323/resources/replaced-min-max-6.png: Added. >- * css2.1/20110323/resources/replaced-min-max-7.png: Added. >- * css2.1/20110323/resources/replaced-min-max-8.png: Added. >- * css2.1/20110323/resources/replaced-min-max-9.png: Added. >- * css2.1/20110323/resources/replaced-min-max.png: Added. >- * css2.1/20110323/resources/swatch-green.png: Added. >- * css2.1/20110323/resources/swatch-white.png: Added. >- * css2.1/20110323/resources/test-bl.png: Added. >- * css2.1/20110323/resources/test-br.png: Added. >- * css2.1/20110323/resources/test-tl.png: Added. >- * css2.1/20110323/resources/test-tr.png: Added. >- * css2.1/20110323/width-non-replaced-inline-001.htm: Added. >- * css2.1/20110323/width-replaced-element-001.htm: Added. >- * http/tests/misc/object-embedding-svg-delayed-size-negotiation-2.htm: Added. >- * http/tests/misc/resources/intrinsic-ratio-slow.pl: Added. >- * http/tests/misc/resources/intrinsic-ratio.svg: Added. >- * platform/mac/css2.1/20110323: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-006-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-008-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-009-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-010-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-011-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-012-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-height-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-006-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-008-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-009-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-010-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-011-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-012-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-max-height-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-003-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-004-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-005-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-007-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-008-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-009-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-010-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-011-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-012-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-013-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-013-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-014-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-014-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-015-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-015-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-016-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-016-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-017-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-017-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-018-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-018-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-019-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-019-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-020-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-020-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-021-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-021-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-022-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-022-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-023-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-023-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-024-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-non-replaced-width-024-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-008-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-009-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-010-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-011-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-012-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-014-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-014-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-016-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-016-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-017-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-017-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-018-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-018-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-019-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-019-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-021-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-021-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-022-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-022-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-023-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-023-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-024-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-024-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-025-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-025-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-026-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-026-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-028-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-028-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-029-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-029-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-030-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-030-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-031-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-031-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-032-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-032-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-033-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-033-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-035-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-035-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-036-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-height-036-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-008-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-013-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-013-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-015-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-015-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-020-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-020-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-022-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-022-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-027-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-027-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-029-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-029-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-034-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-034-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-036-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-036-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-041-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-041-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-043-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-043-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-048-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-048-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-050-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-050-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-055-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-055-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-057-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-057-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-062-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-062-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-064-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-064-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-069-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-069-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-071-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-071-expected.txt: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-076-expected.png: Added. >- * platform/mac/css2.1/20110323/absolute-replaced-width-076-expected.txt: Added. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.png: Added. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-expected.txt: Added. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.png: Added. >- * platform/mac/css2.1/20110323/abspos-non-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-expected.png: Added. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-expected.txt: Added. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.png: Added. >- * platform/mac/css2.1/20110323/abspos-replaced-width-margin-000-ref-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-006-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-008-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-009-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-010-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-011-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-012-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-013-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-013-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-014-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-014-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-015-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-015-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-016-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-height-016-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-003-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-004-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-005-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-007-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-008-expected.png: Added. >- * platform/mac/css2.1/20110323/block-non-replaced-width-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/block-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/block-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-003-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-004-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-005-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-007-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-008-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-008-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-009-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-009-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-010-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-010-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-011-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-012-expected.png: Added. >- * platform/mac/css2.1/20110323/float-non-replaced-width-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-003-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-004-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-005-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-011-expected.png: Added. >- * platform/mac/css2.1/20110323/float-replaced-width-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-003-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-004-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-non-replaced-width-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-block-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-non-replaced-width-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-002-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-003-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-004-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-005-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-007-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-height-007-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-001-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-006-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-006-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-011-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-011-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-012-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-012-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-013-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-013-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-014-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-014-expected.txt: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-015-expected.png: Added. >- * platform/mac/css2.1/20110323/inline-replaced-width-015-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-elements-001-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-elements-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-001-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-002-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-002-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-003-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-003-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-004-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-004-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-005-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-005-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-intrinsic-ratio-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/replaced-min-max-001-expected.png: Added. >- * platform/mac/css2.1/20110323/replaced-min-max-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/width-non-replaced-inline-001-expected.png: Added. >- * platform/mac/css2.1/20110323/width-non-replaced-inline-001-expected.txt: Added. >- * platform/mac/css2.1/20110323/width-replaced-element-001-expected.png: Added. >- * platform/mac/css2.1/20110323/width-replaced-element-001-expected.txt: Added. >- * platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.png: Added. >- * platform/mac/http/tests/misc/object-embedding-svg-delayed-size-negotiation-2-expected.txt: Added. >- * platform/mac/svg/hixie/text/003-expected.png: Slight width difference, but a progression, exactly like FF now. >- * platform/mac/svg/hixie/text/003-expected.txt: Ditto. >- * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.png: Added. >- * platform/mac/svg/zoom/page/zoom-replaced-intrinsic-ratio-001-expected.txt: Added. >- * svg/zoom/page/resources/intrinsic-ratio.svg: Added. >- * svg/zoom/page/zoom-replaced-intrinsic-ratio-001.htm: Added. >- >-2011-06-15 Kent Tamura <tkent@chromium.org> >- >- [Win] Update expectation for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/win-xp/media/audio-repaint-expected.txt: >- >-2011-06-14 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Update platform specific expected file. >- >- * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: >- >-2011-06-14 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip editing/inserting/return-key-span-start.html added by r88890 on Mac WebKit2 >- since TestRunner doesn't implement eventSender.keyDown. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-14 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by James Robinson. >- >- Fix LayoutTests/canvas/philip/tests/2d.composite.uncovered.fill.destination-in.html >- https://bugs.webkit.org/show_bug.cgi?id=48293 >- >- And >- >- Fix LayoutTests/canvas/philip/tests/2d.composite.uncovered.pattern.destination-in.html >- https://bugs.webkit.org/show_bug.cgi?id=48303 >- >- * canvas/philip/tests/2d.composite.uncovered.pattern.destination-in-expected.txt: >- Added a trailing line. >- >- * fast/canvas/canvas-composite-alpha.html: >- Updated now that we clear what is outside the source. >- >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- Update platform skipped lists. >- >-2011-06-14 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK rebaseline for r88883. >- >- * platform/gtk/fast/forms/basic-textareas-expected.txt: >- * platform/gtk/fast/forms/basic-textareas-quirks-expected.txt: >- >-2011-06-14 Annie Sullivan <sullivan@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- Span ID duplicated when pressing enter at beginning of span >- https://bugs.webkit.org/show_bug.cgi?id=62621 >- >- Added test for span id not getting duplicated when span is cloned. >- >- * editing/inserting/return-key-span-start-expected.txt: Added. >- * editing/inserting/return-key-span-start.html: Added. >- >-2011-06-14 Ryosuke Niwa <rniwa@webkit.org> >- >- Mac, Windows, and Chromium rebaseline for r88883. >- >- * platform/chromium-linux/fast/forms/basic-textareas-expected.png: >- * platform/chromium-win/fast/forms/basic-textareas-expected.png: >- * platform/chromium-win/fast/forms/basic-textareas-expected.txt: >- * platform/chromium-win/fast/forms/basic-textareas-quirks-expected.txt: >- * platform/mac/fast/forms/basic-textareas-expected.png: >- * platform/win/fast/forms/basic-textareas-expected.txt: >- * platform/win/fast/forms/basic-textareas-quirks-expected.txt: >- >-2011-06-14 Kent Tamura <tkent@chromium.org> >- >- [Chromium][Qt] Assign new bug numbers for slider failures, and skip a test on Qt. >- >- * platform/chromium/test_expectations.txt: >- * platform/qt/Skipped: >- >-2011-06-14 Chris Fleizach <cfleizach@apple.com> >- >- Unreviewed. Fixing skip list. >- >- VoiceOver cannot navigate the itunes album view table >- https://bugs.webkit.org/show_bug.cgi?id=62335 >- >- * platform/mac-leopard/Skipped: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by David Hyatt. >- >- Trailing tabs in a textarea become unselectable under certain conditions >- https://bugs.webkit.org/show_bug.cgi?id=54598 >- >- Added a test to ensure Webkit renders leading whitespace when white-space is set to pre-wrap >- and word-wrap is set to break-word. >- >- Also rebaselined few tests because WebKit now renders leading whitespace in those tests. >- >- * fast/text/pre-wrap-trailing-tab-expected.txt: Added. >- * fast/text/pre-wrap-trailing-tab.html: Added. >- * http/tests/misc/acid3-expected.txt: >- * platform/mac/fast/forms/basic-textareas-expected.txt: >- * platform/mac/fast/forms/basic-textareas-quirks-expected.txt >- >-2011-06-14 Ryosuke Niwa <rniwa@webkit.org> >- >- Qt rebaseline after r88757. >- >- * platform/qt/fast/forms/range-thumb-height-percentage-expected.txt: >- * platform/qt/fast/forms/thumbslider-no-parent-slider-expected.txt: >- * platform/qt/fast/multicol/client-rects-expected.txt: >- >-2011-06-14 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Turns out, inspector/cookie-parser.html can timeout out. >- >- * platform/chromium/test_expectations.txt: Added expectation of TIMEOUT. >- >-2011-06-14 Jeffrey Pfau <jpfau@apple.com> >- >- Reviewed by David Hyatt. >- >- Null dereference in WebCore::RenderBlock::splitFlow regarding use of multicol, inline-block, and spanning elements >- https://bugs.webkit.org/show_bug.cgi?id=60028 >- >- Added test for spanning elements within an inline-block child of a multicol element. >- >- * fast/multicol/span/span-as-nested-inline-block-child.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/multicol/span/span-as-nested-inline-block-child-expected.png: Added. >- * platform/mac/fast/multicol/span/span-as-nested-inline-block-child-expected.txt: Added. >- >-2011-06-14 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Record expectation of crash for inspector/cookie-parser.html. >- >- * platform/chromium/test_expectations.txt: Recorded. >- >-2011-06-14 Chris Fleizach <cfleizach@apple.com> >- >- Unreviewed. >- >- VoiceOver cannot navigate the itunes album view table >- https://bugs.webkit.org/show_bug.cgi?id=62335 >- >- Tables are not supported on Leopard for accessibility. >- >- * platform/mac-leopard/Skipped: >- >-2011-06-14 Wyatt Carss <wcarss@google.com> >- >- Reviewed by Ryosuke Niwa. >- >- dump-as-text conversion: editing/deleting/5300379.html >- https://bugs.webkit.org/show_bug.cgi?id=62620 >- >- Converted from pixel test to dump-as-text. This tests that delete backward >- by word does not hang inside an empty div, and that delete backward by word >- deletes exactly one word. >- >- * editing/deleting/5300379-expected.txt: Added. >- * editing/deleting/5300379.html: >- * platform/chromium-win/editing/deleting/5300379-expected.txt: Removed. >- * platform/chromium-win/editing/deleting/5300379-expected.png: Removed. >- * platform/gtk/editing/deleting/5300379-expected.txt: Removed. >- * platform/gtk/editing/deleting/5300379-expected.png: Removed. >- * platform/mac/editing/deleting/5300379-expected.txt: Removed. >- * platform/mac/editing/deleting/5300379-expected.png: Removed. >- * platform/qt/editing/deleting/5300379-expected.txt: Removed. >- * platform/qt/editing/deleting/5300379-expected.png: Removed. >- >-2011-06-14 Qi Zhang <qi.2.zhang@nokia.com> >- >- Reviewed by Laszlo Gombos. >- >- [Qt] fast/dom/HTMLScriptElement/nested-execution.html failed >- https://bugs.webkit.org/show_bug.cgi?id=62227 >- >- * platform/qt/Skipped: >- >-2011-06-14 Chris Fleizach <cfleizach@apple.com> >- >- Reviewed by David Kilzer. >- >- VoiceOver cannot navigate the itunes album view table >- https://bugs.webkit.org/show_bug.cgi?id=62335 >- >- * platform/mac/accessibility/aria-grid-with-strange-hierarchy-expected.txt: Added. >- * platform/mac/accessibility/aria-grid-with-strange-hierarchy.html: Added. >- >-2011-06-13 Adrienne Walker <enne@google.com> >- >- Reviewed by James Robinson. >- >- [chromium] Disable drawing for huge mask layers >- https://bugs.webkit.org/show_bug.cgi?id=62607 >- >- * platform/chromium/compositing/huge-mask-layer-expected.txt: Added. >- * platform/chromium/compositing/huge-mask-layer.html: Added. >- >-2011-06-14 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Add expectations for flaky tests. >- >- * platform/chromium/test_expectations.txt: Recorded flakiness. >- >-2011-06-14 Sreeram Ramachandran <sreeram@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: Allow the console to persist on page refresh or navigation >- https://bugs.webkit.org/show_bug.cgi?id=53359 >- >- Tests that console messages are preserved upon navigation. >- >- * inspector/console/console-preserve-log-expected.txt: Added. >- * inspector/console/console-preserve-log.html: Added. >- >-2011-06-14 Pavel Podivilov <podivilov@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: add tooltip to file select options in scripts panel. >- https://bugs.webkit.org/show_bug.cgi?id=62537 >- >- * inspector/debugger/scripts-panel-expected.txt: >- * inspector/debugger/scripts-panel.html: >- >-2011-06-14 Ademar de Souza Reis Jr. <ademar.reis@openbossa.org> >- >- Unreviewed: unskip test rebasedlined by r88772 >- >- [Qt] Rebaseline http/tests/misc/slow-loading-image-in-pattern.html after r69386 and r83871 >- http://trac.webkit.org/changeset/88772 >- >- The test was rebaselined but the committer forgot to remove it from >- the Skip list. >- >- * platform/qt/Skipped: unskip test >- >-2011-06-14 Yael Aharon <yael.aharon@nokia.com> >- >- Unreviewed. >- >- <progress> should support :indeterminate pseudo-class >- https://bugs.webkit.org/show_bug.cgi?id=62430 >- >- Skip new tests since Windows port does not support the progress element. >- >- * platform/win/Skipped: >- >-2011-06-14 Yael Aharon <yael.aharon@nokia.com> >- >- Reviewed by Kent Tamura. >- >- <progress> should support :indeterminate pseudo-class >- https://bugs.webkit.org/show_bug.cgi?id=62430 >- >- * fast/dom/HTMLProgressElement/indeterminate-progress-001.html: Added. >- * fast/dom/HTMLProgressElement/indeterminate-progress-002-expected.txt: Added. >- * fast/dom/HTMLProgressElement/indeterminate-progress-002.html: Added. >- * platform/mac/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.png: Added. >- * platform/mac/fast/dom/HTMLProgressElement/indeterminate-progress-001-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-14 Pavel Feldman <pfeldman@google.com> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: reload from within inspector window does not work while debugger is paused. >- https://bugs.webkit.org/show_bug.cgi?id=62631 >- >- * inspector/debugger/debugger-reload-on-pause-expected.txt: Added. >- * inspector/debugger/debugger-reload-on-pause.html: Added. >- >-2011-06-14 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Test expectation update for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/chromium-linux/fast/forms/box-shadow-override-expected.txt: >- * platform/chromium-linux/fast/forms/input-appearance-height-expected.txt: >- * platform/chromium-linux/fast/forms/input-appearance-range-expected.png: Added. >- * platform/chromium-linux/fast/forms/slider-thumb-stylability-expected.png: Removed. >- * platform/chromium-linux/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-linux/fast/multicol/client-rects-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/forms/box-shadow-override-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/input-appearance-height-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/input-appearance-range-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/slider-thumb-stylability-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-mac/fast/forms/box-shadow-override-expected.png: Added. >- * platform/chromium-mac/fast/forms/box-shadow-override-expected.txt: Added. >- * platform/chromium-mac/fast/forms/input-appearance-height-expected.png: Added. >- * platform/chromium-mac/fast/forms/input-appearance-height-expected.txt: Added. >- * platform/chromium-mac/fast/forms/input-appearance-range-expected.png: Added. >- * platform/chromium-mac/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-expected.txt: >- * platform/chromium-win/fast/forms/box-shadow-override-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-height-expected.txt: >- * platform/chromium-win/fast/forms/input-appearance-range-expected.png: Added. >- * platform/chromium-win/fast/forms/input-appearance-range-expected.txt: Added. >- * platform/chromium-win/fast/forms/range-thumb-height-percentage-expected.txt: >- * platform/chromium-win/fast/forms/slider-padding-expected.txt: >- * platform/chromium-win/fast/forms/slider-thumb-shared-style-expected.txt: >- * platform/chromium-win/fast/forms/slider-thumb-stylability-expected.png: >- * platform/chromium-win/fast/forms/slider-thumb-stylability-expected.txt: Removed. >- * platform/chromium-win/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-win/fast/forms/thumbslider-no-parent-slider-expected.txt: Copied from LayoutTests/platform/chromium-win/fast/dom/HTMLInputElement/input-slider-update-expected.txt. >- * platform/chromium-win/fast/multicol/client-rects-expected.txt: >- * platform/chromium-win/fast/repaint/slider-thumb-drag-release-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-14 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, skipping test failing in the GTK bots. >- >- * platform/gtk/Skipped: Skipped test >- >-2011-06-14 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, added new baselines for GTK needed after r88266. >- >- * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. >- * platform/gtk/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: Added. >- * platform/gtk/svg/custom/invalid-dasharray-expected.png: Added. >- * platform/gtk/svg/custom/invalid-dasharray-expected.txt: Added. >- >-2011-06-14 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, skipping tests crashing in the GTK bots. >- >- * platform/gtk/Skipped: Skipped tests. >- >-2011-06-14 Kent Tamura <tkent@chromium.org> >- >- [Mac-WK2] Rebaseline for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/mac-wk2/media/controls-without-preload-expected.txt: >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- [Win] More rebaseline for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/win/media/audio-repaint-expected.txt: >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- More Leopard and GTK rebaseline for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/gtk/fast/forms/input-appearance-range-expected.txt: Added. >- * platform/mac-leopard/media/audio-repaint-expected.txt: Added. >- * platform/mac-leopard/media/media-document-audio-repaint-expected.txt: Added. >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- [Win] Rebaseline for r88757. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- * platform/win/media/audio-controls-rendering-expected.txt: >- * platform/win/media/controls-after-reload-expected.txt: >- * platform/win/media/controls-strict-expected.txt: >- * platform/win/media/controls-styling-expected.txt: >- * platform/win/media/controls-without-preload-expected.txt: >- * platform/win/media/media-document-audio-repaint-expected.txt: >- * platform/win/media/video-controls-rendering-expected.txt: >- * platform/win/media/video-display-toggle-expected.txt: >- * platform/win/media/video-no-audio-expected.txt: >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- [GTK] Rebaseline for r88757. >- >- * platform/gtk/fast/dom/HTMLInputElement/input-slider-update-expected.txt: >- * platform/gtk/fast/forms/box-shadow-override-expected.txt: >- * platform/gtk/fast/forms/input-appearance-height-expected.txt: >- * platform/gtk/fast/forms/range-thumb-height-percentage-expected.txt: >- * platform/gtk/fast/forms/slider-padding-expected.txt: >- * platform/gtk/fast/forms/slider-thumb-shared-style-expected.txt: >- * platform/gtk/fast/forms/slider-thumb-stylability-expected.txt: >- * platform/gtk/fast/forms/thumbslider-no-parent-slider-expected.txt: >- * platform/gtk/fast/layers/video-layer-expected.txt: >- * platform/gtk/fast/multicol/client-rects-expected.txt: >- * platform/gtk/fast/repaint/slider-thumb-drag-release-expected.txt: >- * platform/gtk/media/audio-controls-rendering-expected.txt: >- * platform/gtk/media/audio-repaint-expected.txt: >- * platform/gtk/media/controls-strict-expected.txt: >- * platform/gtk/media/controls-styling-expected.txt: >- * platform/gtk/media/controls-without-preload-expected.txt: >- * platform/gtk/media/media-document-audio-repaint-expected.txt: >- * platform/gtk/media/video-controls-rendering-expected.txt: >- * platform/gtk/media/video-empty-source-expected.txt: >- * platform/gtk/media/video-no-audio-expected.txt: >- * platform/gtk/media/video-zoom-controls-expected.txt: >- >-2011-06-13 Igor Oliveira <igor.oliveira@openbossa.org> >- >- Reviewed by Eric Seidel. >- >- [Qt] Rebaseline http/tests/misc/slow-loading-image-in-pattern.html after r69386 and r83871 >- https://bugs.webkit.org/show_bug.cgi?id=62125 >- >- >- Rebaseline LayoutTests/platform/qt/http/tests/misc/slow-loading-image-in-pattern-expected.txt after r69386 and r83871 >- >- * platform/qt/http/tests/misc/slow-loading-image-in-pattern-expected.txt: >- >-2011-06-13 Laszlo Gombos <laszlo.1.gombos@nokia.com> >- >- Reviewed by Eric Seidel. >- >- [Qt] Pass prototype-inheritance-2.html LayoutTest >- https://bugs.webkit.org/show_bug.cgi?id=62224 >- >- Fix the expected result and remove the test from the Skipped list. >- >- * platform/qt/fast/dom/prototype-inheritance-2-expected.txt: >- * platform/qt/Skipped: >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- [Mac] Leopard expectation files for r88757. >- >- * platform/mac-leopard/media/controls-after-reload-expected.txt: >- * platform/mac-leopard/media/controls-strict-expected.txt: >- * platform/mac-leopard/media/controls-styling-expected.txt: >- * platform/mac-leopard/media/controls-without-preload-expected.txt: >- * platform/mac-leopard/media/video-controls-rendering-expected.txt: >- * platform/mac-leopard/media/video-display-toggle-expected.txt: >- * platform/mac-leopard/media/video-no-audio-expected.txt: >- >-2011-06-13 Kent Tamura <tkent@chromium.org> >- >- [Mac] Rebaseline for r88757. >- >- * media/audio-repaint-expected.txt: >- * media/media-document-audio-repaint-expected.txt: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Fix a typo in Mac WebKit2's skipped list. >- >- svg/custom/focus-event-handling-keyboard's extension is xhtml, not html. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip editing/pasteboard/smart-paste-004.html per bug 61633. >- >- * platform/win/Skipped: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium test expectation update; svg/css/group-with-shadow.svg is passing on >- Windows Vista and Windows 7. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Remove failing test expectation for plugins/npruntime/browser-object-identity.html >- on Chromium since it has been fixed by r88679. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-10 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Use CSS machinery to position slider thumb. >- https://bugs.webkit.org/show_bug.cgi?id=52920 >- >- Add two new tests, and update tests with sliders. >- >- * fast/dom/HTMLInputElement/input-slider-update-styled-expected.txt: >- * fast/forms/input-appearance-range.html: Added. >- * fast/forms/slider-thumb-stylability.html: Remove text. >- * fast/forms/validation-message-on-range-expected.txt: Added. >- * fast/forms/validation-message-on-range.html: Added. >- * fast/multicol/client-rects-expected.txt: >- * fast/repaint/slider-thumb-float-expected.txt: >- * media/audio-repaint-expected.txt: >- * media/controls-without-preload-expected.txt: >- * media/media-document-audio-repaint-expected.txt: >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: Skip validaiton-message-on-range.html because >- this platform doesn't support the interactive validation. >- * platform/mac-wk2/Skipped: Skip validaiton-message-on-range.html. >- * platform/mac/fast/dom/HTMLInputElement/input-slider-update-expected.png: >- * platform/mac/fast/dom/HTMLInputElement/input-slider-update-expected.txt: >- * platform/mac/fast/forms/box-shadow-override-expected.png: >- * platform/mac/fast/forms/box-shadow-override-expected.txt: >- * platform/mac/fast/forms/input-appearance-height-expected.png: >- * platform/mac/fast/forms/input-appearance-height-expected.txt: >- * platform/mac/fast/forms/input-appearance-range-expected.png: Added. >- * platform/mac/fast/forms/input-appearance-range-expected.txt: Added. >- * platform/mac/fast/forms/range-thumb-height-percentage-expected.txt: >- * platform/mac/fast/forms/slider-padding-expected.png: >- * platform/mac/fast/forms/slider-padding-expected.txt: >- * platform/mac/fast/forms/slider-thumb-shared-style-expected.png: >- * platform/mac/fast/forms/slider-thumb-shared-style-expected.txt: >- * platform/mac/fast/forms/slider-thumb-stylability-expected.png: >- * platform/mac/fast/forms/slider-thumb-stylability-expected.txt: >- * platform/mac/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/mac/fast/forms/thumbslider-no-parent-slider-expected.txt: >- * platform/mac/fast/repaint/slider-thumb-drag-release-expected.png: >- * platform/mac/fast/repaint/slider-thumb-drag-release-expected.txt: >- * platform/mac/media/audio-controls-rendering-expected.png: >- * platform/mac/media/audio-controls-rendering-expected.txt: >- * platform/mac/media/controls-after-reload-expected.png: >- * platform/mac/media/controls-after-reload-expected.txt: >- * platform/mac/media/controls-styling-expected.png: >- * platform/mac/media/controls-styling-expected.txt: >- * platform/qt/Skipped: Skip validaiton-message-on-range.html. >- * platform/win/Skipped: Skip validaiton-message-on-range.html. >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Another GTK rebaseline after r88717 because non-breaking spaces were somehow converted to >- regular spaces in r88742. >- >- * platform/gtk/editing/pasteboard/paste-xml-expected.txt: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium rebaselines after r88617. The test is now passing on all platforms. >- >- * platform/chromium-mac-leopard/fast/repaint/selection-after-remove-expected.png: Added. >- * platform/chromium-mac/fast/repaint/selection-after-remove-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Jessie Berlin <jberlin@apple.com> >- >- REGRESSION (r88579-r88581): compositing/iframes/invisible-nested-iframe-show.html, >- compositing/tiling/huge-layer-add-remove-child.html failing on Windows 7 Release (Tests). >- https://bugs.webkit.org/show_bug.cgi?id=62566 >- >- Add/update the (failing?) expected results for Windows in order to get the bots green. >- >- * platform/win/compositing/iframes/invisible-nested-iframe-show-expected.txt: >- * platform/win/compositing/tiling: Added. >- * platform/win/compositing/tiling/huge-layer-add-remove-child-expected.txt: Added. >- >-2011-06-13 David Levin <levin@chromium.org> >- >- Reviewed by Dmitry Titov. >- >- fast/workers/worker-close.html is flaky on slower machines. >- https://bugs.webkit.org/show_bug.cgi?id=62609 >- >- * fast/workers/worker-close.html: Move a setTimeout to start after >- the response message is received to make the ordering of messages >- deterministic. >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium Mac test expectation updates; Removed failing test expectations from >- various tests because they seem to be passing now. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip test added by r88578 on GTK per bug 62585. >- >- * platform/gtk/Skipped: >- >-2011-06-13 Jessie Berlin <jberlin@apple.com> >- >- Add Windows-specific pixel and text results to account for the different design of the >- ying-yang character on Windows (and of course to get the bots green). >- >- * platform/win/svg/hixie/intrinsic: Added. >- * platform/win/svg/hixie/intrinsic/003-expected.png: Added. >- * platform/win/svg/hixie/intrinsic/003-expected.txt: Added. >- >-2011-06-13 Kentaro Hara <haraken@google.com> >- >- Reviewed by Alexey Proskuryakov. >- >- Add a new test for checking rounding error in printing codes >- https://bugs.webkit.org/show_bug.cgi?id=61256 >- >- Add a new test (printing/page-count-with-one-word.html). This test >- checks if only one page is printed for an HTML page with one word for >- various paper sizes around A4 portrait size, i.e. [530px, 560px) for >- width and [730px, 760px) for height. >- >- * printing/page-count-with-one-word-expected.txt: Added. >- * printing/page-count-with-one-word.html: Added. >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Mac, GTK, and Qt rebaselines after r88717. >- >- * platform/gtk/editing/pasteboard/paste-xml-expected.txt: >- * platform/mac/editing/pasteboard/paste-xml-expected.txt: >- >-2011-06-13 Jeffrey Pfau <jpfau@apple.com> >- >- Reviewed by Darin Adler. >- >- Crash in WebCore::RenderMathMLUnderOver::layout() >- https://bugs.webkit.org/show_bug.cgi?id=57900 >- >- Added a test that tries to remove the children of munder, mover and munderover elements. >- >- * mathml/munderover-remove-children-expected.txt: Added. >- * mathml/munderover-remove-children.html: Added. >- >-2011-06-13 Wyatt Carss <wcarss@google.com> >- >- Reviewed by Ryosuke Niwa. >- >- dump-as-markup conversion: editing/pasteboard/paste-xml.xhtml >- https://bugs.webkit.org/show_bug.cgi?id=58159 >- >- Converted to dump the key part of page as text. The platform-dependent files are >- copied from the previous setup of this test, as mac appears to do something different >- in its delegate info -- 'insertText' instead of 'insertNode', and some differences >- in how it counts indices. Note that chromium-mac works the same as chromium-win, but >- would hit mac first. GTK appears to pass for now; if tests fail we'll reorganize these >- a bit accordingly. >- >- * editing/pasteboard/paste-xml.xhtml: >- * platform/chromium-linux/editing/pasteboard/paste-xml-expected.png: Removed. >- * platform/chromium-mac/editing/pasteboard/paste-xml-expected.txt: >- * platform/chromium-win/editing/pasteboard/paste-xml-expected.png: Removed. >- * platform/chromium-win/editing/pasteboard/paste-xml-expected.txt: >- * platform/chromium/test_expectations.txt: >- * platform/mac/editing/pasteboard/paste-xml-expected.png: Removed. >- * platform/mac/editing/pasteboard/paste-xml-expected.txt: >- * platform/win/editing/pasteboard/paste-xml-expected.txt: >- >-2011-06-13 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Eric Seidel. >- >- IndexedDB test: Infinity as key >- https://bugs.webkit.org/show_bug.cgi?id=62285 >- >- * storage/indexeddb/key-type-infinity-expected.txt: Added. >- * storage/indexeddb/key-type-infinity.html: Added. >- >-2011-06-13 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Eric Seidel. >- >- IndexedDB test: odd database names >- https://bugs.webkit.org/show_bug.cgi?id=62322 >- >- * storage/indexeddb/database-odd-names-expected.txt: Added. >- * storage/indexeddb/database-odd-names.html: Added. >- >-2011-06-13 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Eric Seidel. >- >- [GTK] [Qt] Eliminate duplicate TestNetscapePlugin implementation >- https://bugs.webkit.org/show_bug.cgi?id=62385 >- >- Remove adjustCursorEvent from platform-specific test expectation for Chromium Linux, >- since the TestPlugin no longer prints this event. >- >- * platform/chromium-linux/plugins/mouse-events-expected.txt: Remove adjustCursorEvent output. >- >-2011-06-13 Nate Chapin <japhet@chromium.org> >- >- Reviewed by Adam Barth. >- >- Rewrite a bunch of XHR-based tests to use waitUntilDone()/notifyDone(). >- https://bugs.webkit.org/show_bug.cgi?id=62066 >- >- * fast/xmlhttprequest/xmlhttprequest-gc.html: >- * fast/xmlhttprequest/xmlhttprequest-get.xhtml: >- * fast/xmlhttprequest/xmlhttprequest-html-response-encoding.html: >- * html5lib/runner.html: >- * html5lib/webkit-resumer.html: >- * http/tests/xmlhttprequest/access-control-basic-denied-preflight-cache.html: >- * http/tests/xmlhttprequest/access-control-basic-non-simple-allow-async.html: >- * http/tests/xmlhttprequest/access-control-preflight-async-header-denied.html: >- * http/tests/xmlhttprequest/access-control-preflight-async-method-denied.html: >- * http/tests/xmlhttprequest/access-control-preflight-async-not-supported.html: >- * http/tests/xmlhttprequest/cross-origin-preflight-get.html: >- * http/tests/xmlhttprequest/event-listener-gc.html: >- * http/tests/xmlhttprequest/interactive-state.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-004-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-005-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-006-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-007-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-008-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-009-iframe.html: >- * http/tests/xmlhttprequest/resources/uri-resolution-opera-open-010-iframe.html: >- * http/tests/xmlhttprequest/response-encoding.html: >- * http/tests/xmlhttprequest/simple-cross-origin-progress-events.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-004.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-005.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-006.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-007.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-008.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-009.html: >- * http/tests/xmlhttprequest/uri-resolution-opera-open-010.html: >- * http/tests/xmlhttprequest/web-apps/001.html: >- * http/tests/xmlhttprequest/xmlhttprequest-50ms-download-dispatch.html: >- * http/tests/xmlhttprequest/xmlhttprequest-crlf-getAllResponseHeader.html: >- * http/tests/xmlhttprequest/xmlhttprequest-unsafe-redirect.html: >- * http/tests/xmlhttprequest/zero-length-response.html: >- >-2011-06-13 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Eric Seidel. >- >- IndexedDB test: readonly properties >- https://bugs.webkit.org/show_bug.cgi?id=62392 >- >- * storage/indexeddb/readonly-expected.txt: Added. >- * storage/indexeddb/readonly.html: Added. >- >-2011-06-13 Annie Sullivan <sullivan@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Convert editing/execCommand/outdent-selection.html to dump-as-markup >- https://bugs.webkit.org/show_bug.cgi?id=62582 >- >- Convert the test to dump as markup and clean up the HTML. >- >- * editing/execCommand/outdent-selection-expected.txt: Added. >- * editing/execCommand/outdent-selection.html: >- * platform/chromium-linux/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/chromium-mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/chromium-mac/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/chromium-win/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/chromium-win/editing/execCommand/outdent-selection-expected.txt: Removed. >- * platform/gtk/editing/execCommand/outdent-selection-expected.txt: Removed. >- * platform/mac-leopard/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/mac/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/mac/editing/execCommand/outdent-selection-expected.txt: Removed. >- * platform/qt/editing/execCommand/outdent-selection-expected.png: Removed. >- * platform/qt/editing/execCommand/outdent-selection-expected.txt: Removed. >- >-2011-06-13 Adrienne Walker <enne@google.com> >- >- Reviewed by Simon Fraser. >- >- Overlap test needs to consider children of composited layers >- https://bugs.webkit.org/show_bug.cgi?id=62465 >- >- * compositing/layer-creation/overlap-child-layer-expected.png: Added. >- * compositing/layer-creation/overlap-child-layer-expected.txt: Added. >- * compositing/layer-creation/overlap-child-layer.html: Added. >- >-2011-06-13 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Correctly classify the test as failing. >- >- * platform/chromium/test_expectations.txt: It's failing. >- >-2011-06-13 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Record more flakiness... >- >- * platform/chromium/test_expectations.txt: Added expectation of flakiness. >- >-2011-06-13 Jessie Berlin <jberlin@apple.com> >- >- [Windows Tests] EventSender.contextClick() needs to return a JS array of the context menu >- items. >- https://bugs.webkit.org/show_bug.cgi?id=62597 >- >- Add editing/pasteboard/copy-standalone-image-crash.htm to the Windows skipped list, since >- it depends on getting a list of the context menu items. >- >- * platform/win/Skipped: >- >-2011-06-13 Ryosuke Niwa <rniwa@webkit.org> >- >- Windows rebaseline after r62565. The failure is tracked by the bug 62565. >- >- * platform/win/fast/harness/results-expected.txt: >- >-2011-06-13 David Levin <levin@chromium.org> >- >- Test fix for Windows. >- >- [Windows] Web Worker test causes script error on Windows platform alone. >- https://bugs.webkit.org/show_bug.cgi?id=62595 >- >- * platform/win/Skipped: Skipped the test with the problem. >- >-2011-06-13 Jessie Berlin <jberlin@apple.com> >- >- plugins/mouse-events and plugins/mouse-events-fixedpos don't fire events on the plugin. >- https://bugs.webkit.org/show_bug.cgi?id=33973 >- >- Update the Windows-specific results to reflect that the mouseUp and mouseDown events are >- getting fired on the plugin, but not the getFocusEvent in order to get the bots green. >- >- * platform/win/plugins/mouse-events-expected.txt: >- * platform/win/plugins/mouse-events-fixedpos-expected.txt: >- >-2011-06-13 Nate Chapin <japhet@chromium.org> >- >- Reviewed by Darin Fisher. >- >- Test for https://bugs.webkit.org/show_bug.cgi?id=61482, >- mostly written by Kelly Norton (knorton@google.com). >- >- * plugins/npruntime/embed-property-equality-expected.txt: Added. >- * plugins/npruntime/embed-property-equality.html: Added. >- >-2011-06-13 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Alexey Proskuryakov. >- >- chrome.dll!WebCore::Node::createRendererIfNeeded ReadAV@NULL (7079875ef32458c5c891a311715b683f) >- https://bugs.webkit.org/show_bug.cgi?id=49316 >- >- The bug got fixed, thus just landing the test case. Including another test case from >- http://code.google.com/p/chromium/issues/detail?id=61562 >- which should have the same root cause. >- >- * fast/html/crash-style-first-letter-expected.txt: Added. >- * fast/html/crash-style-first-letter.html: Added. >- * svg/custom/svg-use-style-float-crash-expected.txt: Added. >- * svg/custom/svg-use-style-float-crash.svg: Added. >- >-2011-06-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Fix up a boo-boo in GPU test expectations >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 David Levin <levin@chromium.org> >- >- Test run fix. >- >- [GTK] DumpRenderTree doesn't block external requests. >- https://bugs.webkit.org/show_bug.cgi?id=62585 >- >- * platform/gtk/Skipped: Skipping a test which depends on this. >- >-2011-06-13 Robert Hogan <robert@webkit.org> >- >- Unreviewed, cleanup r87611. >- >- [Qt]Unskip fast/events/backspace-navigates-back.html >- >- This should have been unskipped by http://trac.webkit.org/changeset/87611 >- >- * platform/qt/Skipped: >- >-2011-06-13 Jessie Berlin <jberlin@apple.com> >- >- Remove an extra space in the Windows-specific failing expected results to ge the bots >- green. >- >- * platform/win/printing/page-count-relayout-shrink-expected.txt: >- >-2011-06-13 James Robinson <jamesr@chromium.org> >- >- [chromium] Clean up GPU test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: complex keyPaths >- https://bugs.webkit.org/show_bug.cgi?id=62468 >- >- * storage/indexeddb/keyPath-expected.txt: Added. >- * storage/indexeddb/keyPath.html: Added. >- >-2011-06-13 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Nikolas Zimmermann. >- >- SVGAnimation should use direct unit animation for SVGLength >- https://bugs.webkit.org/show_bug.cgi?id=61368 >- >- Added new tests to check correct behavior of SVGLength animations. >- >- * svg/animations/script-tests/svglength-animation-LengthModeHeight.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-LengthModeOther.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-LengthModeWidth.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-invalid-value-1.js: Added. >- (sample1): >- (sample2): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-invalid-value-2.js: Added. >- (sample1): >- (sample2): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-invalid-value-3.js: Added. >- (sample1): >- (sample2): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-number-to-number.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-cm.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-ems.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-exs.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-in.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-number.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-pc.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-percentage.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-pt.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-px-to-px.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/svglength-animation-values.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (sample4): >- (sample5): >- (executeTest): >- * svg/animations/svglength-animation-LengthModeHeight-expected.txt: Added. >- * svg/animations/svglength-animation-LengthModeHeight.html: Added. >- * svg/animations/svglength-animation-LengthModeOther-expected.txt: Added. >- * svg/animations/svglength-animation-LengthModeOther.html: Added. >- * svg/animations/svglength-animation-LengthModeWidth-expected.txt: Added. >- * svg/animations/svglength-animation-LengthModeWidth.html: Added. >- * svg/animations/svglength-animation-invalid-value-1-expected.txt: Added. >- * svg/animations/svglength-animation-invalid-value-1.html: Added. >- * svg/animations/svglength-animation-invalid-value-2-expected.txt: Added. >- * svg/animations/svglength-animation-invalid-value-2.html: Added. >- * svg/animations/svglength-animation-invalid-value-3-expected.txt: Added. >- * svg/animations/svglength-animation-invalid-value-3.html: Added. >- * svg/animations/svglength-animation-number-to-number-expected.txt: Added. >- * svg/animations/svglength-animation-number-to-number.html: Added. >- * svg/animations/svglength-animation-px-to-cm-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-cm.html: Added. >- * svg/animations/svglength-animation-px-to-ems-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-ems.html: Added. >- * svg/animations/svglength-animation-px-to-exs-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-exs.html: Added. >- * svg/animations/svglength-animation-px-to-in-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-in.html: Added. >- * svg/animations/svglength-animation-px-to-number-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-number.html: Added. >- * svg/animations/svglength-animation-px-to-pc-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-pc.html: Added. >- * svg/animations/svglength-animation-px-to-percentage-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-percentage.html: Added. >- * svg/animations/svglength-animation-px-to-pt-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-pt.html: Added. >- * svg/animations/svglength-animation-px-to-px-expected.txt: Added. >- * svg/animations/svglength-animation-px-to-px.html: Added. >- * svg/animations/svglength-animation-values-expected.txt: Added. >- * svg/animations/svglength-animation-values.html: Added. >- >-2011-06-13 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: setVersion() version argument is required >- https://bugs.webkit.org/show_bug.cgi?id=62401 >- >- * storage/indexeddb/setVersion-undefined-expected.txt: Added. >- * storage/indexeddb/setVersion-undefined.html: Added. >- >-2011-06-13 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Clean up test expectations, add a flake. >- >- * platform/chromium/test_expectations.txt: Cleaned up. >- >-2011-06-13 Dirk Schulze <krit@webkit.org> >- >- Rubber-stamped by Rob Buis. >- >- SVG patternTransform not animatable >- https://bugs.webkit.org/show_bug.cgi?id=62538 >- >- Removing 'transform' animation test. It was added as an example for animateTransform tests but fails on some platforms. >- Also it is not part of the fix for 'patternTransform' animation. The test for 'patternTransform' works. >- Adding animateTransform-pattern-transform to the skip list of Mac WebKit2, like all other animation or dynamic-update tests. >- >- * platform/mac-wk2/Skipped: >- * svg/animations/animateTransform-transformable-transform-expected.txt: Removed. >- * svg/animations/animateTransform-transformable-transform.html: Removed. >- * svg/animations/script-tests/animateTransform-transformable-transform.js: Removed. >- >-2011-06-13 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Updated Leopard pixel baselines. >- >- * platform/chromium-mac-leopard/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: >- * platform/chromium-mac-leopard/fast/borders/border-image-rotate-transform-expected.png: >- * platform/chromium-mac-leopard/fast/borders/outline-alpha-block-expected.png: Added. >- * platform/chromium-mac-leopard/fast/borders/outline-alpha-inline-expected.png: Added. >- * platform/chromium-mac-leopard/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Update test expectations. >- >- * platform/chromium-mac-leopard/svg/as-image/svg-as-background-with-relative-size-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Update test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-13 Young Han Lee <joybro@company100.net> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [Texmap][Qt] Accelerated animation is repeating as if its direction property is always 'alternate'. >- https://bugs.webkit.org/show_bug.cgi?id=62281 >- >- syncAnimations() has miscalculated a normalized progress value as if the animation always has alternate direction property. >- >- * animations/animation-direction-normal-expected.png: Added. >- * animations/animation-direction-normal-expected.txt: Added. >- * animations/animation-direction-normal.html: Added. >- >-2011-06-13 Dirk Schulze <krit@webkit.org> >- >- Reviewed by Rob Buis. >- >- SVG patternTransform not animatable >- https://bugs.webkit.org/show_bug.cgi?id=62538 >- >- Test SVG animateTransform for attributes 'transform' and 'patternTransform'. >- >- * svg/animations/animateTransform-pattern-transform-expected.txt: Added. >- * svg/animations/animateTransform-pattern-transform.html: Added. >- * svg/animations/animateTransform-transformable-transform-expected.txt: Added. >- * svg/animations/animateTransform-transformable-transform.html: Added. >- * svg/animations/script-tests/animateTransform-pattern-transform.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- * svg/animations/script-tests/animateTransform-transformable-transform.js: Added. >- (sample1): >- (sample2): >- (sample3): >- (executeTest): >- >-2011-06-13 Vitaly Repeshko <vitalyr@chromium.org> >- >- Unreviewed. >- >- [chromium] Update test expectations. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-12 MORITA Hajime <morrita@google.com> >- >- Unreviewed, rolling out r88625. >- http://trac.webkit.org/changeset/88625 >- https://bugs.webkit.org/show_bug.cgi?id=61073 >- >- Breaks SL Webkit2 Tests >- >- * platform/mac-wk2/Skipped: >- >-2011-06-12 Hironori Bono <hbono@chromium.org> >- >- Reviewed by Hajime Morita. >- >- Add null checks to HTMLTextAreaElement::removeSpellcheckRange(). >- https://bugs.webkit.org/show_bug.cgi?id=62526 >- >- This change adds null checks to the following function to prevent crashes >- when calling removeSpellcheckRange() with null: >- HTMLTextAreaElement::removeSpellcheckRange(), >- HTMLInputElement::removeSpellcheckRange(), and >- HTMLDivElement::removeSpellcheckRange(). >- >- * editing/spelling/spellcheck-api-crash-expected.txt: Added. >- * editing/spelling/spellcheck-api-crash.html: Added. >- >-2011-06-12 Mahesh Kulkarni <mahesh.kulkarni@nokia.com> >- >- Reviewed by Antonio Gomes. >- >- [Qt] LayoutTestController needs setTextDirection implementation >- https://bugs.webkit.org/show_bug.cgi?id=62442 >- >- Unskipping fast/html/set-text-direction.html. >- >- * platform/qt/Skipped: >- >-2011-06-12 Dominic Cooney <dominicc@chromium.org> >- >- Reviewed by Hajime Morita. >- >- Add window.internals to WebKit2's WebKitTestRunner. >- https://bugs.webkit.org/show_bug.cgi?id=61073 >- >- * platform/mac-wk2/Skipped: unskip fast/harness/internals-object.html >- >-2011-06-12 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88616. >- http://trac.webkit.org/changeset/88616 >- https://bugs.webkit.org/show_bug.cgi?id=62517 >- >- It broke editing/text-iterator/findString.html (Requested by >- tonikitoo on #webkit). >- >- * platform/qt/Skipped: >- >-2011-06-12 Mahesh Kulkarni <mahesh.kulkarni@nokia.com> >- >- Reviewed by Antonio Gomes. >- >- [Qt] LayoutTestController needs setTextDirection implementation >- https://bugs.webkit.org/show_bug.cgi?id=62442 >- >- Unskipping fast/html/set-text-direction.html. >- >- * platform/qt/Skipped: >- >-2011-06-12 Robert Hogan <robert@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt] Fix methods.html and methods-lower-case.html >- https://bugs.webkit.org/show_bug.cgi?id=62221 >- >- Our expectations for the unskipped tests have the following differences from the mac >- platform: >- - POST requests with no data get a default Content-Type of 'application/octet-stream' in >- Qt 4.8 and 'application/x-www-form-urlencoded' in Qt 4.7.3. >- This is Qt-defined behaviour in QNetworkAccessManager (see QHttpNetworkRequestPrivate::header >- in qhttpnetworkrequest.cpp) >- - DELETE and HEAD requests get their ContentType and ContentLength headers (if present) removed >- by QNetworkReplyHandler. QtWebKit does not send data for either of these request types. >- >- * platform/qt-4.8/http/tests/xmlhttprequest/methods-expected.txt: Added. >- * platform/qt-4.8/http/tests/xmlhttprequest/workers/methods-async-expected.txt: Added. >- * platform/qt-4.8/http/tests/xmlhttprequest/workers/methods-expected.txt: Added. >- * platform/qt-4.8/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt: Added. >- * platform/qt/Skipped: Unskip: http/tests/xmlhttprequest/methods.html >- http/tests/xmlhttprequest/methods-lower-case.html >- http/tests/xmlhttprequest/workers/methods-async.html >- http/tests/xmlhttprequest/workers/methods.html >- http/tests/xmlhttprequest/workers/shared-worker-methods-async.html >- * platform/qt/http/tests/xmlhttprequest/methods-expected.txt: Added. >- * platform/qt/http/tests/xmlhttprequest/workers/methods-async-expected.txt: Added. >- * platform/qt/http/tests/xmlhttprequest/workers/methods-expected.txt: Added. >- * platform/qt/http/tests/xmlhttprequest/workers/shared-worker-methods-async-expected.txt: Added. >- >-2011-06-11 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium rebaseline after r85560. >- >- Also update test expectation for svg/W3C-SVG-1.1/text-intro-05-t.svg >- because it has been passing on Mac. >- >- * platform/chromium-linux/fast/forms/input-placeholder-text-indent-expected.png: Added. >- * platform/chromium-win/fast/forms/input-placeholder-text-indent-expected.png: Added. >- * platform/chromium-win/fast/forms/input-placeholder-text-indent-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-11 Dimitri Glazkov <dglazkov@chromium.org> >- >- Unreviewed, rolling out r88569. >- http://trac.webkit.org/changeset/88569 >- https://bugs.webkit.org/show_bug.cgi?id=62398 >- >- Broke Chromium browser test: >- IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest >- >- * storage/indexeddb/database-name-undefined-expected.txt: Removed. >- * storage/indexeddb/database-name-undefined.html: Removed. >- >-2011-06-11 Dimitri Glazkov <dglazkov@chromium.org> >- >- Remove expectation of failure after clobber. >- https://bugs.webkit.org/show_bug.cgi?id=62364 >- >- * platform/chromium/test_expectations.txt: Removed. >- >-2011-06-11 Dimitri Glazkov <dglazkov@chromium.org> >- >- Unreviewed, rolling out r88565. >- http://trac.webkit.org/changeset/88565 >- https://bugs.webkit.org/show_bug.cgi?id=62401 >- >- Broke Chromium browser test: >- IndexedDBBrowserTestWithGCExposed.DatabaseCallbacksTest >- >- * storage/indexeddb/setVersion-undefined-expected.txt: Removed. >- * storage/indexeddb/setVersion-undefined.html: Removed. >- >-2011-06-10 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Simon Fraser. >- >- Tests that accessing the parent element sheet of an inline style, link >- declaration of styled, body elements which are removed from document, >- does not result in crash. >- https://bugs.webkit.org/show_bug.cgi?id=62230 >- >- * fast/dom/body-link-decl-parent-crash-expected.txt: Added. >- * fast/dom/body-link-decl-parent-crash.html: Added. >- * fast/dom/styled-inline-style-decl-parent-crash-expected.txt: Added. >- * fast/dom/styled-inline-style-decl-parent-crash.html: Added. >- >-2011-06-10 Ryosuke Niwa <rniwa@webkit.org> >- >- Skip inspector/profiler/cpu-profiler-profiling-without-inspector.html and >- svg/custom/focus-event-handling-keyboard.html on Mac WebKit2 >- because they use DRT features not supported by WebKitTestRunner. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-10 Ryosuke Niwa <rniwa@webkit.org> >- >- GTK and Qt rebaselines after r88555. >- >- * platform/gtk/svg/custom/focus-ring-expected.txt: >- * platform/qt/svg/custom/focus-ring-expected.txt: >- >-2011-06-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update chromium gpu baselines >- >- * platform/chromium-gpu-linux/compositing/flat-with-transformed-child-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/geometry/clip-expected.txt: Removed. >- * platform/chromium-gpu-linux/compositing/geometry/foreground-layer-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/geometry/repaint-foreground-layer-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/iframes/iframe-content-flipping-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/overflow/zero-size-overflow-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/reflections/backface-hidden-reflection-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/repaint/content-into-overflow-expected.png: Removed. >- * platform/chromium-gpu-linux/compositing/repaint/overflow-into-content-expected.png: Removed. >- * platform/chromium-gpu-win/compositing/geometry/clip-expected.txt: Removed. >- * platform/chromium-gpu-win/compositing/geometry/fixed-in-composited-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/foreground-layer-expected.txt: Added. >- * platform/chromium-gpu-win/compositing/iframes/invisible-nested-iframe-show-expected.txt: Added. >- * platform/chromium-gpu-win/compositing/overflow/clip-descendents-expected.txt: >- * platform/chromium-gpu-win/compositing/reflections/nested-reflection-transformed-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/nested-reflection-transformed2-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/reflection-in-composited-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/reflection-on-composited-expected.png: >- * platform/chromium-gpu-win/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-win/compositing/tiling/huge-layer-add-remove-child-expected.txt: >- * platform/chromium-gpu-win/compositing/tiling/huge-layer-expected.txt: >- * platform/chromium-gpu-win/compositing/tiling/huge-layer-resize-expected.txt: >- * platform/chromium/test_expectations.txt: >- >-2011-06-10 Ryosuke Niwa <rniwa@webkit.org> >- >- Windows and Chromium rebaselines after r88592. Apparently, some tests are failing on Windows. >- >- * platform/chromium/fast/harness/results-expected.txt: >- * platform/win/fast/harness/results-expected.txt: >- >-2011-06-10 Ryosuke Niwa <rniwa@webkit.org> >- >- Add fail expectation to fast/dom/navigator-detached-no-crash.htm on Chromium Mac >- because it has been failing on the bot; the failure is tracked by the bug 62364. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-10 Ryosuke Niwa <rniwa@webkit.org> >- >- Reviewed by Ojan Vafai. >- >- new-run-webkit-tests: results.html don't list the same list of failed tests as bots do >- https://bugs.webkit.org/show_bug.cgi?id=62425 >- >- Fixed the bug by hiding expected crash, timeout, pass, etc... by default. >- >- * fast/harness/resources/results-test.js: >- * fast/harness/results-expected.txt: >- * fast/harness/results.html: >- >-2011-06-10 Jer Noble <jer.noble@apple.com> >- >- Reviewed by Darin Adler. >- >- REGRESSION: End of apple.com video in full-screen mode leads to unusable page. >- https://bugs.webkit.org/show_bug.cgi?id=62411 >- >- * fullscreen/full-screen-remove-ancestor-after-expected.txt: Added. >- * fullscreen/full-screen-remove-ancestor-after.html: Added. >- * platform/mac/fullscreen/full-screen-remove-ancestor-after-expected.png: Added. >- >-2011-06-10 James Robinson <jamesr@chromium.org> >- >- [chromium] Update chromium compositor baselines for r88580 >- >- * platform/chromium-gpu-linux/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/clip-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/geometry/fixed-in-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/foreground-layer-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/iframes/invisible-nested-iframe-show-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/overflow/clip-descendents-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/nested-reflection-transformed2-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/reflection-in-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/reflection-on-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-add-remove-child-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-expected.txt: Added. >- * platform/chromium-gpu-linux/compositing/tiling/huge-layer-resize-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/geometry/foreground-layer-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/iframes/invisible-nested-iframe-show-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/reflections/nested-reflection-transformed-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/nested-reflection-transformed2-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/reflection-in-composited-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/reflection-on-composited-expected.png: >- * platform/chromium-gpu-mac/compositing/shadows/shadow-drawing-expected.png: >- * platform/chromium-gpu-mac/compositing/tiling/huge-layer-add-remove-child-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/tiling/huge-layer-expected.txt: Added. >- * platform/chromium-gpu-mac/compositing/tiling/huge-layer-resize-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-10 James Simonsen <simonjam@chromium.org> >- >- Unreviewed, missing expectations for non-V8 from change 88584. >- https://bugs.webkit.org/show_bug.cgi?id=62412 >- >- * html5lib/runner-expected.txt: >- >-2011-06-10 James Simonsen <simonjam@chromium.org> >- >- Reviewed by Eric Seidel. >- >- <script> inside <svg> should be executed >- https://bugs.webkit.org/show_bug.cgi?id=62412 >- >- * platform/chromium/html5lib/runner-expected.txt: Passes another test. >- * svg/dom/range-delete-expected.txt: Removed. >- * svg/dom/range-delete.html: Removed. >- * svg/dom/use-style-recalc-script-execute-crash-expected.txt: Now expected to execute script (and not crash). >- * svg/dom/use-style-recalc-script-execute-crash.html: >- * svg/in-html/resources/external.js: Added. >- * svg/in-html/script-expected.txt: Added. >- * svg/in-html/script-external-expected.txt: Added. >- * svg/in-html/script-external.html: Added. >- * svg/in-html/script-nested-expected.txt: Added. >- * svg/in-html/script-nested.html: Added. >- * svg/in-html/script-write-expected.txt: Added. >- * svg/in-html/script-write.html: Added. >- * svg/in-html/script.html: Added. >- >-2011-06-10 Adam Barth <abarth@webkit.org> >- >- Reviewed by Darin Adler. >- >- Script-created parsers should ignore data from the network >- https://bugs.webkit.org/show_bug.cgi?id=62336 >- >- Triggering this condition is very hard to do deterministically. This >- test attempts to trigger the condition by sending exactly the right >- number of bytes for the Chromium network stack. As network stacks vary >- and evolve, it's likely we'll lose test coverage for this issue, but >- this is the best test I could come up with. >- >- * fast/parser/document-write-ignores-later-network-bytes-expected.txt: Added. >- * fast/parser/document-write-ignores-later-network-bytes.html: Added. >- >-2011-06-10 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Dan Bernstein. >- >- Keep overlap testing logic until real 3d transforms are being used >- https://bugs.webkit.org/show_bug.cgi?id=49857 >- >- New tests: >- * compositing/layer-creation/rotate3d-overlap-expected.txt: Added. >- * compositing/layer-creation/rotate3d-overlap.html: Added. >- * compositing/layer-creation/translatez-overlap-expected.txt: Added. >- * compositing/layer-creation/translatez-overlap.html: Added. >- >- Changed to use a non-zero z offset to preserve old behavior: >- * compositing/geometry/ancestor-overflow-change-expected.txt: >- * compositing/geometry/ancestor-overflow-change.html: >- * compositing/geometry/clip-expected.txt: >- * compositing/geometry/clip.html: >- * compositing/geometry/foreground-layer-expected.txt: >- * compositing/geometry/foreground-layer.html: >- * compositing/iframes/invisible-nested-iframe-show-expected.txt: >- * compositing/iframes/invisible-nested-iframe-show.html: >- * compositing/overflow/clip-descendents-expected.txt: >- * compositing/overflow/clip-descendents.html: >- >- New results with extra layers, but will be fixed via bug 50192. >- * compositing/tiling/huge-layer-add-remove-child-expected.txt: >- * compositing/tiling/huge-layer-expected.txt: >- * compositing/tiling/huge-layer-resize-expected.txt: >- >-2011-06-10 David Levin <levin@chromium.org> >- >- Reviewed by Dmitry Titov. >- >- Web Worker fails to fire error event when a resource fetch fails. >- https://bugs.webkit.org/show_bug.cgi?id=62475 >- >- * http/tests/workers/worker-workerScriptNotThere-expected.txt: Added. >- * http/tests/workers/worker-workerScriptNotThere.html: Added. >- >-2011-06-10 David Levin <levin@chromium.org> >- >- Reviewed by Dmitry Titov. >- >- Fetching a Worker with url that isn't allowed from a file based test causes DRT to crash. >- https://bugs.webkit.org/show_bug.cgi?id=62469 >- >- * fast/workers/worker-crash-with-invalid-location-expected.txt: Added. >- * fast/workers/worker-crash-with-invalid-location.html: Added. >- >-2011-06-10 David Levin <levin@chromium.org> >- >- Reviewed by Adam Barth. >- >- Add tests for Web Workers at invalid urls. >- https://bugs.webkit.org/show_bug.cgi?id=62486 >- >- * http/tests/workers/shared-worker-invalid-url-expected.txt: Added. >- * http/tests/workers/shared-worker-invalid-url.html: Added. >- * http/tests/workers/worker-invalid-url-expected.txt: Added. >- * http/tests/workers/worker-invalid-url.html: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Turns out, linux baseline isn't spurious. >- >- * platform/chromium-linux/fast/dom/navigator-detached-no-crash-expected.txt: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- Remove all spurious copies of test expectations that somehow made it into the tree. >- >- * platform/chromium-linux/fast/dom/navigator-detached-no-crash-expected.txt: Removed. >- * platform/chromium-mac-leopard/fast/dom/navigator-detached-no-crash-expected.txt: Removed. >- * platform/chromium-mac/fast/dom/navigator-detached-no-crash-expected.txt: Removed. >- * platform/mac/fast/dom/navigator-detached-no-crash-expected.txt: Removed. >- >-2011-06-10 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: indexedDB.open() name argument is required >- https://bugs.webkit.org/show_bug.cgi?id=62398 >- >- * storage/indexeddb/database-name-undefined-expected.txt: Added. >- * storage/indexeddb/database-name-undefined.html: Added. >- >-2011-06-10 Emil A Eklund <eae@chromium.org> >- >- Land Windows expectations for new test added in r88556. >- >- * platform/win/printing/page-count-relayout-shrink-expected.txt: Added. >- >-2011-06-10 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB: setVersion() version argument is required >- https://bugs.webkit.org/show_bug.cgi?id=62401 >- >- * storage/indexeddb/setVersion-undefined-expected.txt: Added. >- * storage/indexeddb/setVersion-undefined.html: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Land expectations for a test, added in r88556. >- >- * platform/chromium-mac/printing/page-count-relayout-shrink-expected.txt: Added. >- * platform/chromium-win/printing/page-count-relayout-shrink-expected.txt: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- [V8] Add failure expectation for a test, added in r88559. >- >- * platform/chromium/test_expectations.txt: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Remove expectation of crash, fixed in r88551. >- >- * platform/chromium/test_expectations.txt: Removed expectation. >- >-2011-06-10 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=55347 >- "name" and "message" enumerable on *Error.prototype >- >- This arises from chapter 15 of the spec: >- "Every other property described in this clause has the attributes >- { [[Writable]]: true, [[Enumerable]]: false, [[Configurable]]: true } >- unless otherwise specified." >- Standardized properties are not enumerable. >- >- * fast/js/exception-properties-expected.txt: Added. >- * fast/js/exception-properties.html: Added. >- * fast/js/script-tests/exception-properties.js: Added. >- (enumerableProperties): >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Update expectations after r88555. >- >- * platform/chromium-win/svg/custom/focus-ring-expected.txt: Updated. >- >-2011-06-10 Emil A Eklund <eae@chromium.org> >- >- Reviewed by Eric Seidel. >- >- Regression r85573: Blank pages appear at the end of some wikipedia documents. >- https://bugs.webkit.org/show_bug.cgi?id=62343 >- >- Fix regression caused by r85573. Cached document size not updated after layout. >- >- * platform/chromium-linux/printing/page-count-relayout-shrink-expected.txt: Added. >- * platform/mac/printing/page-count-relayout-shrink-expected.txt: Added. >- * printing/page-count-relayout-shrink.html: Added. >- >-2011-06-10 Rob Buis <rbuis@rim.com> >- >- Reviewed by Nikolas Zimmermann. >- >- animation event handling broken: focusin >- https://bugs.webkit.org/show_bug.cgi?id=12894 >- >- focusin, focusout, activate not implemented in SVG >- https://bugs.webkit.org/show_bug.cgi?id=40545 >- >- Test whether focusin and focusout events are dispatched and seen in the focusin/focusout event handlers. >- >- * platform/mac/svg/custom/focus-ring-expected.txt: >- * svg/custom/focus-event-handling-expected.txt: Added. >- * svg/custom/focus-event-handling-keyboard-expected.txt: Added. >- * svg/custom/focus-event-handling-keyboard.xhtml: Added. >- * svg/custom/focus-event-handling.xhtml: Added. >- * svg/custom/resources/focus-event-handling-keyboard.js: Added. >- (focusinHandler): >- (focusoutHandler): >- * svg/custom/resources/focus-event-handling.js: Added. >- (clearFocusSeen): >- (): >- (focusoutHandler): >- (clickAt): >- >-2011-06-10 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Tony Gentilcore. >- >- Tests that trying to remove all document children while building a svg <use> >- element shadow and instance tree does not result in crash. >- https://bugs.webkit.org/show_bug.cgi?id=62225 >- >- * svg/dom/use-style-recalc-script-execute-crash-expected.txt: Added. >- * svg/dom/use-style-recalc-script-execute-crash.html: Added. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- Remove tests that are now passing. >- >- * platform/chromium/test_expectations.txt: Removed passing tests. >- >-2011-06-10 Dimitri Glazkov <dglazkov@chromium.org> >- >- REGRESSION (r88332): prototype-inheritance-2 ASSERTS attempting to enumerate spellCheckRanges. >- https://bugs.webkit.org/show_bug.cgi?id=62460 >- >- * platform/chromium/test_expectations.txt: Updated test expectations. >- >-2011-06-10 Ilya Tikhonovsky <loislo@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: protocol: json: Whitespace can be inserted between any pair of tokens. >- https://bugs.webkit.org/show_bug.cgi?id=62377 >- >- * inspector/report-protocol-errors-expected.txt: >- * inspector/report-protocol-errors.html: >- >-2011-06-10 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88530. >- http://trac.webkit.org/changeset/88530 >- https://bugs.webkit.org/show_bug.cgi?id=62440 >- >- qt build was broken (Requested by loislo on #webkit). >- >- * inspector/report-protocol-errors-expected.txt: >- * inspector/report-protocol-errors.html: >- >-2011-06-09 Ilya Tikhonovsky <loislo@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: protocol: json: Whitespace can be inserted between any pair of tokens. >- https://bugs.webkit.org/show_bug.cgi?id=62377 >- >- * inspector/report-protocol-errors-expected.txt: >- * inspector/report-protocol-errors.html: >- >-2011-06-10 Mahesh Kulkarni <mahesh.kulkarni@nokia.com> >- >- Reviewed by Antonio Gomes. >- >- [Qt] LayoutTests/fast/history/history_reload.html failing >- https://bugs.webkit.org/show_bug.cgi?id=62369 >- >- Unskipping. Generating click of button element in generic way. >- Remove hardcoding of click co-ordinates to avoid native font differences. >- >- * fast/history/history_reload.html: >- * platform/qt/Skipped: >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] The profiler test is entirely unrelated to the original change r88337 >- and seems to be highly related to https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- https://bugs.webkit.org/show_bug.cgi?id=62278 >- >- Last attempt to make buildbot happy against crazy flakiness near inspector tests. :-/ >- >- * platform/qt/Skipped: Disable all inspector tests until fix. >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] The profiler test is entirely unrelated to the original change r88337 >- and seems to be highly related to https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- https://bugs.webkit.org/show_bug.cgi?id=62278 >- >- One more attempt to make buildbot happy >- against crazy flakiness near inspector tests. :-/ >- >- * platform/qt/Skipped: >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- Unreviewed rolling out r88471, because it broke plugin tests on Qt. >- >- * platform/chromium-linux/plugins/mouse-events-expected.txt: >- >-2011-06-09 Kent Tamura <tkent@chromium.org> >- >- [Mac] Unskip fast/forms/input-number-large-padding.html >- https://bugs.webkit.org/show_bug.cgi?id=61845 >- >- It should work now because we don't use outer-spin-button anymore. >- >- * platform/mac/Skipped: >- >-2011-06-09 Jian Li <jianli@chromium.org> >- >- Reviewed by David Levin. >- >- Calling WebKitBlobBuilder.append with null argument should not crash >- https://bugs.webkit.org/show_bug.cgi?id=62419 >- >- * fast/files/blob-builder-crash-expected.txt: Added. >- * fast/files/blob-builder-crash.html: Added. >- >-2011-06-09 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Remove expectations for passing tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-09 James Robinson <jamesr@chromium.org> >- >- [chromium] Update some chromium gpu baselines >- >- * platform/chromium-gpu-linux/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/tall-page-composited-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium-gpu-mac/platform/chromium/compositing/huge-layer-rotated-expected.png: >- * platform/chromium-gpu-win/compositing/direct-image-compositing-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/horizontal-scroll-composited-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/vertical-scroll-composited-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-09 James Robinson <jamesr@chromium.org> >- >- [chromium] Mark the fullscreen directory as skipped >- https://bugs.webkit.org/show_bug.cgi?id=62397 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-09 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Oliver Hunt. >- >- Bug 62405 - Fix integer overflow in Array.prototype.push >- >- There are three integer overflows here, leading to safe (not a security risk) >- but incorrect (non-spec-compliant) behaviour. >- >- Two overflows occur when calculating the new length after pushing (one in the >- fast version of push in JSArray, one in the generic version in ArrayPrototype). >- The other occurs calculating indices to write to when multiple items are pushed. >- >- These errors result in three test-262 failures. >- >- * sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.7_Array_prototype_push/S15.4.4.7_A3-expected.txt: >- * sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.7_Array_prototype_push/S15.4.4.7_A4_T2-expected.txt: >- * sputnik/Conformance/15_Native_Objects/15.4_Array/15.4.4/15.4.4.7_Array_prototype_push/S15.4.4.7_A4_T3-expected.txt: >- >-2011-06-09 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Eric Seidel. >- >- [GTK] Implement the next bit of the TextInputController (hasMarkedText and markedRange) >- https://bugs.webkit.org/show_bug.cgi?id=55603 >- >- * platform/gtk/Skipped: Unskip a test that is now passing. Better describe remaining failures. >- >-2011-06-09 Kenneth Russell <kbr@google.com> >- >- Skipped new tests from r88489 on WebKit Win, since WebGL is not yet enabled. >- >- * platform/win/Skipped: >- >-2011-06-09 James Robinson <jamesr@chromium.org> >- >- Reviewed by Kenneth Russell. >- >- [chromium] Scissor rect not set for clipping layers set offscreen >- https://bugs.webkit.org/show_bug.cgi?id=62339 >- >- Tests that a layer that should clip its children actually does clip even when scrolled offscreen. >- >- * platform/chromium/compositing/scissor-out-of-viewport-expected.png: Added. >- * platform/chromium/compositing/scissor-out-of-viewport-expected.txt: Added. >- * platform/chromium/compositing/scissor-out-of-viewport.html: Added. >- >-2011-06-09 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88468. >- http://trac.webkit.org/changeset/88468 >- https://bugs.webkit.org/show_bug.cgi?id=62408 >- >- It broke build if !ENABLE(FULLSCREEN_API) (Requested by Ossy >- on #webkit). >- >- * fullscreen/full-screen-video-offset-expected.txt: Removed. >- * fullscreen/full-screen-video-offset.html: Removed. >- >-2011-06-09 Kenneth Russell <kbr@google.com> >- >- Reviewed by Adam Barth. >- >- Disallow use of cross-domain media (images, video) in WebGL >- https://bugs.webkit.org/show_bug.cgi?id=62257 >- >- Updated origin-clean-conformance.html to track upstream version in >- Khronos repository. Added new layout tests mirroring those added >- in bug 61015 which verify that new CORS support for images is >- working in the context of WebGL. >- >- Verified new tests in WebKit and Chromium. Skipped tests on >- platforms where WebGL is disabled. >- >- * http/tests/canvas/webgl/origin-clean-conformance-expected.txt: >- * http/tests/canvas/webgl/origin-clean-conformance.html: >- * http/tests/security/webgl-remote-read-remote-image-allowed-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed.html: Added. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html: Added. >- * platform/gtk/Skipped: >- * platform/mac-leopard/Skipped: >- * platform/mac-wk2/Skipped: >- * platform/qt/Skipped: >- >-2011-06-09 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Mark tests failing after http://trac.webkit.org/changeset/88478/ as failing. >- >- * platform/chromium/test_expectations.txt: Added failing tests. >- >-2011-06-09 Dimitri Glazkov <dglazkov@chromium.org> >- >- [Chromium] Update expectations. >- >- * platform/chromium-linux/plugins/mouse-events-expected.txt: Added. >- * platform/chromium-win/fullscreen/full-screen-video-offset-expected.txt: Added. >- >-2011-06-09 Vsevolod Vlasov <vsevik@chromium.org> >- >- Reviewed by James Robinson. >- >- Web Inspector: Inspector layout tests - extract method for sending XHR >- https://bugs.webkit.org/show_bug.cgi?id=62391 >- >- * http/tests/inspector/console-xhr-logging.html: >- * http/tests/inspector/network-test.js: >- (doXHR.xhr.onreadystatechange): >- (doXHR): >- * http/tests/inspector/network/network-size-sync.html: >- >-2011-06-09 Julien Chaffraix <jchaffraix@codeaurora.org> >- >- Reviewed by Antti Koivisto. >- >- REGRESSION(84329): Stylesheets on some pages do not load >- https://bugs.webkit.org/show_bug.cgi?id=61400 >- >- Adding test to cover the regression. The test actually uncovered >- a bug in the way we handle alternate stylesheet and thus is >- failing some parts. >- >- * fast/css/link-disabled-attr-expected.txt: Added. >- * fast/css/link-disabled-attr.html: Added. >- >-2011-06-09 Julien Chaffraix <jchaffraix@webkit.org> >- >- Reviewed by Darin Adler. >- >- Test for WebCore::WebKitCSSKeyframesRuleInternal::nameAttrSetter() - crash >- https://bugs.webkit.org/show_bug.cgi?id=62384 >- >- * fast/css/webkit-keyframes-crash-expected.txt: Added. >- * fast/css/webkit-keyframes-crash.html: Added. >- >-2011-06-09 Julien Chaffraix <jchaffraix@codeaurora.org> >- >- Reviewed by David Hyatt. >- >- Test for chrome.dll!WebCore::RenderStyle::fontMetrics ReadAV@NULL (two crashes) >- https://bugs.webkit.org/show_bug.cgi?id=57756 >- >- * fast/css/fontMetric-border-radius-null-crash-expected.txt: Added. >- * fast/css/fontMetric-border-radius-null-crash.html: Added. >- * fast/css/fontMetric-webkit-border-end-width-null-crash-expected.txt: Added. >- * fast/css/fontMetric-webkit-border-end-width-null-crash.html: Added. >- >-2011-06-09 Martin Robinson <mrobinson@igalia.com> >- >- Reviewed by Andreas Kling. >- >- [GTK] [Qt] Eliminate duplicate TestNetscapePlugin implementation >- https://bugs.webkit.org/show_bug.cgi?id=62385 >- >- Remove a cr-linux expectation that no longer differs from the default >- expectation. >- >- * platform/chromium-linux/plugins/mouse-events-expected.txt: Removed. >- >-2011-06-02 Jer Noble <jer.noble@apple.com> >- >- Reviewed by Maciej Stachowiak. >- >- REGRESSION: Page layout messed up after exiting full screen after video ends at jerryseinfeld.com >- https://bugs.webkit.org/show_bug.cgi?id=61911 >- <rdar://problem/9523017> >- >- * fullscreen/full-screen-video-offset-expected.txt: Added. >- * fullscreen/full-screen-video-offset.html: Added. >- >-2011-06-09 Chang Shu <cshu@webkit.org> >- >- Unreviewed. >- >- Unskip more passed tests after r88461 (bug 62381). >- >- * platform/qt-wk2/Skipped: >- >-2011-06-09 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: behavior of undefined value in record >- https://bugs.webkit.org/show_bug.cgi?id=62371 >- >- * storage/indexeddb/value-undefined-expected.txt: Added. >- * storage/indexeddb/value-undefined.html: Added. >- >-2011-06-09 Chang Shu <cshu@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt] [WK2] Many editing tests failed on missing shouldBeginEditingInDOMRange:range printout >- https://bugs.webkit.org/show_bug.cgi?id=62381 >- >- Unskip passed tests. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-08 Abhishek Arya <inferno@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- Tests that setting selection on a text control does not result in crash. >- https://bugs.webkit.org/show_bug.cgi?id=62329 >- >- * fast/forms/text-control-selection-crash-expected.txt: Added. >- * fast/forms/text-control-selection-crash.html: Added. >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed fix after r88447. >- >- * platform/qt/Skipped: >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] The profiler test is entirely unrelated to the original change r88337 >- and seems to be highly related to https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- https://bugs.webkit.org/show_bug.cgi?id=62278 >- >- * platform/qt/Skipped: Add inspector/profiler/detailed-heapshots-comparison-show-next.html. >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] eventSender.keyDown is unimplemented >- >- * platform/mac-wk2/Skipped: Add fast/dom/shadow/tab-order-iframe-and-shadow.html. >- >-2011-06-09 Mike Lawther <mikelawther@chromium.org> >- >- Reviewed by Kent Tamura. >- >- Parsing issue with -webkit-calc >- https://bugs.webkit.org/show_bug.cgi?id=62276 >- >- Set the CSSParserString for the calc functions. >- >- * css3/calc/regression-62276-expected.txt: Added. >- * css3/calc/regression-62276.html: Added. >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- REGRESSION(r88393): Tests fail on Qt platform >- https://bugs.webkit.org/show_bug.cgi?id=62374 >- >- * platform/qt/Skipped: Add editing/selection/move-by-word-visually-others.html and >- editing/selection/move-by-word-visually-single-space-sigle-line.html until fix. >- >-2011-06-09 Robert Hogan <robert@webkit.org> >- >- Reviewed by Andreas Kling. >- >- Teach Qt about window.internals >- https://bugs.webkit.org/show_bug.cgi?id=61074 >- >- Unskip fast/harness/internals-object.html >- >- * platform/qt/Skipped: >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] Canvas tests make css2.1 ones failing >- https://bugs.webkit.org/show_bug.cgi?id=53427 >- >- * platform/qt-wk2/Skipped: Unskip passing tests after r88435. >- >-2011-06-09 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88387. >- http://trac.webkit.org/changeset/88387 >- https://bugs.webkit.org/show_bug.cgi?id=62368 >- >- New tests introduced in 88387 fail on Leopard,GTK,Qt bots >- (Requested by Ossy on #webkit). >- >- * http/tests/canvas/webgl/origin-clean-conformance-expected.txt: >- * http/tests/canvas/webgl/origin-clean-conformance.html: >- * http/tests/security/webgl-remote-read-remote-image-allowed-expected.txt: Removed. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials-expected.txt: Removed. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html: Removed. >- * http/tests/security/webgl-remote-read-remote-image-allowed.html: Removed. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin-expected.txt: Removed. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html: Removed. >- * platform/mac-wk2/Skipped: >- >-2011-06-09 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] The profiler test is entirely unrelated to the original change r88337 >- and seems to be highly related to https://bugs.webkit.org/show_bug.cgi?id=60881 >- >- https://bugs.webkit.org/show_bug.cgi?id=62278 >- >- * platform/qt/Skipped: Skip 3 inspector tests to make buildbot happy. >- >-2011-06-09 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: New flakiness in styles tests >- https://bugs.webkit.org/show_bug.cgi?id=62309 >- >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-source-lines-inline.html: >- >-2011-06-09 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Leopard rebaseline for thumbslider-no-parent-slider.html. >- >- * platform/chromium-mac-leopard/fast/forms/thumbslider-no-parent-slider-expected.png: Added. >- >-2011-06-09 Ryosuke Niwa <rniwa@webkit.org> >- >- More Chromium Mac test expectation updates. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-09 Ryosuke Niwa <rniwa@webkit.org> >- >- Chromium Mac test expectation updates. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-09 Zoltan Herczeg <zherczeg@inf.u-szeged.hu> >- >- Reviewed by Csaba Osztrogonac. >- >- [Qt][WK2] Canvas tests make css2.1 ones failing >- https://bugs.webkit.org/show_bug.cgi?id=53427 >- >- Unskipping canvas tests for WebKit2-Qt. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-09 Adam Barth <abarth@webkit.org> >- >- Reviewed by Eric Seidel. >- >- Running script from attach can remove elements from the stack of open elements >- https://bugs.webkit.org/show_bug.cgi?id=62160 >- >- * fast/parser/document-write-onload-clear-expected.txt: Added. >- * fast/parser/document-write-onload-clear.html: Added. >- >-2011-06-09 Mario Sanchez Prada <msanchez@igalia.com> >- >- Reviewed by Chris Fleizach. >- >- [GTK] Provide a way in DRT to check the platform name >- https://bugs.webkit.org/show_bug.cgi?id=56855 >- >- New layout test and expected results to check the new function. >- >- * accessibility/platform-name.html: Added. >- * platform/gtk/accessibility/platform-name-expected.txt: Added. >- * platform/mac/accessibility/platform-name-expected.txt: Added. >- * platform/win/accessibility/platform-name-expected.txt: Added. >- >-2011-06-08 Kent Tamura <tkent@chromium.org> >- >- [Chromium] Rebaseline for r87881 and r88415. >- >- * platform/chromium-linux/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-disabled-readonly-expected.png: >- * platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-layer-expected.png: >- * platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-visibility-expected.png: >- * platform/chromium-mac-leopard/platform/mac/fast/forms/input-appearance-spinbutton-expected.png: Added. >- * platform/chromium-mac-leopard/platform/mac/fast/forms/input-appearance-spinbutton-up-expected.png: Added. >- * platform/chromium-mac/fast/forms/thumbslider-no-parent-slider-expected.png: Copied from LayoutTests/platform/chromium-mac-leopard/fast/forms/input-appearance-spinbutton-layer-expected.png. >- * platform/chromium-win/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/chromium-win/fast/forms/thumbslider-no-parent-slider-expected.txt: Removed. >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 Hayato Ito <hayato@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- A forward/backward tab traversal now visits focusable elements in a shadow root. >- https://bugs.webkit.org/show_bug.cgi?id=61410 >- >- Like a iframe element, a shadow host becomes a scope of >- tabindex. That means all descendant elements in a shadow root are >- skipped if the host node of the shadow root is not focusable. >- >- The patch doesn't affect HTMLInputElement and HTMLTextAreaElement, >- which uses a shadow root and do extra works in their focus() >- method. >- >- A shadow root's <content> is not considered in this patch. >- That will be addressed in a following patch. >- >- * fast/dom/shadow/tab-order-iframe-and-shadow-expected.txt: Added. >- * fast/dom/shadow/tab-order-iframe-and-shadow.html: Added. >- >-2011-06-08 Hayato Ito <hayato@chromium.org> >- >- Reviewed by Hajime Morita. >- >- Makes sure that document.activeElement won't be an element in shadow root. >- >- https://bugs.webkit.org/show_bug.cgi?id=61413 >- >- * fast/dom/shadow/activeelement-should-be-shadowhost-expected.txt: Added. >- * fast/dom/shadow/activeelement-should-be-shadowhost.html: Added. >- >-2011-06-08 Kent Tamura <tkent@chromium.org> >- >- [Mac][GTK][Qt] Rebaseline for r88415, and remove old images. >- >- * platform/gtk/fast/forms/thumbslider-no-parent-slider-expected.png: Removed. >- * platform/gtk/fast/forms/thumbslider-no-parent-slider-expected.txt: >- * platform/mac-leopard/fast/forms/thumbslider-no-parent-slider-expected.png: Removed. >- * platform/qt/fast/forms/thumbslider-no-parent-slider-expected.txt: >- >-2011-06-08 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Add TIMEOUT to styles-disable-then-change.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Allow drawing a slider thumb for any nodes. >- https://bugs.webkit.org/show_bug.cgi?id=62196 >- >- The behavior was changed. We should show slider thumbs for any nodes with >- -webkit-appearance:slidertumb-horizontal/vertical. >- >- * fast/forms/thumbslider-no-parent-slider.html: >- * platform/chromium/test_expections.txt: Expect to fail with thumbslider-no-parent-slider.html. >- * platform/mac/fast/forms/thumbslider-no-parent-slider-expected.png: >- * platform/mac/fast/forms/thumbslider-no-parent-slider-expected.txt: >- >-2011-06-08 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Revert r88412 because it introduced syntax >- errors into test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Fix expectations for >- styles-disable-then-change.html. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 Adam Barth <abarth@webkit.org> >- >- Reviewed by Eric Seidel. >- >- Use after free in WebCore::ContainerNode::parserAddChild >- https://bugs.webkit.org/show_bug.cgi?id=62160 >- >- Test that we don't trigger asserts when re-entering the parser from >- tree construction. >- >- * fast/parser/document-write-onload-nesting-expected.txt: Added. >- * fast/parser/document-write-onload-nesting.html: Added. >- * fast/parser/document-write-onload-ordering-expected.txt: Added. >- * fast/parser/document-write-onload-ordering.html: Added. >- - The exact ordering of the script execution here differs a bit >- between browsers. For example, Firefox executes the scripts in a >- slightly different order because Firefox runs the parser on a >- separate thread (and therefore cannot be re-entered from tree >- construction). If/when we move the parser off the main thread, >- we're likely to change the ordering here a bit, which should be >- ok. >- >-2011-06-08 Ryosuke Niwa <rniwa@webkit.org> >- >- Add PASS expectations to two tests that have been passing on >- build.webkit.org Chromium Linux bot. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, more inspector flakiness. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 James Simonsen <simonjam@chromium.org> >- >- Unreviewed, move generic test expectation to right place. >- >- * fast/gradients/crash-on-degenerate-gradient-expected.txt: Renamed from LayoutTests/platform/chromium-linux/fast/gradients/crash-on-degenerate-gradient-expected.txt. >- >-2011-06-08 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: key sort order across types >- https://bugs.webkit.org/show_bug.cgi?id=62299 >- >- * storage/indexeddb/key-sort-order-across-types-expected.txt: Added. >- * storage/indexeddb/key-sort-order-across-types.html: Added. >- >-2011-06-08 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: key sort order for Date objects >- https://bugs.webkit.org/show_bug.cgi?id=62300 >- >- * storage/indexeddb/key-sort-order-date-expected.txt: Added. >- * storage/indexeddb/key-sort-order-date.html: Added. >- >-2011-06-08 Xiaomei Ji <xji@chromium.org> >- >- Split move-by-word-visually.html into 2 tests since the test is continuing growing and caused >- time-out in Snowleopard Intel Leaks. >- >- We will need to do profiling to improve hot code path performance later. >- >- * editing/selection/move-by-word-visually-expected.txt: Removed. >- * editing/selection/move-by-word-visually-others-expected.txt: Added. >- * editing/selection/move-by-word-visually-others.html: Added. >- * editing/selection/move-by-word-visually-single-space-sigle-line-expected.txt: Copied from LayoutTests/editing/selection/move-by-word-visually-expected.txt. >- * editing/selection/move-by-word-visually-single-space-sigle-line.html: Copied from LayoutTests/editing/selection/move-by-word-visually.html. >- * editing/selection/move-by-word-visually.html: Removed. >- * editing/selection/resources/move-by-word-visually.js: Added. >- (): >- (flushLog): >- (fold): >- (logPositions): >- (nodeOfWordBreak): >- (logWordBreak): >- (positionEqualToWordBreak): >- (validateData): >- (collectWordBreaks): >- (setPosition): >- (moveByWord): >- (moveByWordOnEveryChar): >- (moveByWordForEveryPosition): >- (runMoveLeftRight): >- >-2011-06-08 Mike Reed <reed@google.com> >- >- Reviewed by James Robinson. >- >- [Skia] check for null-shader from gradient factory >- https://bugs.webkit.org/show_bug.cgi?id=62319 >- >- * platform/chromium-linux/fast/gradients/crash-on-degenerate-gradient-expected.txt: Added. >- >-2011-06-08 Kenneth Russell <kbr@google.com> >- >- Reviewed by Adam Barth. >- >- Disallow use of cross-domain media (images, video) in WebGL >- https://bugs.webkit.org/show_bug.cgi?id=62257 >- >- Updated origin-clean-conformance.html to track upstream version in >- Khronos repository. Added new layout tests mirroring those added >- in bug 61015 which verify that new CORS support for images is >- working in the context of WebGL. >- >- Verified new tests in WebKit and Chromium. >- >- * http/tests/canvas/webgl/origin-clean-conformance-expected.txt: >- * http/tests/canvas/webgl/origin-clean-conformance.html: >- * http/tests/security/webgl-remote-read-remote-image-allowed-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed-with-credentials.html: Added. >- * http/tests/security/webgl-remote-read-remote-image-allowed.html: Added. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin-expected.txt: Added. >- * http/tests/security/webgl-remote-read-remote-image-blocked-no-crossorigin.html: Added. >- * platform/mac-wk2/Skipped: >- >-2011-06-08 John Bauman <jbauman@chromium.org> >- >- Reviewed by James Robinson. >- >- Only draw portions of tiles in contentRect >- https://bugs.webkit.org/show_bug.cgi?id=62243 >- >- * platform/chromium/test_expectations.txt: >- * compositing/repaint/shrink-layer.html: Added. >- * compositing/repaint/shrink-layer-expected.png: Added. >- * compositing/repaint/shrink-layer-expected.txt: Added. >- >-2011-06-08 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: odd value datatypes >- https://bugs.webkit.org/show_bug.cgi?id=62315 >- >- * storage/indexeddb/values-odd-types-expected.txt: Added. >- * storage/indexeddb/values-odd-types.html: Added. >- >-2011-06-08 Tom Sepez <tsepez@chromium.org> >- >- Reviewed by Adam Barth. >- >- Chromium mixed content blocking, ensure that both preferences and web permissions >- control the outcome. Ensure notify callback gets invoked even with insecure content. >- https://bugs.webkit.org/show_bug.cgi?id=61946 >- >- * http/tests/security/mixedContent/resources/frame-with-insecure-image.html: >- * http/tests/security/mixedContent/resources/frame-with-insecure-script.html: >- * platform/chromium/http/tests/security/mixedContent: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-allowed-expected.txt: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-allowed.html: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-blocked-expected.txt: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-image-in-main-frame-blocked.html: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-script-in-main-frame-allowed-expected.txt: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-script-in-main-frame-allowed.html: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-script-in-main-frame-blocked-expected.txt: Added. >- * platform/chromium/http/tests/security/mixedContent/insecure-script-in-main-frame-blocked.html: Added. >- >-2011-06-08 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, mark two flaky tests. Bug filed. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 Mark Pilgrim <pilgrim@chromium.org> >- >- Reviewed by Tony Chang. >- >- IndexedDB test: key paths as arrays >- https://bugs.webkit.org/show_bug.cgi?id=62291 >- >- * storage/indexeddb/keypath-as-array-expected.txt: Added. >- * storage/indexeddb/keypath-as-array.html: Added. >- >-2011-05-25 Xiaomei Ji <xji@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- --webkit-visual-word does not work well in words separated by multiple spaces >- https://bugs.webkit.org/show_bug.cgi?id=61324 >- >- Add test cases for preserving white spaces and test case for words not separated by space. >- >- * editing/selection/move-by-word-visually-expected.txt: >- * editing/selection/move-by-word-visually.html: >- >-2011-06-08 Greg Simon <gregsimon@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Test migration from sqlite to leveldb for IndexedDB >- backend. >- https://bugs.webkit.org/show_bug.cgi?id=61000 >- >- * storage/indexeddb/migrate-basics-expected.txt: Added. >- * storage/indexeddb/migrate-basics.html: Added. >- >-2011-06-08 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, skip two failing tests. Bugs filed. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-08 Alexander Pavlov <apavlov@chromium.org> >- >- [Qt] Unreviewed, skip failing tests >- >- * platform/qt/Skipped: >- >-2011-06-08 Alexander Pavlov <apavlov@chromium.org> >- >- [Qt, Chromium] Unreviewed attempt to fix tests on Qt and Chromium. >- >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-disable-then-enable.html: >- * inspector/styles/styles-update-from-js.html: >- * inspector/styles/up-down-numerics-and-colors.html: >- >-2011-06-08 Alexander Pavlov <apavlov@chromium.org> >- >- [Qt] Unreviewed, attempt to make test pass on Qt. >- >- * inspector/styles/styles-update-from-js.html: >- >-2011-06-08 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: node selection is slow in the Elements panel. >- https://bugs.webkit.org/show_bug.cgi?id=60813 >- >- * http/tests/inspector/inspect-iframe-from-different-domain.html: >- * inspector/elements/elements-delete-inline-style.html: >- * inspector/elements/elements-panel-styles.html: >- * inspector/styles/styles-add-invalid-property.html: >- * inspector/styles/styles-cancel-editing.html: >- * inspector/styles/styles-commit-editing.html: >- * inspector/styles/styles-computed-trace.html: >- * inspector/styles/styles-disable-inherited.html: >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-disable-then-delete.html: >- * inspector/styles/styles-disable-then-enable.html: >- * inspector/styles/styles-iframe.html: >- * inspector/styles/styles-update-from-js-expected.txt: >- * inspector/styles/styles-update-from-js.html: >- * inspector/styles/styles-url-linkify.html: >- >-2011-06-08 Hironori Bono <hbono@chromium.org> >- >- Reviewed by Brent Fulgham. >- >- Add SpellCheck API >- https://bugs.webkit.org/show_bug.cgi?id=59693 >- >- This change adds two SpellCheck API functions (addSpellcheckRange and >- removeSpellcheckRange) and one attribute (spellcheckRange) discussed in >- the public-webapps ML. This change is currently available only on Chromium. >- >- * editing/spelling/spellcheck-api-expected.txt: Added. >- * editing/spelling/spellcheck-api-pixel.html: Added. >- * editing/spelling/spellcheck-api.html: Added. >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- * platform/win/Skipped: >- >-2011-06-07 Andrey Kosyakov <caseq@chromium.org> >- >- Reviewed by Pavel Feldman. >- >- Web Inspector: remove shadow dom inspection from Elements panel by default. >- https://bugs.webkit.org/show_bug.cgi?id=62188 >- >- This reverts r85751 >- >- * http/tests/inspector/elements-test.js: >- (initialize_ElementTest.InspectorTest.findNode.processChildren): >- (initialize_ElementTest.InspectorTest.findNode.documentRequested): >- (initialize_ElementTest.InspectorTest.findNode): >- * inspector/console/console-shadow-dom-access.html: Removed. >- * inspector/elements/shadow-dom-expected.txt: Removed. >- * inspector/elements/shadow-dom.html: Removed. >- * platform/win/Skipped: >- >-2011-06-07 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Skip new failing tests. >- >- * platform/qt/Skipped: >- >-2011-06-07 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Update more snowleopard baselines after r88321. >- >- * platform/chromium-mac-leopard/fast/css/shadow-multiple-expected.png: >- * platform/chromium-mac/fast/css/shadow-multiple-expected.png: >- >-2011-06-07 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Update snowleopard baselines after r88321. >- >- * platform/chromium-mac/fast/backgrounds/repeat/negative-offset-repeat-transformed-expected.png: >- * platform/chromium-mac/fast/borders/border-image-rotate-transform-expected.png: >- * platform/chromium-mac/fast/repaint/shadow-multiple-strict-vertical-expected.png: >- * platform/chromium-mac/fast/repaint/shadow-multiple-vertical-expected.png: >- >-2011-06-07 James Kozianski <koz@chromium.org> >- [Chromium] Update expectations for flaky tests. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-07 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Update expectations for registerProtocolHandler >- test. >- >- * platform/chromium-linux/fast/dom/register-protocol-handler-expected.txt: Added. >- >-2011-06-07 Yi Shen <yi.4.shen@nokia.com> >- >- Reviewed by Simon Hausmann. >- >- [Qt] Fix the error code for media resource failures when using QtMobility >- https://bugs.webkit.org/show_bug.cgi?id=55901 >- >- Unskip the tests which are now passing. >- >- * platform/qt/Skipped: >- >-2011-06-07 Gavin Barraclough <barraclough@apple.com> >- >- Reviewed by Sam Weinig. >- >- https://bugs.webkit.org/show_bug.cgi?id=55537 >- Functions claim to have 'callee' which they actually don't (and shouldn't) >- >- * fast/js/Object-getOwnPropertyNames-expected.txt: >- * fast/js/script-tests/Object-getOwnPropertyNames.js: >- >-2011-06-07 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Update expectations for tests that are timing out. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-07 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Darin Adler. >- >- Opacity transition doesn't work while content property is set. >- https://bugs.webkit.org/show_bug.cgi?id=59301 >- >- Testcase for opacity transition on element with 'content' style. >- >- * transitions/transition-on-element-with-content-expected.txt: Added. >- * transitions/transition-on-element-with-content.html: Added. >- >-2011-06-07 Robert Kroeger <rjkroege@chromium.org> >- >- Reviewed by Adam Barth. >- >- [chromium] Add a basic gesture recognizer to the Chromium platform >- https://bugs.webkit.org/show_bug.cgi?id=54417 >- >- Shows that the basic Chromium gesture manager can correctly convert a touch >- event sequence into a sequence of synthetic mouse events for clicking and >- scrolling. >- >- * fast/events/touch/touch-gesture-click-expected.txt: Added. >- * fast/events/touch/touch-gesture-click.html: Added. >- * fast/events/touch/touch-gesture-scroll-expected.txt: Added. >- * fast/events/touch/touch-gesture-scroll.html: Added. >- * platform/chromium/fast/events/touch/touch-gesture-click-expected.txt: Added. >- * platform/chromium/fast/events/touch/touch-gesture-scroll-expected.txt: Added. >- >-2011-06-07 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Fix expectations for registerProtocolHandler tests. >- >- * platform/chromium-linux/fast/dom/navigator-detached-no-crash-expected.txt: Added. >- * platform/chromium-mac-leopard/fast/dom/navigator-detached-no-crash-expected.txt: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-07 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Ryosuke Niwa. >- >- Convert fast/forms/thumbslider-crash.html to dumpAsText >- https://bugs.webkit.org/show_bug.cgi?id=62195 >- >- * fast/forms/thumbslider-crash-expected.txt: Added. >- * fast/forms/thumbslider-crash.html: >- * platform/chromium-linux/fast/forms/thumbslider-crash-expected.png: Removed. >- * platform/chromium-win/fast/forms/thumbslider-crash-expected.png: Removed. >- * platform/chromium-win/fast/forms/thumbslider-crash-expected.txt: Removed. >- * platform/gtk/fast/forms/thumbslider-crash-expected.png: Removed. >- * platform/gtk/fast/forms/thumbslider-crash-expected.txt: Removed. >- * platform/mac-leopard/fast/forms/thumbslider-crash-expected.png: Removed. >- * platform/mac/fast/forms/thumbslider-crash-expected.png: Removed. >- * platform/mac/fast/forms/thumbslider-crash-expected.txt: Removed. >- * platform/qt/fast/forms/thumbslider-crash-expected.txt: Removed. >- >-2011-06-07 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, rebaseline leopard and win7 tests due to: >- - r87955. >- - New fast/forms/select-baseline.html. >- - New fullscreen/full-screen-zIndex-after.html >- >- * platform/chromium-mac-leopard/fast/backgrounds/svg-as-background-1-expected.png: >- * platform/chromium-mac-leopard/fast/blockflow/border-vertical-lr-expected.png: >- * platform/chromium-mac-leopard/fast/borders/border-radius-constraints-expected.png: >- * platform/chromium-mac-leopard/fast/borders/border-radius-huge-assert-expected.png: >- * platform/chromium-mac-leopard/fast/borders/border-radius-inline-flow-expected.png: >- * platform/chromium-mac-leopard/fast/borders/borderRadiusAllStylesAllCorners-expected.png: >- * platform/chromium-mac-leopard/fast/borders/borderRadiusInvalidColor-expected.png: >- * platform/chromium-mac-leopard/fast/borders/different-color-borders-expected.png: >- * platform/chromium-mac-leopard/fast/box-shadow/basic-shadows-expected.png: >- * platform/chromium-mac-leopard/fast/box-shadow/inset-expected.png: Removed. >- * platform/chromium-mac-leopard/fast/box-shadow/inset-with-extraordinary-radii-and-border-expected.png: Removed. >- * platform/chromium-mac-leopard/fast/box-shadow/spread-multiple-inset-expected.png: >- * platform/chromium-mac-leopard/fast/clip/overflow-border-radius-clip-expected.png: Added. >- * platform/chromium-mac-leopard/fast/forms/basic-selects-expected.png: >- * platform/chromium-mac-leopard/fast/forms/menulist-clip-expected.png: >- * platform/chromium-mac-leopard/fast/forms/menulist-option-wrap-expected.png: >- * platform/chromium-mac-leopard/fast/forms/menulist-restrict-line-height-expected.png: >- * platform/chromium-mac-leopard/fast/forms/menulist-style-color-expected.png: >- * platform/chromium-mac-leopard/fast/forms/select-baseline-expected.png: >- * platform/chromium-mac-leopard/fast/forms/selectlist-minsize-expected.png: Renamed from LayoutTests/platform/chromium-mac-leopard/fast/forms/menulist-separator-painting-expected.png. >- * platform/chromium-mac-leopard/fast/forms/validation-message-appearance-expected.png: >- * platform/chromium-mac-leopard/fullscreen/full-screen-zIndex-after-expected.png: Added. >- * platform/chromium-mac-leopard/media/video-zoom-controls-expected.png: >- * platform/chromium-mac-leopard/svg/W3C-SVG-1.1/animate-elem-52-t-expected.png: Added. >- * platform/chromium-mac-leopard/svg/carto.net/button-expected.png: Added. >- * platform/chromium-mac-leopard/svg/custom/embedding-external-svgs-expected.png: Added. >- * platform/chromium-mac-leopard/svg/custom/gradient-rotated-bbox-expected.png: >- * platform/chromium-mac-leopard/svg/wicd/rightsizing-grid-expected.png: >- * platform/chromium-mac-leopard/svg/wicd/test-scalable-background-image1-expected.png: >- * platform/chromium-win/http/tests/appcache/manifest-redirect-expected.txt: Added. >- * platform/chromium-win/http/tests/appcache/resource-redirect-2-expected.txt: Added. >- * platform/chromium-win/http/tests/appcache/resource-redirect-expected.txt: Added. >- * platform/chromium-win/http/tests/appcache/wrong-content-type-expected.txt: Added. >- * platform/chromium-win/http/tests/appcache/wrong-signature-2-expected.txt: Added. >- * platform/chromium-win/http/tests/appcache/wrong-signature-expected.txt: Added. >- * platform/chromium-win/svg/custom/object-sizing-explicit-height-expected.png: Added. >- * platform/chromium-win/svg/custom/object-sizing-explicit-height-expected.txt: Added. >- * platform/chromium-win/svg/custom/object-sizing-explicit-width-expected.png: Added. >- * platform/chromium-win/svg/custom/object-sizing-explicit-width-expected.txt: Added. >- >-2011-06-07 Vangelis Kokkevis <vangelis@chromium.org> >- >- Reviewed by James Robinson. >- >- Add a test to verify that RTL pages that trigger the compositor >- render correctly. >- https://bugs.webkit.org/show_bug.cgi?id=62246 >- >- * compositing/geometry/rtl-composited-expected.png: Added. >- * compositing/geometry/rtl-composited-expected.txt: Added. >- * compositing/geometry/rtl-composited.html: Added. >- >-2011-06-07 Ryosuke Niwa <rniwa@webkit.org> >- >- Gtk rebaseline after r88266. >- >- * platform/gtk/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: >- >-2011-06-07 Ryosuke Niwa <rniwa@webkit.org> >- >- Qt rebaseline after r88266. >- >- * platform/qt/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: >- >-2011-06-07 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, rebaseline after r88266. >- >- * platform/chromium-linux/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. >- * platform/chromium-linux/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: Added. >- * platform/chromium-win/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: >- * platform/chromium-win/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: >- >-2011-06-07 Rob Buis <rbuis@rim.com> >- >- Reviewed by Dirk Schulze. >- >- stroke-dasharray does not handle "none" >- https://bugs.webkit.org/show_bug.cgi?id=62203 >- >- Test stroke-dasharray=none as well as invalid syntaxes. >- >- * platform/mac/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.png: Added. >- * platform/mac/svg/W3C-SVG-1.1-SE/styling-css-04-f-expected.txt: Added. >- * platform/mac/svg/W3C-SVG-1.1/styling-css-04-f-expected.png: >- * platform/mac/svg/W3C-SVG-1.1/styling-css-04-f-expected.txt: >- * platform/mac/svg/custom/invalid-dasharray-expected.png: Added. >- * platform/mac/svg/custom/invalid-dasharray-expected.txt: Added. >- * svg/W3C-SVG-1.1-SE/styling-css-04-f.svg: Added. >- * svg/custom/invalid-dasharray.svg: Added. >- >-2011-06-07 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, skip test crashing in GTK bots because of an ASSERT. >- >- Actually, it's the same problem observed before (see bug 61937). >- >- * platform/gtk/Skipped: Skipped test. >- >-2011-06-07 Daniel Cheng <dcheng@chromium.org> >- >- Reviewed by Tony Chang. >- >- [Chromium] REGRESSION fast/events/onload-after-document-close-with-subresource.html >- https://bugs.webkit.org/show_bug.cgi?id=61921 >- >- Force a non-cached load of onload-image.png. >- >- * fast/events/onload-after-document-close-with-subresource.html: >- * platform/chromium/test_expectations.txt: >- >-2011-06-07 Vangelis Kokkevis <vangelis@chromium.org> >- >- Unreviewed. Test expectations fix. >- >- [chromium] Fixing test expectations error for chromium-gpu. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-07 Young Han Lee <joybro@company100.net> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [Texmap][Qt] Accelerated animation is not paused properly. >- https://bugs.webkit.org/show_bug.cgi?id=61446 >- >- The transform matrix of an accelerated animation shouldn't be synced with the matrix of the GraphicsLayer when the animation is paused. >- >- * animations/play-state-paused-expected.png: Added. >- * animations/play-state-paused-expected.txt: Added. >- * animations/play-state-paused.html: Added. >- >-2011-06-07 Sheriff Bot <webkit.review.bot@gmail.com> >- >- Unreviewed, rolling out r88238. >- http://trac.webkit.org/changeset/88238 >- https://bugs.webkit.org/show_bug.cgi?id=62216 >- >- Broke a couple of inspector tests (Requested by apavlov on >- #webkit). >- >- * http/tests/inspector/inspect-iframe-from-different-domain.html: >- * inspector/elements/elements-delete-inline-style.html: >- * inspector/elements/elements-panel-styles.html: >- * inspector/styles/styles-add-invalid-property.html: >- * inspector/styles/styles-cancel-editing.html: >- * inspector/styles/styles-commit-editing.html: >- * inspector/styles/styles-computed-trace.html: >- * inspector/styles/styles-disable-inherited.html: >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-disable-then-delete.html: >- * inspector/styles/styles-disable-then-enable.html: >- * inspector/styles/styles-iframe.html: >- * inspector/styles/styles-update-from-js-expected.txt: >- * inspector/styles/styles-update-from-js.html: >- * inspector/styles/styles-url-linkify.html: >- >-2011-06-07 Alexander Pavlov <apavlov@chromium.org> >- >- Reviewed by Yury Semikhatsky. >- >- Web Inspector: node selection is slow in the Elements panel. >- https://bugs.webkit.org/show_bug.cgi?id=60813 >- >- * http/tests/inspector/inspect-iframe-from-different-domain.html: >- * inspector/elements/elements-delete-inline-style.html: >- * inspector/elements/elements-panel-styles.html: >- * inspector/styles/styles-add-invalid-property.html: >- * inspector/styles/styles-cancel-editing.html: >- * inspector/styles/styles-commit-editing.html: >- * inspector/styles/styles-computed-trace.html: >- * inspector/styles/styles-disable-inherited.html: >- * inspector/styles/styles-disable-then-change.html: >- * inspector/styles/styles-disable-then-delete.html: >- * inspector/styles/styles-disable-then-enable.html: >- * inspector/styles/styles-iframe.html: >- * inspector/styles/styles-update-from-js-expected.txt: >- * inspector/styles/styles-update-from-js.html: >- * inspector/styles/styles-url-linkify.html: >- >-2011-06-07 Csaba Osztrogonác <ossy@webkit.org> >- >- [WK2] Unreviewed. Skip failing tests because of unimplemented features. >- >- * platform/mac-wk2/Skipped: >- >-2011-06-07 Felician Marton <marton.felician.zoltan@stud.u-szeged.hu> >- >- Reviewed by Nikolas Zimmermann. >- >- SVG animation beginElement() does not restart the animation after endElement(). >- https://bugs.webkit.org/show_bug.cgi?id=43452 >- >- Added test for animation beginElement. It should restart the animation even if the animation is stopped by endElement() previously. >- >- * svg/animations/animate-endElement-beginElement-expected.txt: Added. >- * svg/animations/animate-endElement-beginElement.html: Added. >- * svg/animations/script-tests/animate-endElement-beginElement.js: Added. >- >-2011-06-07 MORITA Hajime <morrita@google.com> >- >- Unreviewed Skipped entry addition following r88225. >- >- * platform/win/Skipped: >- >-2011-06-07 MORITA Hajime <morrita@google.com> >- >- Unreviewed, rolling out r88212 and r88219. >- http://trac.webkit.org/changeset/88212 >- http://trac.webkit.org/changeset/88219 >- https://bugs.webkit.org/show_bug.cgi?id=57439 >- >- Tests get timeout on Snow Leopard >- >- * fast/replaced/no-focus-ring-embed-1-expected.txt: Removed. >- * fast/replaced/no-focus-ring-embed-1.html: Removed. >- * fast/replaced/no-focus-ring-embed-2-expected.txt: Removed. >- * fast/replaced/no-focus-ring-embed-2.html: Removed. >- * fast/replaced/no-focus-ring-iframe-expected.txt: Removed. >- * fast/replaced/no-focus-ring-iframe.html: Removed. >- * fast/replaced/no-focus-ring-object-1-expected.txt: Removed. >- * fast/replaced/no-focus-ring-object-1.html: Removed. >- * fast/replaced/no-focus-ring-object-2-expected.txt: Removed. >- * fast/replaced/no-focus-ring-object-2.html: Removed. >- * fast/replaced/outline-replaced-elements-expected.txt: Removed. >- * fast/replaced/outline-replaced-elements.html: Removed. >- * fast/replaced/resources/focus-test.js: Removed. >- * platform/mac/fast/replaced/outline-replaced-elements-expected.png: Removed. >- >-2011-06-07 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, added new baseline for GTK after r88175. >- >- * platform/gtk/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. >- * platform/gtk/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. >- >-2011-06-07 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, skip tests crashing in GTK bots because of an ASSERT. >- >- Also relocated one skipped test into its right category, together >- with the new one being skipped now. >- >- * platform/gtk/Skipped: SKipped test >- >-2011-06-06 MORITA Hajime <morrita@google.com> >- >- Reviewed by Kent Tamura. >- >- Verify cloning <details> and <summary> works. >- https://bugs.webkit.org/show_bug.cgi?id=61985 >- >- * fast/html/details-clone-expected.txt: Added. >- * fast/html/details-clone.html: Added. >- >-2011-06-06 MORITA Hajime <morrita@google.com> >- >- Unreviewed attempt to fix flakiness on Snow Leopard. >- >- * fast/replaced/resources/focus-test.js: >- >-2011-06-06 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed. Rebaseline outline-replaced-elements windows/linux image results. >- https://bugs.webkit.org/show_bug.cgi?id=57439 >- >- * platform/chromium-linux-x86/fast/replaced/outline-replaced-elements-expected.png: Added. >- * platform/chromium-linux/fast/replaced/outline-replaced-elements-expected.png: Added. >- * platform/chromium-win/fast/replaced/outline-replaced-elements-expected.png: Added. >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Simon Fraser <simon.fraser@apple.com> >- >- Reviewed by Dan Bernstein. >- >- Incorrect rounding of color values during transitions >- https://bugs.webkit.org/show_bug.cgi?id=62141 >- >- Test that interpolates colors, and checks the rounding. >- >- * transitions/color-transition-rounding-expected.txt: Added. >- * transitions/color-transition-rounding.html: Added. >- >-2011-06-06 Noel Gordon <noel.gordon@gmail.com> >- >- Reviewed by Hajime Morita. >- >- CSS property outline not displayed on an iframe. >- https://bugs.webkit.org/show_bug.cgi?id=57439 >- >- * fast/replaced/no-focus-ring-embed-1-expected.txt: Added. >- * fast/replaced/no-focus-ring-embed-1.html: Added. >- * fast/replaced/no-focus-ring-embed-2-expected.txt: Added. >- * fast/replaced/no-focus-ring-embed-2.html: Added. >- * fast/replaced/no-focus-ring-iframe-expected.txt: Added. >- * fast/replaced/no-focus-ring-iframe.html: Added. >- * fast/replaced/no-focus-ring-object-1-expected.txt: Added. >- * fast/replaced/no-focus-ring-object-1.html: Added. >- * fast/replaced/no-focus-ring-object-2-expected.txt: Added. >- * fast/replaced/no-focus-ring-object-2.html: Added. >- * fast/replaced/outline-replaced-elements-expected.txt: Added. >- * fast/replaced/outline-replaced-elements.html: Added. >- * fast/replaced/resources/focus-test.js: Added. >- (element.onfocus): Use a small delay to avoid test false positives. >- * platform/chromium/test_expectations.txt: >- * platform/mac/fast/replaced/outline-replaced-elements-expected.png: Added. >- >-2011-06-06 MORITA Hajime <morrita@google.com> >- >- Reviewed by Kent Tamura. >- >- Assertion fails in TextCheckingHelper by right-clicking on <input type=search> >- https://bugs.webkit.org/show_bug.cgi?id=61991 >- >- * editing/spelling/spellcheck-input-search-crash-expected.txt: Added. >- * editing/spelling/spellcheck-input-search-crash.html: Added. >- >-2011-06-06 James Kozianski <koz@chromium.org> >- >- [Chromium] Unreviewed, update test_expectations.txt. >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Qi Zhang <qi.2.zhang@nokia.com> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- [Qt] Clean scalePage related LayoutTests >- https://bugs.webkit.org/show_bug.cgi?id=62142 >- >- * platform/qt/Skipped: >- >-2011-06-06 James Simonsen <simonjam@chromium.org> >- >- [Chromium] Unreviewed, added baseline for inline-wrap-with-parent-padding.html >- >- * platform/chromium-win/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. >- * platform/chromium-win/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. >- >-2011-06-06 Paul Kinlan <paulkinlan@google.com> >- >- Reviewed by Jeremy Orlow. >- >- Adds a test for firing popstate, using window.dispatchEvent. >- https://bugs.webkit.org/show_bug.cgi?id=62099 >- >- * fast/events/fire-popstate-event-expected.txt: Added. >- * fast/events/fire-popstate-event.html: Added. >- >-2011-06-06 Jessie Berlin <jberlin@apple.com> >- >- Update the Windows-specific results after r88020 in order to get the bots green. >- >- * platform/win/fast/dom/Window/window-property-descriptors-expected.txt: >- * platform/win/fast/dom/prototype-inheritance-expected.txt: >- * platform/win/fast/js/global-constructors-expected.txt: >- >-2011-06-06 Jessie Berlin <jberlin@apple.com> >- >- Windows DRT needs an implementation of shadowRoot. >- https://bugs.webkit.org/show_bug.cgi?id=59081 >- >- Skip more tests on Windows that use the Shadow DOM to get the bots green. >- >- * platform/win/Skipped: >- >-2011-06-06 Anna Cavender <annacc@chromium.org> >- >- Reviewed by David Levin. >- >- Marking media/video-canvas-alpha.html as SKIP for GPU MAC. >- https://bugs.webkit.org/show_bug.cgi?id=62068 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Vangelis Kokkevis <vangelis@chromium.org> >- >- Unreviewed. Layout test expectations fix. >- >- [chromium] Adjusting expectations for failing huge-layer-img.html >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Yael Aharon <yael.aharon@nokia.com> >- >- Reviewed by Eric Seidel. >- >- Inline elements are wrapped prematurely with non-zero border, margin or padding. >- https://bugs.webkit.org/show_bug.cgi?id=60459 >- >- * fast/inline/inline-wrap-with-parent-padding.html: Added. >- * platform/mac/fast/inline/inline-wrap-with-parent-padding-expected.png: Added. >- * platform/mac/fast/inline/inline-wrap-with-parent-padding-expected.txt: Added. >- >-2011-06-06 Shishir Agrawal <shishir@chromium.org> >- >- Reviewed by Tony Gentilcore. >- >- Add a "prerender" state for page visibility. >- https://bugs.webkit.org/show_bug.cgi?id=62062 >- >- * fast/events/page-visibility-transition-test-expected.txt: >- * fast/events/page-visibility-transition-test.html: >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] 6 tests have different results on 64 bit compared to 32 bit >- https://bugs.webkit.org/show_bug.cgi?id=52812 >- >- * platform/qt/Skipped: Add svg/custom/embedding-external-svgs.xhtml. >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Skip failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-06 Zsolt Fehér <h490267@stud.u-szeged.hu> >- >- Reviewed by Csaba Osztrogonác. >- >- [Qt] Add expected results for the new passing tests, and skip the new failing tests. >- >- * platform/qt/Skipped: Skip new failing tests. >- * platform/qt/fast/frames/flattening/iframe-flattening-nested-expected.png: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-nested-expected.txt: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.png: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-and-scroll-expected.txt: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.png: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-expected.txt: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.png: Added. >- * platform/qt/fast/frames/flattening/iframe-flattening-out-of-view-scroll-and-relayout-expected.txt: Added. >- * platform/qt/svg/as-image/img-preserveAspectRatio-support-2-expected.png: Added. >- * platform/qt/svg/as-image/img-preserveAspectRatio-support-2-expected.txt: Added. >- * platform/qt/svg/as-image/svg-as-background-with-relative-size-expected.png: Added. >- * platform/qt/svg/as-image/svg-as-background-with-relative-size-expected.txt: Added. >- * platform/qt/svg/as-image/svg-as-background-with-viewBox-expected.png: Added. >- * platform/qt/svg/as-image/svg-as-background-with-viewBox-expected.txt: Added. >- * platform/qt/svg/custom/embedding-external-svgs-expected.png: Added. >- * platform/qt/svg/custom/embedding-external-svgs-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-absolute-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-height-50p-on-target-svg-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-absolute-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-50p-on-target-svg-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-absolute-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-height-75p-on-target-svg-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-absolute-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-50p-on-target-svg-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-absolute-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-width-75p-height-50p-on-target-svg-expected.txt: Added. >- * platform/qt/svg/hixie/intrinsic/001-expected.png: Added. >- * platform/qt/svg/hixie/intrinsic/001-expected.txt: Added. >- * platform/qt/svg/hixie/intrinsic/002-expected.png: Added. >- * platform/qt/svg/hixie/intrinsic/002-expected.txt: Added. >- * platform/qt/svg/hixie/intrinsic/003-expected.png: Added. >- * platform/qt/svg/hixie/intrinsic/003-expected.txt: Added. >- * platform/qt/svg/text/scaling-font-with-geometric-precision-expected.png: Added. >- * platform/qt/svg/text/scaling-font-with-geometric-precision-expected.txt: Added. >- >-2011-06-06 Marcus Bulach <bulach@chromium.org> >- >- Reviewed by Unreviewed rebaseline. >- >- [chromium] Unreviewed, new baseline for GPU test. >- https://bugs.webkit.org/show_bug.cgi?id=62123 >- >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Gabor Loki <loki@webkit.org> >- >- Rubber-stamped by Csaba Osztrogonác >- >- Skip a flakey test on ARM. >- >- * platform/qt-arm/Skipped: >- >-2011-06-04 Dominic Cooney <dominicc@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Unskip window.internals test on Windows. >- https://bugs.webkit.org/show_bug.cgi?id=61076 >- >- * platform/win/Skipped: >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] 6 tests have different results on 64 bit compared to 32 bit >- https://bugs.webkit.org/show_bug.cgi?id=52812 >- >- * platform/qt/Skipped: Add svg/custom/object-sizing-explicit-width-height.xhtml. >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] Remove previously deleted tests from the Skipped list. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] Skip failing tests. >- >- * platform/qt-wk2/Skipped: >- >-2011-06-06 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Skip failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-06 Marcus Bulach <bulach@chromium.org> >- >- Reviewed by Unreviewed rebaseline. >- >- [chromium] Unreviewed, missing baselines following r88153 >- https://bugs.webkit.org/show_bug.cgi?id=62121 >- >- * platform/chromium-gpu-linux/compositing/geometry/video-fixed-scrolling-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Marcus Bulach <bulach@chromium.org> >- >- Reviewed by Unreviewed rebaseline. >- >- [chromium] Unreviewed, further rebaseline for Chromium GPU media pixel tests following r88077 >- https://bugs.webkit.org/show_bug.cgi?id=62115 >- >- * platform/chromium-gpu-linux/compositing/geometry/clipped-video-controller-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/video-fixed-scrolling-expected.png: >- * platform/chromium-gpu-linux/compositing/geometry/video-opacity-overlay-expected.png: >- * platform/chromium-gpu-linux/compositing/layers-inside-overflow-scroll-expected.png: >- * platform/chromium-gpu-linux/compositing/overflow/overflow-compositing-descendant-expected.png: >- * platform/chromium-gpu-linux/compositing/overflow/scroll-ancestor-update-expected.png: >- * platform/chromium-gpu-linux/compositing/reflections/load-video-in-reflection-expected.png: >- * platform/chromium-gpu-linux/compositing/self-painting-layers-expected.png: >- * platform/chromium-gpu-linux/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-linux/media/video-zoom-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/clipped-video-controller-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/video-fixed-scrolling-expected.png: >- * platform/chromium-gpu-mac/compositing/geometry/video-opacity-overlay-expected.png: >- * platform/chromium-gpu-mac/compositing/layers-inside-overflow-scroll-expected.png: >- * platform/chromium-gpu-mac/compositing/overflow/overflow-compositing-descendant-expected.png: >- * platform/chromium-gpu-mac/compositing/overflow/scroll-ancestor-update-expected.png: >- * platform/chromium-gpu-mac/compositing/reflections/load-video-in-reflection-expected.png: >- * platform/chromium-gpu-mac/compositing/self-painting-layers-expected.png: >- * platform/chromium-gpu-mac/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-mac/media/video-zoom-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/clipped-video-controller-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/video-fixed-scrolling-expected.png: >- * platform/chromium-gpu-win/compositing/geometry/video-opacity-overlay-expected.png: >- * platform/chromium-gpu-win/compositing/layers-inside-overflow-scroll-expected.png: >- * platform/chromium-gpu-win/compositing/overflow/overflow-compositing-descendant-expected.png: >- * platform/chromium-gpu-win/compositing/overflow/scroll-ancestor-update-expected.png: >- * platform/chromium-gpu-win/compositing/reflections/load-video-in-reflection-expected.png: >- * platform/chromium-gpu-win/compositing/self-painting-layers-expected.png: >- * platform/chromium-gpu-win/media/video-controls-rendering-expected.png: >- * platform/chromium-gpu-win/media/video-zoom-expected.png: >- * platform/chromium/test_expectations.txt: >- >-2011-06-06 Zsolt Fehér <h490267@stud.u-szeged.hu> >- >- Reviewed by Csaba Osztrogonác. >- >- [Qt] Add expected results for the new passing tests, and skip the new failing tests. >- >- * platform/qt/Skipped: Skip new failing tests. >- * platform/qt/editing/selection/select-across-readonly-input-1-expected.png: Added. >- * platform/qt/editing/selection/select-across-readonly-input-1-expected.txt: Added. >- * platform/qt/editing/selection/select-across-readonly-input-2-expected.png: Added. >- * platform/qt/editing/selection/select-across-readonly-input-2-expected.txt: Added. >- * platform/qt/editing/selection/select-across-readonly-input-3-expected.png: Added. >- * platform/qt/editing/selection/select-across-readonly-input-3-expected.txt: Added. >- * platform/qt/editing/selection/select-across-readonly-input-4-expected.png: Added. >- * platform/qt/editing/selection/select-across-readonly-input-4-expected.txt: Added. >- * platform/qt/editing/selection/select-across-readonly-input-5-expected.png: Added. >- * platform/qt/editing/selection/select-across-readonly-input-5-expected.txt: Added. >- * platform/qt/fast/block/float/float-overhangs-root-expected.png: Added. >- * platform/qt/fast/block/float/float-overhangs-root-expected.txt: Added. >- * platform/qt/fast/block/positioning/hiding-inside-relpositioned-inline-expected.png: Added. >- * platform/qt/fast/block/positioning/hiding-inside-relpositioned-inline-expected.txt: Added. >- * platform/qt/fast/forms/date-input-visible-strings-expected.png: Added. >- * platform/qt/fast/forms/input-placeholder-text-indent-expected.png: Added. >- * platform/qt/fast/forms/input-placeholder-text-indent-expected.txt: Added. >- * platform/qt/fast/html/details-add-details-child-1-expected.png: Added. >- * platform/qt/fast/html/details-add-details-child-1-expected.txt: Added. >- * platform/qt/fast/html/details-add-details-child-2-expected.png: Added. >- * platform/qt/fast/html/details-add-details-child-2-expected.txt: Added. >- * platform/qt/fast/html/details-nested-1-expected.png: Added. >- * platform/qt/fast/html/details-nested-1-expected.txt: Added. >- * platform/qt/fast/html/details-nested-2-expected.png: Added. >- * platform/qt/fast/html/details-nested-2-expected.txt: Added. >- * platform/qt/fast/html/details-replace-summary-child-expected.png: Added. >- * platform/qt/fast/html/details-replace-summary-child-expected.txt: Added. >- * platform/qt/fast/html/details-replace-text-expected.png: Added. >- * platform/qt/fast/html/details-replace-text-expected.txt: Added. >- * platform/qt/fast/inline/nested-top-alignment-expected.png: Added. >- * platform/qt/fast/inline/nested-top-alignment-expected.txt: Added. >- * platform/qt/fast/table/dynamic-caption-add-before-child-expected.png: Added. >- * platform/qt/fast/table/dynamic-caption-add-before-child-expected.txt: Added. >- * platform/qt/fast/table/dynamic-caption-add-remove-before-child-expected.png: Added. >- * platform/qt/fast/table/dynamic-caption-add-remove-before-child-expected.txt: Added. >- * platform/qt/fast/table/multiple-captions-display-expected.png: Added. >- * platform/qt/fast/table/multiple-captions-display-expected.txt: Added. >- * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.png: Added. >- * platform/qt/http/tests/misc/object-embedding-svg-delayed-size-negotiation-expected.txt: Added. >- * platform/qt/scrollbars/scrollbars-on-positioned-content-expected.png: Added. >- * platform/qt/scrollbars/scrollbars-on-positioned-content-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/filters-felem-01-b-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/painting-marker-07-f-expected.txt: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.png: Added. >- * platform/qt/svg/W3C-SVG-1.1-SE/struct-use-14-f-expected.txt: Added. >- * platform/qt/svg/custom/fill-opacity-update-expected.png: Added. >- * platform/qt/svg/custom/fill-opacity-update-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-explicit-width-height-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-explicit-width-height-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-no-width-height-change-content-box-size-expected.txt: Added. >- * platform/qt/svg/custom/object-sizing-no-width-height-expected.png: Added. >- * platform/qt/svg/custom/object-sizing-no-width-height-expected.txt: Added. >- * platform/qt/svg/custom/stroke-opacity-update-expected.png: Added. >- * platform/qt/svg/custom/stroke-opacity-update-expected.txt: Added. >- * platform/qt/svg/wicd/rightsizing-grid-expected.png: Added. >- * platform/qt/svg/wicd/rightsizing-grid-expected.txt: Added. >- * platform/qt/svg/wicd/test-rightsizing-a-expected.png: Added. >- * platform/qt/svg/wicd/test-rightsizing-a-expected.txt: Added. >- * platform/qt/svg/wicd/test-rightsizing-b-expected.png: Added. >- * platform/qt/svg/wicd/test-rightsizing-b-expected.txt: Added. >- * platform/qt/svg/wicd/test-scalable-background-image1-expected.png: Added. >- * platform/qt/svg/wicd/test-scalable-background-image1-expected.txt: Added. >- * platform/qt/svg/wicd/test-scalable-background-image2-expected.png: Added. >- * platform/qt/svg/wicd/test-scalable-background-image2-expected.txt: Added. >- >-2011-06-06 Mario Sanchez Prada <msanchez@igalia.com> >- >- Unreviewed, new baselines for GTK after r88029 and r80034. >- >- * platform/gtk/fast/forms/selectlist-minsize-expected.png: Added. >- * platform/gtk/fast/forms/selectlist-minsize-expected.txt: Added. >- * platform/gtk/fullscreen/full-screen-placeholder-expected.txt: Added. >- >-2011-06-02 MORITA Hajime <morrita@google.com> >- >- Verify cloning <meter> and <progress> works >- https://bugs.webkit.org/show_bug.cgi?id=61986 >- >- Added test cases for cloning <meter> and <progress> >- >- * fast/dom/HTMLMeterElement/meter-clone-expected.txt: Added. >- * fast/dom/HTMLMeterElement/meter-clone.html: Added. >- * fast/dom/HTMLProgressElement/progress-clone-expected.txt: Added. >- * fast/dom/HTMLProgressElement/progress-clone.html: Added. >- >-2011-06-06 Mustafizur Rahaman <mustaf.here@gmail.com> >- >- Reviewed by Darin Adler. >- >- https://bugs.webkit.org/show_bug.cgi?id=48290 >- Removed LayoutTests/canvas/philip/tests/2d.composite.operation.highlight.html >- from failed/skipped test list >- >- * platform/chromium/test_expectations.txt: >- * platform/gtk/Skipped: >- * platform/mac/Skipped: >- * platform/qt/Skipped: >- >-2011-06-05 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][WK2] Unreviewed. Update platform specific expected files after r88020. >- >- * platform/qt-wk2/fast/dom/Window/window-properties-expected.txt: >- * platform/qt-wk2/fast/dom/Window/window-property-descriptors-expected.txt: >- >-2011-06-05 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed trivial fix. >- >- * platform/qt/Skipped: Remove svg/hixie/links/003-broken.xml, because it was deleted by r87518. >- >-2011-06-05 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt][Mac] Unreviewed. Skip new failing tests. >- >- * platform/qt-mac/Skipped: >- >-2011-06-05 Csaba Osztrogonác <ossy@webkit.org> >- >- [Qt] Unreviewed. Update platform specific expected files after r88020. >- >- * platform/qt/fast/dom/Window/window-properties-expected.txt: >- * platform/qt/fast/dom/Window/window-property-descriptors-expected.txt: >- * platform/qt/fast/dom/prototype-inheritance-expected.txt: >- * platform/qt/fast/js/global-constructors-expected.txt: >- >-2011-06-05 Kent Tamura <tkent@chromium.org> >- >- Reviewed by Dimitri Glazkov. >- >- Rolling out r84528. >- http://trac.webkit.org/changeset/84528 >- https://bugs.webkit.org/show_bug.cgi?id=62100 >- >- * fast/dom/shadow/import-shadowroot-expected.txt: Removed. >- * fast/dom/shadow/import-shadowroot.html: Removed. >- >-2011-06-05 Robert Hogan <robert@webkit.org> >- >- Reviewed by Andreas Kling. >- >- [Qt] Fix and unskip acid2 >- https://bugs.webkit.org/show_bug.cgi?id=62089 >- >- We're unskipping acid2.html event though it's just a landing >- page for the acid2 test. Some elements of the test are loaded by >- the landing page so it is testing something, but acid2-pixel covers the same >- ground. >- >- * platform/qt/Skipped: >- * platform/qt/fast/css/acid2-expected.txt: Updated >- * platform/qt/fast/css/acid2-pixel-expected.png: Added. >- * platform/qt/fast/css/acid2-pixel-expected.txt: Added. >- * platform/qt/fast/overflow/overflow-height-float-not-removed-crash-expected.txt: Removed. >- * platform/qt/fast/overflow/overflow-height-float-not-removed-crash3-expected.txt: Removed. >- * platform/qt/http/tests/misc/acid2-expected.png: Added. >- * platform/qt/http/tests/misc/acid2-expected.txt: Added. >- * platform/qt/http/tests/misc/acid2-pixel-expected.png: Added. >- * platform/qt/http/tests/misc/acid2-pixel-expected.txt: Added >- >-2011-06-05 Igor Oliveira <igor.oliveira@openbossa.org> >- >- Reviewed by Kenneth Rohde Christiansen. >- >- fast/viewport/viewport-45.html fails in GTK+/Qt >- https://bugs.webkit.org/show_bug.cgi?id=47481 >- >- Rebaseline tests. >- >- * fast/viewport/viewport-45-expected.txt: >- * fast/viewport/viewport-86-expected.txt: >- * platform/qt/Skipped: >- >-== Rolled over to ChangeLog-2011-06-04 == >+ * platform/qt-4 >\ No newline at end of file >Index: LayoutTests/fast/block/float/avoiding-float-centered.html >=================================================================== >--- LayoutTests/fast/block/float/avoiding-float-centered.html (revision 0) >+++ LayoutTests/fast/block/float/avoiding-float-centered.html (revision 0) >@@ -0,0 +1,9 @@ >+<!doctype html> >+<div style="float:right;width:300px;margin:10px;height:100px;background-color:green"></div> >+ >+<table style="background-color:orange;margin-left:auto; margin-right:auto"><tr><td>This is a test and is demonstrating that auto width really >+should kick in here.</table> >+ >+ >+<div style="overflow:hidden; max-width:300px; background-color:orange;margin-left:auto; margin-right:auto">This is a test and is demonstrating that auto width really >+should kick in here.</div> >\ No newline at end of file >Index: LayoutTests/platform/mac/css2.1/20110323/replaced-elements-001-expected.txt >=================================================================== >--- LayoutTests/platform/mac/css2.1/20110323/replaced-elements-001-expected.txt (revision 113875) >+++ LayoutTests/platform/mac/css2.1/20110323/replaced-elements-001-expected.txt (working copy) >@@ -10,10 +10,10 @@ layer at (0,0) size 800x166 > RenderBlock (anonymous) at (0,0) size 752x18 > RenderText {#text} at (0,0) size 36x18 > text run at (0,0) width 36: " " >- RenderButton {INPUT} at (0,20) size 16x22 [bgcolor=#FFA500] [border: (2px outset #C0C0C0)] >+ RenderButton {INPUT} at (368,20) size 16x22 [bgcolor=#FFA500] [border: (2px outset #C0C0C0)] > RenderBlock {FORM} at (0,92) size 784x42 > RenderBlock {DIV} at (16,0) size 752x42 [bgcolor=#008000] > RenderBlock (anonymous) at (0,0) size 752x18 > RenderText {#text} at (0,0) size 36x18 > text run at (0,0) width 36: " " >- RenderButton {INPUT} at (0,20) size 16x22 [bgcolor=#FFA500] [border: (2px outset #C0C0C0)] >+ RenderButton {INPUT} at (368,20) size 16x22 [bgcolor=#FFA500] [border: (2px outset #C0C0C0)] >Index: LayoutTests/platform/mac/fast/block/float/avoiding-float-centered-expected.txt >=================================================================== >--- LayoutTests/platform/mac/fast/block/float/avoiding-float-centered-expected.txt (revision 0) >+++ LayoutTests/platform/mac/fast/block/float/avoiding-float-centered-expected.txt (revision 0) >@@ -0,0 +1,19 @@ >+layer at (0,0) size 800x600 >+ RenderView at (0,0) size 800x600 >+layer at (0,0) size 800x128 >+ RenderBlock {HTML} at (0,0) size 800x128 >+ RenderBody {BODY} at (8,8) size 784x78 >+ RenderBlock (floating) {DIV} at (474,10) size 300x100 [bgcolor=#008000] >+ RenderTable {TABLE} at (0,0) size 464x42 [bgcolor=#FFA500] >+ RenderTableSection {TBODY} at (0,0) size 464x42 >+ RenderTableRow {TR} at (0,2) size 464x38 >+ RenderTableCell {TD} at (2,2) size 460x38 [r=0 c=0 rs=1 cs=1] >+ RenderText {#text} at (1,1) size 442x36 >+ text run at (1,1) width 353: "This is a test and is demonstrating that auto width really " >+ text run at (354,1) width 89: "should kick in" >+ text run at (1,19) width 31: "here." >+ RenderBlock {DIV} at (82,42) size 300x36 [bgcolor=#FFA500] >+ RenderText {#text} at (0,0) size 270x36 >+ text run at (0,0) width 270: "This is a test and is demonstrating that auto" >+ text run at (0,18) width 79: "width really " >+ text run at (79,18) width 124: "should kick in here." >Index: LayoutTests/platform/mac/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt >=================================================================== >--- LayoutTests/platform/mac/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt (revision 113875) >+++ LayoutTests/platform/mac/fast/regions/overflow-not-moving-below-floats-in-variable-width-regions-expected.txt (working copy) >@@ -19,28 +19,28 @@ Flow Threads > RenderBlock {DIV} at (5,5) size 390x255 [border: (1px solid #0000FF)] > RenderBlock (floating) {DIV} at (1,1) size 30x50 [bgcolor=#00FF00] > RenderBlock (floating) {DIV} at (259,1) size 30x50 [bgcolor=#00FF00] >- layer at (53,6) size 293x253 clip at (54,7) size 291x251 scrollWidth 500 >- RenderBlock {DIV} at (48,1) size 293x253 [border: (1px solid #008000)] >+ layer at (6,6) size 293x253 clip at (7,7) size 291x251 scrollWidth 500 >+ RenderBlock {DIV} at (1,1) size 293x253 [border: (1px solid #008000)] > RenderBlock {DIV} at (1,1) size 500x18 >- RenderText {#text} at (-12,0) size 286x18 >- text run at (-12,0) width 286: "Clipped line of text that should not be visible." >+ RenderText {#text} at (35,0) size 286x18 >+ text run at (35,0) width 286: "Clipped line of text that should not be visible." > RenderBlock {P} at (1,35) size 291x95 >- RenderText {#text} at (-12,0) size 303x95 >- text run at (-12,0) width 216: "These lines will not spill out of" >- text run at (-12,18) width 216: "the regions. These lines will not" >- text run at (-12,36) width 178: "spill out of the regions. " >- text run at (166,36) width 38: "These" >- text run at (0,59) width 291: "lines will not spill out of the regions. These" >- text run at (0,77) width 229: "lines will not spill out of the regions." >+ RenderText {#text} at (35,0) size 303x95 >+ text run at (35,0) width 216: "These lines will not spill out of" >+ text run at (35,18) width 216: "the regions. These lines will not" >+ text run at (35,36) width 178: "spill out of the regions. " >+ text run at (213,36) width 38: "These" >+ text run at (47,59) width 291: "lines will not spill out of the regions. These" >+ text run at (47,77) width 229: "lines will not spill out of the regions." > RenderBlock {P} at (1,146) size 291x72 >- RenderText {#text} at (0,0) size 291x72 >- text run at (0,0) width 291: "These lines will not spill out of the regions." >- text run at (0,18) width 291: "These lines will not spill out of the regions." >- text run at (0,36) width 291: "These lines will not spill out of the regions." >- text run at (0,54) width 271: "These lines will not spill out of the regions." >+ RenderText {#text} at (47,0) size 291x72 >+ text run at (47,0) width 291: "These lines will not spill out of the regions." >+ text run at (47,18) width 291: "These lines will not spill out of the regions." >+ text run at (47,36) width 291: "These lines will not spill out of the regions." >+ text run at (47,54) width 271: "These lines will not spill out of the regions." > RenderBlock {DIV} at (1,234) size 500x18 >- RenderText {#text} at (0,0) size 286x18 >- text run at (0,0) width 286: "Clipped line of text that should not be visible." >+ RenderText {#text} at (47,0) size 286x18 >+ text run at (47,0) width 286: "Clipped line of text that should not be visible." > Regions for flow 'flow1' > RenderRegion {DIV} #region1 > RenderRegion {DIV} #region2 >Index: LayoutTests/platform/mac/fast/block/float/avoiding-float-centered-expected.png >=================================================================== >Cannot display: file marked as a binary type. >svn:mime-type = application/octet-stream > >Property changes on: LayoutTests/platform/mac/fast/block/float/avoiding-float-centered-expected.png >___________________________________________________________________ >Added: svn:mime-type > + application/octet-stream > > >iVBORw0KGgoAAAANSUhEUgAAAyAAAAJYCAYAAACadoJwAAAAKXRFWHRjaGVja3N1bQBlNTg5MWVm >ZDBhYzhkYTRjNDRlMGE1NDJlNmY3YmI1OSKoFJIAACAASURBVHic7d13uF5VgTfsX0JJIaEldARC >ExCQaiaCgH4iNphBcaQIKmMZsYwOF+8o+knxU0YsoCLwIjqjIgqiCNKbhV6kv4p0ZAggEAKpJCcn >3x+L856Tk6edkkVI7vu6uMhznmfvvfZae5+zfvtZe+0RCxcuXBgAAIAKRr7SBQAAAJYfAggAAFCN >AAIAAFQjgAAAANUIIAAAQDUCCAAAUI0AAgAAVLNi20+cPaJCMQBgGXOwx2wBNOIbEAAAoBoBBAAA >qEYAAQAAqhFAAACAapZYAJk5N3n8uebvPzcjeeCpga93sMstyxZ0J/dNbf7+cNVZu+0sD2off+3O >o+VFu3pvd2y+kvX40vzkhvubvx4uS3of25W7XRvMmZc8+kzz9wdybrVb11DWDcCSN6AA8u5vJOsd >kez/7eTQU5MVPpBs9rnkkO8nbzshGXVY8pNrk/NuLp/76XXN13XMr5L3nDTwAg92uWXVHY8mO38x >+fgPm39mOOqsk+0sD2oef52cR8uLVvXe7th8JevxtoeTKcf0lr3/6+GypPexXbnbtcH5tyYbfCr5 >9iXNt9HpudXJuga7bgDqGFAAGTsq+fM3kvP/PfnpEcnKKyZ7bJX87JPJFV9IzvpkuTJ1wORko4mt >13XiQclVRw+8wINdbiBmzU0uvuOVX0cndtyktMGKLVpyOOqsk+0sjYbaDv2XX9LHX9/tdXIedbqu >4Vbr+O7Rqt4bHZvDWY9DscumyaG7N389XJb0PrYrd7vfD/vvmmy7YettdHpudbKuwa4bgDoG1J38 >t32SNVZp/v4/7Vz+ECXlD1GrJ4iMHZWss9riP1/YZtr0wS7XY35X6/fndSUHnpL86ZHO1tdo+wNZ >R7vytNLdXf6/wshkZIuWHGqddbqdpcFg2yFZvC0aLd+sLgdSrmYaba/dedSjk7J3umw7gz1HhqJZ >vTc6NodSj0PVqC5XXCEZMaL568Hqf0wt6X1sVu5Ofz+s1Ga/B3JutVvXUNYNwJLX/kGEfez22tbv >r7Ri8obNel8v6E6+eE4ZFjB+THLhkclm6yRPTCtDtS74U3LT8eWzP78heWF2MmNu+Yr9huMWX/9g >l0uSK+9Jbn80GTki+c1tyakfTl6/8eKf+97l5bNTn08eezb57mHJi3OSb16c3PFYMn1WcsqHkjdu >2Xz7jdaxyujOynP1vckZ1ySvmZBsuV7y9d+WjsWl/5FsunZZdubc5Kizkw3WSJ6cntz1t2TMyo33 >eyh11m47Tz7fuF7uf7Lsw4LuZK+tk+N+XToL3z0sGTc6+cr5yfX3J5/cO/nS/mVdL85Ojj43Gbty >8tDfk/VWT75+YKm3Tuqkk3Y4bPfkrOtLR2TUSsl3LksuPqq0b6O26L/85/dNzrulty47Kdesuckn >/qsE9/umJquPLevefctkj63bH3tJ8/Oo1XE0lGPwlzcnn/1J8vn9kk/vk5xzY/Ll85I3b5Oc/i+N >172gu3n79feb25KP/KBcMf/Rx5ILb0+OPKtcvDjt8LJvJ12SnH9bcuUXkmdnLH4Mtzo2B1OPfd3y >UPKDaxY/Tjaa0Pz3QKe/X/r7xY3J8b8ux8u3Dkleu35y7+PJR89M/vPAZM+tF1+m1fnbah9bnWPt >2ryRgfwe6u/OR5OPnJm8ZZvkkN2SieMXb+NZc5OvXlDOnT89kuy0SfK/9m2/rv713v93YCfnLQBL >1oACyED96tbyx//T+yT/z9eSEy5MzvxouRo19fnkoafL5+Z3lT/sf/pqef33F8tVtf5X0wa73Evz >kw+enpz9yWSvbcowsePPT3712cXLfOS7klOuSA54Q/KFf0y6FiSHfyc579/K9j/942S/byX3fysZ >P7rx9vuvo79W5dlh4+Tuv5X/3rZdcu2Xk7d+LfnaBaXukuSAk5OPviV57xvKVdCNPpNsvX7jNhhs >nbXbTteC5PAzGtfLqBWTP/wlmTYrecvryh/9D52eHHpaCR0//Fjy/SuTL56bHLF36WC848TkU29L >DnpjWfcexyfvPTm57PPt66TZPvVvh9sfKZ3aDddMvvK+5AO7JauOTfY/qXFb9F/++VmL1mUnbXXm >75MJ45KTDk3+8kSyzf8qIb1RR6fZcdPsPGp1HA3lGHzf5OTfzyod3CR5/5Tkv/5Q2rNRORcuTHY/ >rnn79fdPu5Q6Wm1ssvoqyWFvKh3E9dfo7SxvsW7y0TeXAND/GG53bA60HvtbceTix8kaqzQ/3lcZ >1fnvl/4OnFI6w7PnlfCRJFutX7bdKHy0O3+b7ePCha3PsXZt3shAfg/1d939yVHvKttJFj+3kuQf >v52c8P5k181KyNjxi+X3yS6btl5Xf/2Pn07O29pGHFfj+zmAoVt4TIfDZ9pYogNq3rVD8qatknVX >L1fSemZIWWOVZOsNkp5dmDG3/DH45c3l9cff0vteX4NdbuUVkw/v0Ts8bLWxpTPYSs/X+2ffkHR1 >J7+9IznnpnIF/7mZyR/va7/9ZkMEWpVnwvhk0trJdhslb9u+dMrevE35ViFJrvtrcuW9yd7b9m7j >nTs034/B1lm77bSql43XSrZ7TemM7LtT2d99d0r+Z1rpHK42NvnU3mU9jz5Txurf/GDpBCVlqMfh >eyWX35Nce1/7Oum0HXaalLx2vTJ+fN+dkpMPS7Zar/2x0bN8/7psV64kOeu6cnU3Kcuus2q5Sr3h >hCYNlsWPm2bnUSfH9WCOwSQZvdKiw3nGrLz48J6edbdrv0Y+vGdy2V2lLpLyTdmFt5fhU0lyxT2l >Y5ssXu+dngOd1mN/jY6Tmx5sfrwP5vdLX597R/L7P/ceN3/4S/Nzut2x3mwfO2mjTtq8x0B/D/V1 >0iXJpLUWDQz92/iKu0sd7vryN+o7bJKcdUSy+Trt19XfYM5bAJasJRpA+nYAVhuTzHpp0fd63l5z >XPLBPZJ//m5y8Cmlw7ZCk5INZrkRI5Kvvj955O/Jf15Y/hDPnNtZ2W9+sAy92GLd8t/7Jie3/X/J >blu2336zzl+78ozIon/4x40uV6yT0uHZev1y5b7H2JVbj4ceTJ21206revm/2+xTpnH9huL0vH5u >ZnLrw8laq5ZOUY/JL3c87nysfZ0MpB1Gr1Q6IH3fa3ds9F2+b122K1dSynJ9n6lLJ4wvQ49a6d+W >zc6jgZa9/88Hek40K2cn7dffgVPKVe9r/k95fc/jJXxcfncZepOUK9d9t9WzK52eA53WYyP9j5NW >x/tQ6/JdOyQbT0xOv7q8/u3tyXt2bfzZgRzrffdxMG3UymB+DyXJhX9KTrwo+YfNF3+vbxtf99dk >cr/PHLJb+cask3W1WnfS/rwFYMlaam4pPvOj5ev2X92SvPHYMu57OJf76m/KUIf/2LdcIWz3h7Ln >7RdmJ3PnJztPWvS/tVZtv/1WmxhoeXpMfT6ZOn3xG1AH8gV+J3XWbjvt6qW/kf07AH1ezF+QPP1C >GVffY5sNy1CY+QuGvk/t6qZdWwxlcMQX9itTlF59b3L9X0sn9h+2aL3MQLY3lLIP9hjsv+7BtN8a >q5RvF356XXLTA8nury1Dps6+vgwj6vn2o5FOz4HhHNTS7ngfSl2OHFmGIv73H0twmTu/fIvSzGB+ >Vw7HOdbXYH8P7b1dCVHtpvN+dka5p2Y41gXA0mepCCCPP1eG4nx+v3K/wN9fLB2R4Vru9keSL/2y >jOfutGPQ83d183WTS+8qN3D26FqQXHJn++03GyU3mPL02HhiuXJ87+MDW65Hp3XWbjut6mWgtt2w >1NUtD/X+7IlpZchLJ9NtDrYdks7aYiijHadskXzireUm3bnzk4uOar9Mp9sbStk7Wbaru7NyDrb9 >PrRH8utbk1OvKv/+4JvKMKzL7mr9LVGn58DwjFItWh3vQzmfexy+Z7l35FP/Xe5zaGawvys7baN2 >bd5jsL+Hxqyc/PQTpZ3P/F3zz226dplAoO/653clNz4w8HUBsPQZdADpWlC+sn76hcbvz3wpmTFn >0dd9hyXMmFOGB3R3l1mIfnFj+fmOmyRv377MUNLIYJb728tPB77hgfJH/pI7yzrmd/VOIdnXmuOS >B58qV/f22a5c/TzolPKH//4nkyN/luy6aevt913Hk88PrDxz5/eOje/Z556rlAdNKTd5f+vlh3At >6C5XCqdOT2Y3GVIymDprt51Dd29eL0k5Nrr6XFmdO790bnqGOfSM9e9aUK52b7p2cnGf8HLbw8nr >N0reum3v8s3qZCDtMK9r0eOwXVv0X75vXbYrV1JmCVpzXNmPyZuXb4Ja6b+9VufRQMveV7tld5lU >7kuYMaeMxb//qRKiGpXzjVu0b79G9tk+GTeq3KQ/fky5gXutVcsQp/4d+b713sk5MJB6bKT/cdLq >eG9Xl3PmJS/1mZ63/+ukDPc6aEr5VuPdOzYvV6tjvdU+dnKOtWvzvuUezO+heS/Xx06TkmPek3zm >xyW89ejbxgfvVm7uP/j7ZTjWtfcl//qj5HUbdLau/gZ63gKwZK1w7LHHHtvyE/cct9iP7n08Ofqc >Mh3l0y+UccXbbVhmrEmSc29Kfvj78nX/bluWDsCJFyUPP13+4L0wOznp0uTRZ5NVx5SraUedXZaf >Oi154vnks+9YvLN284ODW27jiaVTcNpVyQNPlSvSP70uued/kv13WfweiCemJSdfVj576JvKWOdT >rki+eUmZnvLId5abIp95sUwf2mj7fdex706LTk/ZqjxrrlKm/XzqhVJ3z85IvnZhmcFl8mbJjpOS >bTYoU0eedlXpMIwbXf54jh+TbL/R8NTZqmNbb2fPrZNNJjaul5seKLPvTJ1eOjVJmXr3gZdnodl5 >UvLtS5Pf/bl0BPbcuox5/8ZF5dh4cU7y8xuTMz5SOpK//3PZh2Z1suqYztphzrzkx9eWK6sbTki2 >fU37Y+PJ6b3Lr7dGcuqVvXU566XWbbXZOmV61i+fVzpqJ1xYZjB68KnkHTs0vvemb3kXdJeyNDuP >9tm+87IP5Bjcf5cSBL53RXL6VaUc66+eTJ+drLta71TaPevef9dkv52at18zI0eWK/hH7F0+N2JE >Mm1m8qE9F33eUP9j+C2vK5MctDoHBlKPW/Wbuems65If/G7R42TNcc2P91Z1ucEapV4eeabcrzGv >a9HXO2zcexysOa4EhlY3VDf7nXPeza1/577uNeWG8VZtNGFc8zZ/dkap755y77F1+zbo69ybkv99 >TWmXyZuXbwZPv7qEqVEv3/zet43fvE353XH29aVMf7wvOfHgcvN4u3X1vyek//HTyXk7bLY7tqOP >HfeHxf/OAiyNjt3r2GFZz4iFC9s8Iu3s4RxJ3VjPNJLTZ5UHTDV6dsBwLDdnXm8nbH5XeW5JM8/O >6J29qOfzj08rnY2eDkO77fdfx1DK0193d5kic+L4ZO68ZHSH8+8PtM7abadRvQzFg0+V9UwawHz8 >Q22HpHVbdLJ8MydcUJ5SPXdemcFo+uzSgTpktzKGvZGBbm8oZW+17Lyu0hEds3Lj47PRugfafi/N >771w0eh1K+2OzaG0WzOtjvehnM9JuYdkk4llZqZmBvu7sq9WbdSuzRuVZzC/hzq1cGEJqa/ahwge >3NlAQNPwAq8WwzUN71IRQGBZdMY1JWxcdfSiP7/87mSztct9BTBjTgldh3w/Ofczw/OUdJYSAgiw >jBmuALJEH0QIy7Mpm5ex6e/7Thl2NmdeGbL47h2FD4pTryw3nm+wZvLDjwofACwfBBBYQrbbKHn6 >tDJ+/anpZVy74EFfB04poeMfdy4PxAOA5YEAAkvQamPLDeDQyJrjyk3rALA8WSqeAwIAACwfBhxA >Zs4tD8MCAAAYqAEFkPNuTtY7osxxDwAAMFADCiAHTE42mrikigIAACzrBjwEa8WR5am1AAAAAzWo >WbAWdCdfPKcMxRo/JrnwyGSzdcp7Tz6ffPPi5I7HytN6T/lQ8sYtk1seSn5wTXmi7aiVku9cllx8 >VLLRhMafBwAAlj2DmgXrV7cmb399cstXyusTLiz/71qQHH5GcvwBydVHlyCx37eSaTPLNyfn35Zc >dEeyw8bJB3ZL1lil+ecBAIBlz6C+AXnXDsmbtir/fvM2yZ2PlX+ffUPS1Z389o7yetzo5LmZ5UFs >/7RL8tr1kklrleci7LtT8pNrW38eAABYtgwqgIzocxPIamOSWS+Vf9/8YBlStcXLT3veYt3kfZPL >z5Jk9ErJhPG9y7b7PAAAsGwZ1iehvzA7WZhk50lL5vMAAMCr27A+CX3zdZNL70penN37s64FySV3 >Ds/nAQCAV7eBPwn9pWTGnEVfz5xb/n3o7uVbjYNOSR59Jrn/yeTInyW7blren9fV+9lOPj/7peSI >HyUPPDXY3QMAAJYmAwog595UgsLldyd3PJrc/kj59yN/Ty64rUzF+6OPJb/7czLps8nuxyVv2y5Z >a9XkrOuS2x9NLr4j+cWNZX2tPp8kjz2bnH51cuMDw7vTAADAK2PEwoULF7b8xNkDf+zg/K7k8WnJ >xhOTFTqIOK0+/8yLvYEEAF41Dm7957XHiOM83hd4dVh4TGe/19oZ1pvQe6y0YrLp2sPzeeEDAACW >HcN6EzoAAEArAggAAFCNAAIAAFQjgAAAANUIIAAAQDXtZ8HqcBpB2hjEdMYArwi/9wFYgnwDAgAA >VCOALIVmzk0ef675+8/NSB54auDrHexyy7IF3cl9U5u/P1x11m47y4Pax1+78wgAeGUIIJW8+xvJ >ekck+387OfTUZIUPJJt9Ljnk+8nbTkhGHZb85NrkvJvL5356XfN1HfOr5D0nDbwMg11uWXXHo8nO >X0w+/sPmnxmOOutkO8uDmsdfJ+cRAPDKEEAqGTsq+fM3kvP/PfnpEcnKKyZ7bJX87JPJFV9Izvpk >MmdecsDkZKOJrdd14kHJVUcPvAyDXW4gZs1NLr7jlV9HJ3bcpLTBii3OguGos062szQaajv0X35J >H399t9fJedTpuoZbreMbAJZWr7Iu0avXv+2TrLFK8/f/aefSUU1KR7XVLetjRyXrrLb4zxe2uW90 >sMv1mN/V+v15XcmBpyR/eqSz9TXa/kDW0a48rXR3l/+vMDIZ2eIsGGqddbqdpcFg2yFZvC0aLd+s >LgdSrmYaba/dedSjk7J3umw7gz1HAGBZ0n4WLIbFbq9t/f5KKyZv2Kz39YLu5IvnlCEk48ckFx6Z >bLZO8sS0MlTrgj8lNx1fPvvzG5IXZicz5ibn35rccNzi6x/sckly5T3J7Y8mI0ckv7ktOfXDyes3 >Xvxz37u8fHbq88ljzybfPSx5cU7yzYuTOx5Lps9KTvlQ8sYtm2+/0TpWGd1Zea6+NznjmuQ1E5It >10u+/tvSCb30P5JN1y7LzpybHHV2ssEayZPTk7v+loxZufF+D6XO2m3nyecb18v9T5Z9WNCd7LV1 >ctyvkxEjSj2MG5185fzk+vuTT+6dfGn/sq4XZydHn5uMXTl56O/JeqsnXz+w1FsnddJJOxy2e3LW >9SVAjFop+c5lycVHlfZt1Bb9l//8vsl5t/TWZSflmjU3+cR/leB+39Rk9bFl3btvmeyxdftjL2l+ >HrU6joZyDP7y5uSzP0k+v1/y6X2Sc25Mvnxe8uZtktP/pfG6F3Q3bz8AWBYt5ddkl1+/ujV5++uT >W75SXp9wYfn/2FGl8/LQ0+X1/K7Skf3XtyZHvbsEnZ6r7n0NdrmX5icfPD2ZvFn53D7bJ8ef37jM >R76rdJ4OeEPyw4+VjurhZyTHH5BcfXTpYO/3rWTazObb77+O/p2wVuXZYePk7r+V4S2bTEyu/XL5 >5uFrF/Quf8DJyVu3LZ33Uz5UOoHNrpIPts7abadrQfN6GbVi8oe/JBfeXr4xuen45LXrJYeellx1 >b6mTT++T/L/nlc8vXJi848Rkty2TEw9Ozvl0cvsjyXtP7qxOOm2H8WOS829LLrqjrPMDuyWrjm3e >Fv2Xn7jqonXZSVud+ftkwrjkO4clJx+anHtzqZ+egNLq2Os5bpqdR62Oo6Ecg++bXNptxtzy+v1T >kklrJdNmNV732FGt2w8AlkUCyFLqXTskb9oqWXf1cvW0ZwalNVZJtt4g6RmVMmNu6cj98uby+uNv >6X2vr8Eut/KKyYf36B0ettrY5C9PtC77iJd72mffkHR1J7+9IznnpnIF/7mZyR/va7/9EU1SQavy >TBifTFo72W6j5G3bJ+uvUeru/ifL+9f9Nbny3mTvbXu38c4dmu/HYOus3XZa1cvGayXbvSbZev1k >353K/u67U/I/00rndbWxyaf2Lut59JnSgb/5wdLxTZIVV0gO3yu5/J7k2vva10mn7bDTpBKEtt2w >lOfkw5Kt1mt/bPQs378u25UrSc66Lpk4vvx76w2SdVYt3xZsOKFJg2Xx46bZedTJcT2YYzBJRq+0 >aKgds/LiIbdn3e3aDwCWRYZgLaX6dn5WG5PMemnR93reXnNc8sE9kn/+bnLQlDIUZIUmsXIwy40Y >kXz1/cmdjyaX3V06qzPndlb2mx9MNpqQbLFueb3FuqWjtdGE9ttv1vlrV54RWbSzN250uWKdlA7+ >1uuXK/c9xq7cfFs92xtonbXbTqt6+b/b7FOmcf2uwPe8fm5mcuvDyVqrlo5rj8kvD+W787HS+W5V >JwNph9ErleDQ9712x0bf5fvWZdK6XEkJH9ff3/t6wvhyM38r/duy2Xk00LL3//lAz4lm5eyk/QBg >WSOALAPO/Giy+TrJMeeVTssfv9x75Xg4lvvqb8r9EN//cHL61Yt2Chvp6be9MLtc8d550sC33+rm >4YGWp8fU55Op08uwpUU6xp0t3rbMnW6nXb30N7J/x73Pi/kLkqdfKPeRrP7yJAfbbFjup5i/YOj7 >1K5u2rXFQOq2vy/sl7z/e+V+kdErlYD2D1u0XmYg2xtK2Qd7DPZf93C0HwC82hiC9Sr3+HNlKM7n >9yv3C/z9xeTs64dvudsfSb70y+Qr72v9TUFfPcNsNl83ufSucpN0j64FySV3tt9+s4mPBlOeHhtP >TJ6fldz7+MCW69FpnbXbTqt6GahtNyx1dctDvT97YloZ4rXthu2XH2w7JJ21RYeThTU0ZYvkE28t >N/HPnZ9cdFT7ZTrd3lDK3smyXU3uDeq/7qG2HwC8Ggkgr4CuBWWoydMvNH5/5kvJjDmLvu47xGPG >nDKUpLu7zEL0ixvLz3fcJHn79mVmoUYGs9zfXn6S9A0PlOeUXHJnWcf8rsY3YK85LnnwqXL1f5/t >ytX+g04pndz7n0yO/Fmy66att993HU8+P7DyzJ1f7hPou889V5IPmlJuYv7WJeX1gu4yk9HU6cns >l9LQYOqs3XYO3b15vSTl2Ojqc/V77vzSIe0ZnjTv5alfuxYk731DuSn74j7h5baHk9dvVG6C71m+ >WZ0MpB3mdS16HLZri/7L963LduVKyixia44r+zF58/JNUCv9t9fqPBpo2ftqt+wuk5Lf/7ls+y9P >JPc/VUJUo3K+cYv27QcAy5oVjj322GNf6UIsF+4p87Xe+3hy9Dll+tWnXyhjv7fbsMwYlSTn3pT8 >8PdlSMZuW5bOz4kXJQ8/XTolL8xOTro0efTZZNUx5Wr7UWeX5adOS554PvnsOxbvrN384OCW23hi >6WCddlXywFPlivRPr0vu+Z9k/10WvwfiiWnJyZeVzx76pnIvxClXJN+8pExJeuQ7kx02SZ55MTny >rMbb77uOfXdadPraVuVZc5UyPexTL5S6e3ZG8rULy8xLkzdLdpyUbLNBmfL1tKtKJ3Hc6NLpHT8m >2X6j4amzVce23s6eW5eZnxrVy00PlJmapk4vHdmkTL37wMuzR+08Kfn2pcnv/lw68Htunbxn1+Qb >F5Vj48U5yc9vTM74SOno/v7PZR+a1cmqYzprhznzkh9fW2bz2nBCsu1r2h8bT07vXX69NZJTr+yt >y1kvtW6rzdYp09V++bwS5E64sMzW9eBTyTt2aHzvTd/yLuguZWl2Hu2zfedlH8gxuP8u5Z6O712R >nH5VKcf6qyfTZyfrrtY7lXbPuvffNdlvp+bt94rZ7thXcOPLn+P+0GQ+b4ClzLF7HTss6xmxcGGn >j1RjSM4eymj45rq7y7Sf02clK63Q+bMDBrrcnHm9nbD5XeW5Jc08O2PR+yLmdyWPTysdt56OY7vt >91/HUMrTX3d3mRZ14vhk7rxkdJPngDRabiB11m47jeplKB58qqxnUoNpaluVcSjtkLRui06Wb+aE >C8oTzefOK7N1TZ9dAvohuyV7b9d4mYFubyhlb7XsvK4SPsas3Pj4bLTuwbTfEnOwPws1jThuyfx9 >ABhuC48Znr8PAkgtSyiAwLLojGtK2Ljq6EV/fvndyWZrl/toWIIEkKoEEODVYrgCiFmwgKXOlM2T >z/w4ed93yrCzOfPKkMV37yh8AMCrnQACLHW22yh5+rTyTJWnppeHCAoeALBsEECApdJqY8sN4ADA >ssU0vAAAQDUCyFLsuRllqs5mFnQn901t/v7MueVBc6+El+YnN9zf/PVwWdL72K7c7dpgzrzyrI9m >2rXxQNY1lHU38koePwDAsksAWYod86vkPSc1fu+OR5Odv5h8/IeN3z/v5mS9I8rzCWq77eFkyjG9 >Ze//ergs6X1sV+52bXD+rckGn0q+fUnzbbRq44Gua7DrbuSVPH4AgGWbALIUO/Ggxach7bHjJske >WyUr9mnBWXOTi+8o/z5gcrLRxCVexIZ22bQ87bvZ6+GypPexXbkbtUFf+++abLth6220auOBrmuw >627klTx+AIBlmwCyFBs7KllntcV/3t1d/r/CyPIQuaQ8+OzAU5I/PdL7uRVHJjVml5/ftfjPVlwh >GTGi+evB6v/UmiW9j83K3agNGlmpzX43a+PBrGso626k1vEDACxfzIJVyW9uSz7yg3LF/EcfSy68 >PTnyrHIV/bTDk83WSU66JDn/tuTKNfiVFQAAFO5JREFUL5QnJf/k2uSCPyU3HV/WMXNuctTZyQZr >JE9OT+76W++TmL93eXLlPcnU55PHnk2+e1j5+YLu5IvnlKE048ckFx5ZttXfLQ8lP7imdFhHrZR8 >57Lk4qOSjSYk37w4ueOx8rTsUz6UvHHLssyV9yS3P5qMHFH279QPJ6/fuH1d/OLG5PhfJ5uunXzr >kOS16yf3Pp589MzkPw9M9tx68WV+fkPywuzyROzzb01uOK73vVb7+OLs5Ohzk7ErJw/9PVlv9eTr >B5Ynfv/y5uSzP0k+v1/y6X2Sc25MvnxemfL19H9pXPZWbdDOnY8mHzkzecs25WneE8cv3saz5iZf >vSBZY5USJnfaJPlf+7ZfV/96f2Laouu++t7ycL/XTEi2XC/5+m9LwLj0P0o7NNOqbp98vvGxMZhj >CQBYfvgGpJJ/2qV09FYbm6y+SnLYm0qncf01ejt0W6ybfPTNpdM2dlQJEw893buOA05O3rpt8qX9 >S+ftsWd7r1Af+a7SuT7gDckPP1Y62Enyq1uTt78+ueUr5fUJFzYu34ojS/i56I5kh42TD+xWOsGH >n5Ecf0By9dGls7jft5JpM8vN2R88PZm8WXLUu5N9tk+OP7+zujhwSrLu6snseSV8JMlW6ycbrtk4 >fMzvKh3Xf31r2dZur+39BqLVPi5cmLzjxGS3LZMTD07O+XRy+yPJe08u779vcvn2Ysbc8vr9U5JJ >ayXTZjUve6s2aOe6+5Oj3lXK8vqNG7fxP3472X+Xsp+f3zf5j1+Ue1Harau//uveYePk7r+VIXqb >TEyu/XL59uZrF7Quc7O67VrQ/NgY6LEEACxfBJCKPrxnctld5apykuy1dfkmZN7LQ5iuuCd57xvK >v9dYJdl6g6RnxNF1f02uvDfZe9vyesSI5J07LL6N/kN03rVD8qatSof/zds0n7Fpp0nJa9cr9xns >u1Ny8mHJTQ8mXd3Jb+9IzrkpGTc6eW5meTjcyismH96jfIOTlGD1lyc6r4vPvSP5/Z+T+58sr//w >l8b7k5SAcPffyjcWSfLxt/TWS6t9vPiO5OYHS9BIynCqw/dKLr8nufa+8rPRKy0aIMas3DxQdNoG >jZx0SQk375/S+7P+bXzF3aUOd92svN5hk+SsI5LN12m/rv76r3vC+GTS2uUBf2/bvgTfN2/TW//N >NKvbs29ofmwM9FgCAJYvhmBVdOCU5HM/Ta75P8ne2yX3PF7Cx+V3l6E0Sbly3WPEiN7O8B/vS7Ze >P1l1bO/7Y1dePHC0er3amGTWS83LN3ql0lHtcfODZdjMFi8/gXqLdUtnfqMJZb1ffX8ZCnTZ3SUg >zJzbSS0U79oh2XhicvrVybc/kPz29uS4Axp/ds1xyQf3SP75u8lBU8pQrxX6ROdm+3jrw8laq5bg >0WPyy537Ox8rHeuB6LQN+rvwT8nc+cm9X1/8vb5tfN1fk8mbL/r+Ibt1vq5W607Kv/u+Hje6fJPV >bh09+tZtq2MjGdixBAAsXwSQitZYpVwR/ul1yfjRye6vLVfcz74+eX5W77cfjUx9Ppk6vQwr6tsp >7N/3Hc6bhl+YXa6g7zyp8ftf/U251+D7Hy5B4voBPOdj5MjkiL3LkJ7jDyid6tXGNv/8mR8t3wQc >c14JD3/8crmHopX5C5KnXyj3G6y+SvnZNhuWIULzF3Re1h6dtkF/e29X6ubjP0zO+2zzzz07o9xT >MxzrWtLaHRtD/TwAsOwyBKuyD+2R/PrW5NSryr8/+KYyDOuyu8oN6s1sPLGElHsfb73+ha3fHpDN >100uvavcyN2ja0FyyZ3lXoov/TL5yvsGP7vV4XuWh+t96r+Tt7yu+ecef648gO/z+5Ubqv/+Yglt >7Wy7YamPWx7q/dkT08pQoL5T2nZ1L7ZoQ522QX9jVk5++onSzmf+rvnnNl273FPSd/3zu5IbHxj4 >upa0VsfGcHweAFh2CSCV7bN9Mm5UMmFcmVVor23KMKEt1l28Iz9jThny0t1dhh6NWjH51ssPolvQ >Xa6WT52ezH55WMya45IHnypX6J98Ppn5UllHj5kvtR4mNa9r0fcP3b1cuT7olBIA7n8yOfJnya6b >Jn97+QnZNzxQQsQld5ayzu8q5Z0zL3mpz/S8/V8nZYjOQVOSX92SvHvH5uV6cU6ZOSsp95y8ffsy >m1PPPjXbx/e+oXTqL+7Tyb3t4eT1G5UbyZNkl0nlXpQZc8r9F/c/VWa3alTuTtqgUZ12d5f7Io55 >T/KZH5fw1qNvGx+8W7LKqOTg75fhWNfel/zrj5LXbdDZuvrru+6kfMu0oHvR91t9E9SqblsdGz1l >7fRYSkr9HfGjoT25HQB4dVjh2GOPPfaVLsRy4Z4yb+zIkeUK/hF7l8AwYkSZCehDe5YhWj1ufjA5 >6dLk0WeTVceUbwi2e02ZPvW0q0qnedzo0oEcPybZfqNydf/ky0onbkF3Geo1fVaZBerJ55MTL0oe >frp0wLdaf9HinXVd8oPflSvwG05Itn1NKd8mE5NTrki+eUmZpvbId5abozeeWELHaVeV7X3irWV7 >9/xPmaL2GxcljzxThknN61r09Q4b997Dsea40lFtdUP1My+WKYtHrZRMnZY88Xzy2XeUp3X/8PfN >9/F1ryk3jH/jotL5fXFO8vMbkzM+UrablCD4vSuS068qdbb+6sn02cm6q5UhUV//bW+599i6fRv0 >de5Nyf++prTL5M2TKVuUoWq/uLHsy4gs2sZv3qYEorOvL2X6431llqtJa7df1z/0u3ek//Ez66Uy >He5TL5S6enZG8rULyyxZkzdbfGrmc29qXbdTtmx+bAz0WEqSB58us2TtsmlnUzmzhG137CtdguXK >cX84rv2HAJYCx+517LCsZ8TChf0f7cYScXbv1xsvzS+dxmavW+nuLtPEThyfzJ2XjO73DIpnZ7S/ >N2Kg5nclj08roWOFft+ZzZnX+xyM+V3JSgO8q+iMa0rH9G3bN/9Md3cJbtNnlYfx9UwxPBAPPlXK >PqnBMy/mdZXwMWblzvahXRsM1cKFJaQO5SGCtbQ6Ngb6+WdeLN8GshQ42J+FmkYc55GfwKvDwmOG >5++DAFLL2f7A9DVjTgldh3w/Ofczw/OUdGCYCCBVCSDAq8VwBRD3gFDdqVcmq30k2exz5cGLwgcA >wPLDNLxUd+CUEjr+cefyQDwAAJYfhmABwCvIECzg1cIQLAAA4FVHAAEAAKoRQAAAgGoEEAAAoBoB >BAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoR >QAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAa >AQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAakYsXLhw4StdCAAAYPngGxAA >AKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgAB >AACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQ >AACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYA >AQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoE >EAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhG >AAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBq >BBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACo >RgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACA >agQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAA >qEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAA >gGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQA >AKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAA >AIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEE >AACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFA >AACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoB >BAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoR >QAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAa >AQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACq >EUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACg >GgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAA >qhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAA >oBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEA >AKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAA >AKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgAB >AACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQ >AACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYA >AQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoE >EAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhG >AAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBq >BBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACo >RgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACA >agQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAA >qEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAA >gGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQA >AKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAA >AIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEE >AACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFA >AACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoB >BAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoR >QAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAa >AQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACq >EUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACg >GgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAA >qhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAA >oBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAAAKAaAQQAAKhGAAEA >AKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgABAACqEUAAAIBqBBAA >AKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQAACgGgEEAACoRgAB >AACqEUAAAIBqBBAAAKAaAQQAAKhGAAEAAKoRQAAAgGoEEAAAoBoBBAAAqEYAAQAAqhFAAACAagQQ >AACgGgEEAACoRgABAACqEUAAAIBqBBAAAKCa/x+bamOVDVGKwgAAAABJRU5ErkJggg== >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Formatted Diff
|
Diff
Attachments on
bug 83614
:
136524
|
136607
|
136704
|
136707