https://github.com/mozilla/gecko-dev
Raw File
Tip revision: c0b9807925eb4dd59bb8cd65778748761369d90f authored by ffxbld on 21 July 2011, 17:53:16 UTC
Added tag FIREFOX_6_0b3_BUILD1 for changeset 1e49740f65a9. CLOSED TREE a=release
Tip revision: c0b9807
multicolor-image-4.html
<!DOCTYPE html>
<html lang="en-US">
<head>
  <title>test of -moz-border-image</title>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <style type="text/css">

  /**
   * This is a copy of multicolor-image-2.html with a few changes:
   *   (1) the whole thing is inside a -moz-transform
   *   (2) different border-images have different values for
   *       repeat/stretch/round
   */

  body {
    width: 100px;
    -moz-transform: translate(100px, 100px) scale(2,3);
    -moz-transform-origin: 0 0;
    -khtml-transform: translate(100px, 100px) scale(2,3);
    -khtml-transform-origin: 0 0;
    transform: translate(100px, 100px) scale(2,3);
    transform-origin: 0 0;
  }

  div {
    background: red; /* fail if this shows through */
    background-image: url('3x3multicolor.png'); /* fail if this shows through */
    margin-bottom: 2px;
  }

  div.one {
    -moz-border-image: url(10x5multicolor.png) 2 2 1 3 stretch;
    -khtml-border-image: url(10x5multicolor.png) 2 2 1 3 stretch;
    border-image: url(10x5multicolor.png) 2 2 1 3 stretch;
    border-width: 4px 6px 8px 11px;
    width: 9px;
    height: 1px;
  }

  div.two {
    -moz-border-image: url(10x5multicolor.png) 40% 20% 20% 30% repeat;
    -khtml-border-image: url(10x5multicolor.png) 40% 20% 20% 30% repeat;
    border-image: url(10x5multicolor.png) 40% 20% 20% 30% repeat;
    border-width: 3px 1px 0px 4px;
    width: 2px;
    height: 17px;
  }

  div.three {
    -moz-border-image: url(10x5multicolor.png) 40% 2 1 30% round;
    -khtml-border-image: url(10x5multicolor.png) 40% 2 1 30% round;
    border-image: url(10x5multicolor.png) 40% 2 1 30% round;
    border-width: 10px 2px 5px 3px;
    width: 17px;
    height: 8px;
  }

  div.four {
    -moz-border-image: url(10x5multicolor.png) 2 2 20% 30% stretch round;
    -khtml-border-image: url(10x5multicolor.png) 2 2 20% 30% stretch round;
    border-image: url(10x5multicolor.png) 2 2 20% 30% stretch round;
    border-width: 5px 7px 1px 0;
    width: 8px;
    height: 5px;
  }

  div.five {
    border-width: 5px 6px 7px 8px; /* ignored */
    border-width: 5px 6px 7px 8px ! important; /* ignored */
    -moz-border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 8px 10px 2px repeat stretch;
    -khtml-border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 8px 10px 2px repeat stretch;
    border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 8px 10px 2px repeat stretch;
    border-width: 5px 6px 7px 8px; /* ignored */
    border-width: 5px 6px 7px 8px ! important; /* ignored */
    width: 0;
    height: 8px;
  }
  div.five {
    border-width: 5px 6px 7px 8px; /* ignored */
    border-width: 5px 6px 7px 8px ! important; /* ignored */
  }

  div.six {
    border-width: 5px 6px 7px 8px; /* ignored */
    -moz-border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 0 10px 2px round repeat;
    -khtml-border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 0 10px 2px round repeat;
    border-image: url(10x5multicolor.png) 40% 2 1 30% / 4px 0 10px 2px round repeat;
    width: 17px;
    height: 0;
  }

  div.seven {
    -moz-border-image: url(10x5multicolor.png) 40% 2 1 30% stretch repeat;
    -khtml-border-image: url(10x5multicolor.png) 40% 2 1 30% stretch repeat;
    border-image: url(10x5multicolor.png) 40% 2 1 30% stretch repeat;
    border-width: 1px 3px 0 0;
    width: 17px;
    height: 0;
  }

  </style>
</head>
<body>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<div class="four"></div>
<div class="five"></div>
<div class="six"></div>
<div class="seven"></div>
</body>
</html>
back to top