mirror of
https://github.com/servo/servo
synced 2026-05-10 09:02:30 +02:00
24 lines
603 B
HTML
24 lines
603 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Keith Schwarz" href="mailto:keith@keithschwarz.com">
|
|
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
|
|
<style>
|
|
div {
|
|
width: 100px;
|
|
height: 50px;
|
|
background: gold;
|
|
position: absolute;
|
|
left: 100px;
|
|
top: 100px;
|
|
transform: rotate(10deg) translatex(50px) rotate(10deg)
|
|
translatey(50px) skewx(10deg) translate(25px, 25px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div></div>
|
|
</body>
|
|
</html>
|