mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
update expectations for tests using SVG's natural dimensions
/html/semantics/embedded-content/the-img-element/naturalWidth-naturalHeight.html The two failures are the cases where the SVG's root element doesn't have an explicit width & height. The issue is related to how resvg handles such cases - we rely on resvg to provide the natural dimensions as the 'viewbox', 'width' and 'height' are not directly exposed in the parsed tree. resvg internally defaults to a width/height of 100x100 (can be overriden via usvg::Options, but doesn't have any effect if viewBox is not present). It is worth noting that all major browsers fail these cases. https://wpt.fyi/results/html/semantics/embedded-content/the-img-element/naturalWidth-naturalHeight.html?label=experimental&label=master&aligned /css/css-flexbox/align-items-007.html /html/rendering/replaced-elements/svg-embedded-sizing/svg-in-img-auto.html /html/rendering/replaced-elements/svg-embedded-sizing/svg-in-img-fixed.html /html/rendering/replaced-elements/svg-embedded-sizing/svg-in-img-percentage.html The failures are related to the issue explained above. In particular, we are currently not distinguing the case where viewBox is present but width, height are not. As resvg doesn't expose that, we use the viewbox values as natural dimentions rather than treating them as absent. /css/css-backgrounds/background-size/vector/tall--contain--height.html Similar to the above the cases this is related to resvg and lack of distinction between SVGs with explicit height & weight. This test has an SVG with 'width' of 8px but only percentage 'height'. resvg takes the missing height from viewbox (1px), so we render this as if the SVG had an intrinsic dimensions of 8x1, scaled by the container's width, but the test expects that the SVG is treated as no natural dimensions. Chrome, Edge and Safari fail this test. https://wpt.fyi/results/css/css-backgrounds/background-size/vector/tall--contain--height.html?label=experimental&label=master&aligned /css/css-backgrounds/background-size/vector/tall--contain--width.html Same reason as above, except with width missing instead of height. Firefox and Safari fail this test. /css/css-backgrounds/background-size/vector/wide--contain--height.html /css/css-backgrounds/background-size/vector/wide--contain--width.html Same reason as the two 'tall--contain--' tests above. /css/css-backgrounds/background-size/vector/zero-height-ratio-5px-auto.html.ini /css/css-backgrounds/background-size/vector/zero-height-ratio-auto-auto.html.ini /css/css-backgrounds/background-size/vector/zero-height-ratio-contain.html.ini /css/css-backgrounds/background-size/vector/zero-height-ratio-cover.html.ini /css/css-backgrounds/background-size/vector/zero-ratio-no-dimensions-5px-auto.html.ini /css/css-backgrounds/background-size/vector/zero-ratio-no-dimensions-auto-5px.html.ini /css/css-backgrounds/background-size/vector/zero-ratio-no-dimensions-auto-auto.html.ini /css/css-backgrounds/background-size/vector/zero-ratio-no-dimensions-contain.html.ini /css/css-backgrounds/background-size/vector/zero-ratio-no-dimensions-cover.html.ini /css/css-backgrounds/background-size/vector/zero-width-ratio-5px-auto.html.ini /css/css-backgrounds/background-size/vector/zero-width-ratio-auto-auto.html.ini /css/css-backgrounds/background-size/vector/zero-width-ratio-contain.html.ini /css/css-backgrounds/background-size/vector/zero-width-ratio-cover.html.ini All these tests assert that an SVG with no height specified and a zero-ratio in the viewBox (either last or second to last component is zero) is not rendered. Since resvg defaults the height and width to 100px, we are not able to distinguish this case. Signed-off-by: Mukilan Thiyagarajan <mukilan@igalia.com>
This commit is contained in:
parent
af21bdd261
commit
93f4ff8918
22 changed files with 978 additions and 12 deletions
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/tall--contain--height.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/tall--contain--height.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[tall--contain--height.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/tall--contain--width.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/tall--contain--width.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[tall--contain--width.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/wide--contain--height.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/wide--contain--height.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[wide--contain--height.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/wide--contain--width.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/wide--contain--width.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[wide--contain--width.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-height-ratio-5px-auto.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-height-ratio-auto-auto.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-height-ratio-contain.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-height-ratio-contain.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[zero-height-ratio-contain.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-height-ratio-cover.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-height-ratio-cover.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[zero-height-ratio-cover.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-ratio-no-dimensions-5px-auto.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-ratio-no-dimensions-auto-5px.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-ratio-no-dimensions-auto-auto.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-ratio-no-dimensions-contain.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-ratio-no-dimensions-cover.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-5px-auto.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-5px-auto.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[zero-width-ratio-5px-auto.html]
|
||||
expected: FAIL
|
|
@ -0,0 +1,2 @@
|
|||
[zero-width-ratio-auto-auto.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-contain.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-contain.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[zero-width-ratio-contain.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-cover.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-backgrounds/background-size/vector/zero-width-ratio-cover.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[zero-width-ratio-cover.html]
|
||||
expected: FAIL
|
2
tests/wpt/meta/css/css-flexbox/align-items-007.html.ini
vendored
Normal file
2
tests/wpt/meta/css/css-flexbox/align-items-007.html.ini
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
[align-items-007.html]
|
||||
expected: FAIL
|
|
@ -1,4 +1,480 @@
|
|||
[svg-in-img-auto.html]
|
||||
expected: TIMEOUT
|
||||
[placeholder: 'img', ]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '100', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderWidthAttr: '50%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,4 +1,144 @@
|
|||
[svg-in-img-fixed.html]
|
||||
expected: TIMEOUT
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', ]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100px', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,4 +1,318 @@
|
|||
[svg-in-img-percentage.html]
|
||||
expected: TIMEOUT
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', ]
|
||||
expected: TIMEOUT
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '200', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '200', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', containerHeightStyle: '400px', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '100', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderWidthAttr: '50%', placeholderHeightAttr: '100%', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
||||
[placeholder: 'img', containerWidthStyle: '400px', placeholderHeightAttr: '100%', svgViewBoxAttr: '0 0 100 200', svgWidthAttr: '25%', svgHeightAttr: '25%', ]
|
||||
expected: FAIL
|
||||
|
|
|
@ -1,18 +1,18 @@
|
|||
[naturalWidth-naturalHeight.html]
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width/height in pixels]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width in pixels; height unspecified]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width in pixels; percentage height]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width/height in pixels; viewBox]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width in pixels; height unspecified; viewBox]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width unspecified; height in pixels; viewBox]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, no natural dimensions]
|
||||
expected: FAIL
|
||||
|
||||
[HTMLImageElement.prototype.naturalWidth/naturalHeight, SVG image, width/height unspecified; viewBox]
|
||||
expected: FAIL
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue