mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
21 lines
933 B
HTML
21 lines
933 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Test (Transforms): scale(-1) On Body With Background</title>
|
|
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor" />
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#transform-rendering" rel="help" />
|
|
<meta content="This is like transform-root-bg-002.html,
|
|
except that the transform is specified on the body element, not just the
|
|
background. The background gets lifted to the root element, but the
|
|
transform does not, so the transform has no effect." name="assert" />
|
|
<link href="reference/transform-root-bg-004-ref.xht" rel="match" />
|
|
<style>
|
|
body {
|
|
background: url(support/transform-triangle-left.svg);
|
|
transform: scale(-1);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
</body></html> |