Changeset 94058 in webkit
- Timestamp:
- Aug 30, 2011, 1:04:34 AM (15 years ago)
- Location:
- branches/chromium/835
- Files:
-
- 1 edited
- 2 copied
-
LayoutTests/svg/custom/click-internal-anchor-with-use-crash-expected.txt (copied) (copied from trunk/LayoutTests/svg/custom/click-internal-anchor-with-use-crash-expected.txt )
-
LayoutTests/svg/custom/click-internal-anchor-with-use-crash.xhtml (copied) (copied from trunk/LayoutTests/svg/custom/click-internal-anchor-with-use-crash.xhtml )
-
Source/WebCore/svg/SVGAElement.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/chromium/835/Source/WebCore/svg/SVGAElement.cpp
r90680 r94058 171 171 } 172 172 // Only allow navigation to internal <view> anchors. 173 if ( !targetElement->hasTagName(SVGNames::viewTag))173 if (targetElement && !targetElement->hasTagName(SVGNames::viewTag)) 174 174 return; 175 175 }
Note:
See TracChangeset
for help on using the changeset viewer.