Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transforms/transform-generated-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<title>CSS Test (Transforms): Generated Content (block)</title>
<link rel="author" title="Aryeh Gregor" href="mailto:ayg@aryeh.name">
<meta name="assert" content="Transforms need to work on boxes of generated
content just as on any other boxes. This file tests a generated block
box.">
<link rel="match" href="transform-generated-001-ref.html">
<link rel="mismatch" href="transform-generated-001-notref.html">
<style>
div {
float: left;
}
div::before {
transform: rotate(180deg);
float: left;
content: 'abc';
}
</style>
</head>
<body>
<div>def</div>
</body>
</html>