servo/tests/wpt/css-tests/css-images-3_dev/xhtml1/object-fit-none-png-001c.xht

90 lines
No EOL
3.5 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/
--><html class="reftest-wait" xmlns="http://www.w3.org/1999/xhtml"><head>
<meta charset="utf-8" />
<title>CSS Test: 'object-fit: none' on canvas element, with a PNG image and with various 'object-position' values</title>
<link href="mailto:dholbert@mozilla.com" rel="author" title="Daniel Holbert" />
<link href="http://www.w3.org/TR/css3-images/#sizing" rel="help" />
<link href="http://www.w3.org/TR/css3-images/#the-object-fit" rel="help" />
<link href="http://www.w3.org/TR/css3-images/#the-object-position" rel="help" />
<link href="reference/object-fit-none-png-001-ref.xht" rel="match" />
<style type="text/css">
canvas {
border: 1px dashed gray;
padding: 1px;
object-fit: none;
image-rendering: pixelated;
float: left;
}
.bigWide {
width: 48px;
height: 32px;
}
.bigTall {
width: 32px;
height: 48px;
}
.small {
width: 8px;
height: 8px;
}
br { clear: both; }
.tr { object-position: top right }
.bl { object-position: bottom left }
.tl { object-position: top 25% left 25% }
.br { object-position: bottom 1px right 2px }
.tc { object-position: top 3px center }
.cr { object-position: center right 25% }
</style>
<script>
function drawImageToCanvases(imageURI) {
var image = new Image();
image.onload = function() {
var canvasElems = document.getElementsByTagName("canvas");
for (var i = 0; i &lt; canvasElems.length; i++) {
var ctx = canvasElems[i].getContext("2d");
ctx.drawImage(image, 0, 0);
}
document.documentElement.removeAttribute("class");
}
image.src = imageURI;
}
</script>
</head>
<body onload="drawImageToCanvases('support/colors-16x8.png')">
<!-- big/wide: -->
<canvas width="16" class="bigWide tr" height="8"></canvas>
<canvas width="16" class="bigWide bl" height="8"></canvas>
<canvas width="16" class="bigWide tl" height="8"></canvas>
<canvas width="16" class="bigWide br" height="8"></canvas>
<canvas width="16" class="bigWide tc" height="8"></canvas>
<canvas width="16" class="bigWide cr" height="8"></canvas>
<canvas width="16" class="bigWide" height="8"></canvas>
<br />
<!-- big/tall: -->
<canvas width="16" class="bigTall tr" height="8"></canvas>
<canvas width="16" class="bigTall bl" height="8"></canvas>
<canvas width="16" class="bigTall tl" height="8"></canvas>
<canvas width="16" class="bigTall br" height="8"></canvas>
<canvas width="16" class="bigTall tc" height="8"></canvas>
<canvas width="16" class="bigTall cr" height="8"></canvas>
<canvas width="16" class="bigTall" height="8"></canvas>
<br />
<!-- small: -->
<canvas width="16" class="small tr" height="8"></canvas>
<canvas width="16" class="small bl" height="8"></canvas>
<canvas width="16" class="small tl" height="8"></canvas>
<canvas width="16" class="small br" height="8"></canvas>
<canvas width="16" class="small tc" height="8"></canvas>
<canvas width="16" class="small cr" height="8"></canvas>
<canvas width="16" class="small" height="8"></canvas>
<br />
</body></html>