https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ef3b93490bc570642447a090c040a9455370c467 authored by B2G Bumper Bot on 25 January 2016, 11:02:06 UTC
Bumping manifests a=b2g-bump
Tip revision: ef3b934
border-image-element.html
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>test of border-image-source: element</title>
<style>
div.border {
  border: 30px solid black;
  border-image: -moz-element(#src);
  width: 180px;
  height: 180px;
}
div.border2 {
  border: 30px solid black;
  border-image: -moz-element(#src);
  border-image-slice: 5;
  width: 180px;
  height: 180px;
}
</style>
</head>
<body>
<div class="border"></div><br>
<div class="border2"></div><br>
<img id="src" src="diamonds.png">
</body>
</html>
back to top