Changeset 143379 in webkit
- Timestamp:
- Feb 19, 2013, 1:48:33 PM (12 years ago)
- Location:
- branches/chromium/1364
- Files:
-
- 5 edited
- 3 copied
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/1364/LayoutTests/platform/chromium/TestExpectations
r142740 r143379 3620 3620 webkit.org/b/94242 [ Android Debug ] media/track/track-cues-sorted-before-dispatch.html [ Crash Pass Timeout ] 3621 3621 3622 # Needs a rebaseline after WK108429 lands. 3623 webkit.org/b/108429 svg/custom/text-ctm.svg [ Pass Failure ] 3624 webkit.org/b/108429 svg/repaint/svgsvgelement-repaint-children.html [ Pass Failure ] 3625 3622 3626 # Chromium still has the CC toggle button, not the menu of tracks. 3623 3627 webkit.org/b/101670 media/video-controls-captions-trackmenu.html [ Skip ] -
branches/chromium/1364/LayoutTests/platform/mac/TestExpectations
r141158 r143379 1156 1156 webkit.org/b/104595 fast/css/empty-generated-content.html [ Failure ] 1157 1157 1158 # Needs a rebaseline after WK108429 lands. 1159 webkit.org/b/108429 svg/custom/text-ctm.svg [ Pass Failure ] 1160 1158 1161 webkit.org/b/93247 [ Debug ] fast/lists/list-marker-remove-crash.html [ Crash ] 1159 1162 -
branches/chromium/1364/LayoutTests/platform/qt/TestExpectations
r137662 r143379 2337 2337 webkit.org/b/99870 svg/custom/pattern-scaling.svg [ Pass ImageOnlyFailure Missing ] 2338 2338 2339 # Needs a rebaseline after WK108429 lands. 2340 webkit.org/b/108429 svg/custom/text-ctm.svg [ Pass Failure ] 2341 2339 2342 # Disable webaudio codec tests, including proprietary codecs. 2340 2343 webkit.org/b/88794 webaudio/codec-tests -
branches/chromium/1364/LayoutTests/platform/win/TestExpectations
r137662 r143379 2035 2035 fast/forms/time-multiple-fields 2036 2036 fast/forms/week-multiple-fields 2037 2038 # Needs a rebaseline after WK108429 lands. 2039 svg/custom/text-ctm.svg 2037 2040 2038 2041 # Require rebaseline after https://bugs.webkit.org/show_bug.cgi?id=84286 -
branches/chromium/1364/Source/WebCore/rendering/svg/RenderSVGViewportContainer.cpp
r109097 r143379 115 115 116 116 if (oldViewport != m_viewport) { 117 m_didTransformToRootUpdate = true;118 117 setNeedsBoundariesUpdate(); 119 118 setNeedsTransformUpdate(); … … 123 122 bool RenderSVGViewportContainer::calculateLocalTransform() 124 123 { 124 m_didTransformToRootUpdate = m_needsTransformUpdate || SVGRenderSupport::transformToRootChanged(parent()); 125 125 if (!m_needsTransformUpdate) 126 126 return false;
Note:
See TracChangeset
for help on using the changeset viewer.