Status: PASS | Duration: 91ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-backgrounds/border-image-image-type-001.htm
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>CSS Backgrounds and Borders Test: The 'border-image-source' property with an SVG image as a value and the 'border-image-slice' property with four number values</title> <link rel="author" title="Microsoft" href="http://www.microsoft.com/" /> <link rel="help" href="http://www.w3.org/TR/css3-background/#the-border-image-slice" /> <link rel="match" href="reference/border-image-image-type-001-ref.html" /> <meta name="flags" content="svg" /> <meta name="assert" content="This test checks that the SVG image used for the border image is sliced into nine regions with inward offsets of: '40 30 20 10' vector coordinates from the top, right, bottom, and left edges of the image set by the 'border-image-slice' property." /> <meta name="fuzzy" content="maxDifference=0-75; totalPixels=0-600"/> <style type="text/css"> div { border: 50px double red; border-image-slice: 40 30 20 10; border-image-source: url("support/9-colored-areas-40-30-20-10.svg"); height: 100px; width: 100px; } </style> </head> <body> <p>Test passes if there is an hollow square with thick borders made of 8 different colors (yellow, blue, aqua, orange, teal, fuchsia, purple and black) and if there is <strong>no red</strong>.</p> <div></div> </body> </html>
/css/css-backgrounds/reference/border-image-image-type-001-ref.html
<!DOCTYPE html> <meta charset="UTF-8"> <title>CSS Reftest reference</title> <link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <style> div { border: 50px double red; border-image-slice: 20 15 10 5; border-image-source: url("../support/9-colored-areas-40-30-20-10.png"); height: 100px; width: 100px; } </style> <p>Test passes if there is an hollow square with thick borders made of 8 different colors (yellow, blue, aqua, orange, teal, fuchsia, purple and black) and if there is <strong>no red</strong>. <div></div>