mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
24 lines
854 B
HTML
24 lines
854 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test (Transforms): Transform of Background Image (flip)</title>
|
|
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor">
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help">
|
|
<link href="mailto:dschulze@adobe.com" rel="reviewer" title="Dirk Schulze"> <!-- 2012-04-17 -->
|
|
<meta content="Background images fall within the element's
|
|
border box, so they need to be transformed along with it." name="assert">
|
|
<meta content="svg" name="flags">
|
|
<link href="reference/transform-background-ref-1.htm" rel="match">
|
|
<style>
|
|
div {
|
|
width: 200px;
|
|
height: 100px;
|
|
background: url(support/transform-triangle-down.svg);
|
|
transform: scale(-1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
|
|
|
|
</body></html> |