| <!DOCTYPE html> | |
| <meta charset="UTF-8"> | |
| <title>CSS Backgrounds and Borders Test: border-image-width with various values (basic)</title> | |
| <link rel="author" title="Jérémie Patonnier" href="mailto:[email protected]"> | |
| <link rel="help" href="http://www.w3.org/TR/css3-background/#border-image-width"> | |
| <link rel="match" href="reference/border-image-007-ref.html"> | |
| <meta name="flags" content=""> | |
| <!-- | |
| This is a follow-up to | |
| Pull Request 8788: Update css-backgrounds/border-image tests | |
| https://github.com/web-platform-tests/wpt/pull/8788 | |
| Credit should go to Chris Nardi for trying to fix | |
| 16 border-image tests with 2 relevant commits | |
| --> | |
| <style> | |
| div.outer-parent | |
| { | |
| border: red solid 40px; | |
| border-image-slice: 24; | |
| border-image-source: url("support/50x50-green.png"); | |
| height: 12px; | |
| margin-bottom: 16px; | |
| padding: 2px 4px 6px 8px; | |
| width: 8px; | |
| } | |
| div.inner-child | |
| { | |
| background-color: blue; | |
| height: 100%; | |
| width: 100%; | |
| } | |
| div#first-subtest | |
| { | |
| border-image-width: 1px; | |
| } | |
| div#second-subtest | |
| { | |
| border-image-width: 1px 5px; | |
| } | |
| div#third-subtest | |
| { | |
| border-image-width: 1px 5px 10px; | |
| } | |
| div#fourth-subtest | |
| { | |
| border-image-width: 1px 5px 10px 15px; | |
| } | |
| </style> | |
| <div class="outer-parent" id="first-subtest"><div class="inner-child"></div></div> | |
| <div class="outer-parent" id="second-subtest"><div class="inner-child"></div></div> | |
| <div class="outer-parent" id="third-subtest"><div class="inner-child"></div></div> | |
| <div class="outer-parent" id="fourth-subtest"><div class="inner-child"></div></div> |