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/offset-change-inline-backface-visibility-hidden.html - WPT Dashboard Interop Dashboard
<!doctype HTML>
<html class="reftest-wait">
<title>CSS Test: Repaint after moving an inline element with backface-visibility:hidden</title>
<link rel="author" title="Xianzhu Wang" href="mailto:wangxianzhu@chromium.org" />
<link rel="match" href="offset-change-inline-backface-visibility-hidden-ref.html">
<link rel="stylesheet" href="/fonts/ahem.css">
<script src="/common/reftest-wait.js"></script>
<div id="container">
<div style="width: 100px; background: green; font-family: ahem">
<span style="backface-visibility: hidden">X</span>
</div>
</div>
<script>
onload = function() {
requestAnimationFrame(() => requestAnimationFrame(() => {
container.style.marginLeft = '100px';
takeScreenshot();
}));
};
</script>
</html>