14 lines
311 B
HTML
14 lines
311 B
HTML
<!DOCTYPE html>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<style>
|
|
.transform {
|
|
will-change: transform;
|
|
transform-style: preserve-3d;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="transform">
|
|
<div>TEST PAGE</div>
|
|
<div style="text-indent: -9999em">TEST PAGE</div>
|
|
</div>
|
|
</body>
|