Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: snapshot OR (os == 'android')
- Manifest: gfx/layers/apz/test/reftest/reftest.list
<!DOCTYPE html>
<html class="reftest-wait">
<meta name="viewport" content="width=device-width">
<style>
iframe {
  position: absolute;
  width: 1600px;
  height: 2000px;
  top: 200px;
  left: 100px;
}
</style>
<script>
document.addEventListener('MozReftestInvalidate', async () => {
  const transformEndPromise = new Promise(resolve => {
    SpecialPowers.Services.obs.addObserver(function observer() {
      SpecialPowers.Services.obs.removeObserver(observer, "APZ:TransformEnd");
      resolve();
    }, "APZ:TransformEnd");
  });
  const iframe = document.querySelector("iframe");
  await SpecialPowers.spawn(iframe, [], () => {
    const input = content.document.querySelector("input");
    input.focus();
    SpecialPowers.DOMWindowUtils.zoomToFocusedInput();
  });
  await transformEndPromise;
  document.documentElement.classList.remove('reftest-wait');
});
</script>
</html>