summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-backgrounds/border-image-007.html
blob: 41ac9dac37fb5b11c09be99b1a325f9190e00f8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<!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:jeremie@patonnier.net">
  <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>