mirror of
https://github.com/servo/servo
synced 2026-05-10 17:12:23 +02:00
22 lines
429 B
HTML
22 lines
429 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
|
|
<style>
|
|
div {
|
|
transform: translate(200px) rotate(180deg);
|
|
transform-origin: left;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div>
|
|
<table>
|
|
<caption>Hello</caption>
|
|
<tr><td>there!</td></tr>
|
|
</table>
|
|
</div>
|
|
</body>
|
|
</html>
|