mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
24 lines
815 B
HTML
24 lines
815 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Test (Transforms): matrix()/scale()</title>
|
|
<link href="mailto:keith@keithschwarz.com" rel="author" title="Keith Schwarz">
|
|
<link href="mailto:ayg@aryeh.name" rel="author" title="Aryeh Gregor">
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#two-d-transform-functions" rel="help">
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#funcdef-matrix" rel="help">
|
|
<meta content="This tests that scale() has the same
|
|
effect as an equivalent matrix()." name="assert">
|
|
<link href="reference/transform-matrix-007-ref.htm" rel="match">
|
|
<style>
|
|
div {
|
|
transform: matrix(2, 0, 0, 4, 0, 0);
|
|
width: 100px;
|
|
height: 100px;
|
|
background: gold;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
|
|
|
|
</body></html> |