forked from mirrors/gecko-dev
Automatic update from web-platform-tests Add fuzzy metadata for transforms tests (#35634) -- wpt-commits: 2fa804e7b71d77e7b5c78f25d055ef3e716e8e14 wpt-pr: 35634
33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Test (Transforms): Transform of Background Image (nested flip)</title>
|
|
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
|
|
<link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property">
|
|
<link rel="reviewer" title="Dirk Schulze" href="mailto:dschulze@adobe.com"> <!-- 2012-04-17 -->
|
|
<meta name="assert" content="Background images fall within the element's
|
|
border box, so they need to be transformed along with it. This file tests
|
|
that a transform on the parent works correctly, not just on the element
|
|
itself.">
|
|
<meta name="flags" content="svg">
|
|
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-400">
|
|
<link rel="match" href="transform-background-ref-1.html">
|
|
<style>
|
|
div {
|
|
width: 200px;
|
|
height: 100px;
|
|
}
|
|
body > div {
|
|
transform: scale(-1);
|
|
}
|
|
body > div > div {
|
|
background: url(support/transform-triangle-down.svg);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<div></div>
|
|
</div>
|
|
</body>
|
|
</html>
|