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/backface-visibility-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<link rel="author" title="Chris Harrelson" href="mailto:chrishtr@google.com">
<link rel="match" href="backface-visibility-001.ref.html">
<meta name="fuzzy" content="maxDifference=0-1;totalPixels=0-1">
<meta name="assert" content="backface-visibility should have no effect when no transforms are present">
<style>
.box {
border: 1px solid black;
width: 200px;
height: 200px;
backface-visibility: hidden;
}
</style>
<div class="box">
This text should be visible
</div>