OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../fast/js/resources/js-test-pre.js"></script> | 3 <script src="../../resources/js-test.js"></script> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <p id="description"></p> | 6 <p id="description"></p> |
7 <div id="console"></div> | 7 <div id="console"></div> |
8 <script> | 8 <script> |
9 | 9 |
10 description("This tests the parser for preserve aspect ratio attribute values.")
; | 10 description("This tests the parser for preserve aspect ratio attribute values.")
; |
11 | 11 |
12 var imageElement = document.createElementNS("http://www.w3.org/2000/svg", "image
"); | 12 var imageElement = document.createElementNS("http://www.w3.org/2000/svg", "image
"); |
13 | 13 |
(...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 parsePreserveAspectRatio("slice", "SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATI
O_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); | 123 parsePreserveAspectRatio("slice", "SVGPreserveAspectRatio.SVG_PRESERVEASPECTRATI
O_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); |
124 parsePreserveAspectRatio("xminymin", "SVGPreserveAspectRatio.SVG_PRESERVEASPECTR
ATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); | 124 parsePreserveAspectRatio("xminymin", "SVGPreserveAspectRatio.SVG_PRESERVEASPECTR
ATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); |
125 parsePreserveAspectRatio("refer xMinYMin slice", "SVGPreserveAspectRatio.SVG_PRE
SERVEASPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); | 125 parsePreserveAspectRatio("refer xMinYMin slice", "SVGPreserveAspectRatio.SVG_PRE
SERVEASPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); |
126 parsePreserveAspectRatio("xMinYMin defer", "SVGPreserveAspectRatio.SVG_PRESERVEA
SPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); | 126 parsePreserveAspectRatio("xMinYMin defer", "SVGPreserveAspectRatio.SVG_PRESERVEA
SPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); |
127 parsePreserveAspectRatio("slice xMinYMin", "SVGPreserveAspectRatio.SVG_PRESERVEA
SPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); | 127 parsePreserveAspectRatio("slice xMinYMin", "SVGPreserveAspectRatio.SVG_PRESERVEA
SPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSLICE_MEET"); |
128 parsePreserveAspectRatio("xMinYMin" + String.fromCharCode(0xa0), "SVGPreserveAsp
ectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSL
ICE_MEET"); | 128 parsePreserveAspectRatio("xMinYMin" + String.fromCharCode(0xa0), "SVGPreserveAsp
ectRatio.SVG_PRESERVEASPECTRATIO_XMIDYMID", "SVGPreserveAspectRatio.SVG_MEETORSL
ICE_MEET"); |
129 | 129 |
130 </script> | 130 </script> |
131 </body> | 131 </body> |
132 </html> | 132 </html> |
OLD | NEW |