Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(130)

Side by Side Diff: third_party/WebKit/LayoutTests/svg/custom/svg-image-par-none-no-intrinsic-size.html

Issue 1720853002: Remove Image::computeIntrinsicDimensions() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@add-and-use-updateconcretesize-upload
Patch Set: Avoid using the size of the error image. Null-check in ImageResource saved the day in previous patc… Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <svg width="100" height="200" style="background-color: red"> 2 <svg width="100" height="200" style="background-color: red">
3 <image width="100" height="200" preserveAspectRatio="none" 3 <image width="100" height="200" preserveAspectRatio="none"
4 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'><rect width='100' height='200' fill='green'/></svg>"/> 4 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 200'><rect width='100' height='200' fill='green'/></svg>"/>
5 </svg> 5 </svg>
6 <svg width="100" height="200">
7 <image width="100" height="200" preserveAspectRatio="none"
8 xlink:href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' vie wBox='0 0 100 100'><circle r='50' cx='50' cy='50' fill='green'/></svg>"/>
9 </svg>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698