Status: FAIL | Duration: 16ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/border-image-slice-007.htm
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Test: The 'border-image-slice' property with the 'fill' keyword</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> <!-- Test rehabilitated by Gérard Talbot 2020-05-27 and 2020-09-28 --> <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-image-slice"> <link rel="match" href="reference/border-image-slice-007-ref.html"> <meta name="fuzzy" content="maxDifference=0-102;totalPixels=0-5316"> <meta name="assert" content="This test checks that the 'fill' keyword, if present, causes the middle part of the border-image to be preserved."> <style> div { background-color: orange; border-color: red; border-style: double; border-width: 40px; border-image-slice: 40% 30% 20% 10% fill; /* The original test was using 'border-image-slice: 40% 15% 20% 5% fill'. */ border-image-source: url("support/9grid40-30-20-10-green.png"); /* The top side uses 3 blue borders of 24px wide interleaved with 2 transparent areas of 24px wide. So: 5 times 24px == 120px which is 40% of 300px The right side uses 3 blue borders of 18px wide interleaved with 2 transparent areas of 18px wide. So: 5 times 18px == 90px which is 30% of 300px The bottom side uses 3 blue borders of 4px wide interleaved with 2 transparent areas of 12px wide. So: 5 times 12px == 60px which is 20% of 300px The left side uses 3 blue borders of 6px wide interleaved with 2 transparent areas of 6px wide. So: 5 times 6px == 30px which is 10% of 300px */ height: 100px; margin: 50px; width: 200px; } </style> <p>Test passes if there is a filled green rectangle inside 3 blue borders interleaved with 2 orange borders and <strong>no red</strong>. <div></div>
/css/css-backgrounds/reference/border-image-slice-007-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Reference Test</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <style> div#outer { background-color: orange; border: blue double 24px; margin: 50px; padding: 8px; width: 216px; } div#inner { background-color: green; border: blue solid 8px; height: 100px; } </style> <p>Test passes if there is a filled green rectangle inside 3 blue borders interleaved with 2 orange borders and <strong>no red</strong>. <div id="outer"> <div id="inner"></div> </div>