Bug 1649121: part 48) Rename `MakeEmpty` in `ContentIteratorBase::InitInternal`....
[gecko.git] / layout / reftests / svg / image / image-scaling-01.svg
blob449101a4d676f5f105f91cb25917dba5aa082630
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=421780
7 Test related to bug 421780; make sure that 1-pixel, single-colour images
8 are correctly scaled to the right size.
10 This test makes sure that images aren't sized too big; it takes a 100%
11 width lime rect, overlaid with a 183x183 width stretched red image,
12 overlaid with a 183x183 lime rect.
14 183 in particular is used because 183*183 > 2^16, and we can easily run
15 into double-scaling bugs that will overflow in pixman.
16 -->
18 <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
20 <title> Ensure images aren't scaled too big </title>
22 <rect width="100%" height="100%" fill="lime"/>
23 <image width="183" height="183" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAAXNSR0IArs4c6QAAAAxJREFUCNdj+M/AAAADAQEAGN2NsAAAAABJRU5ErkJggg"/>
24 <rect width="183" height="183" fill="lime"/>
26 </svg>