layout/base/tests/bug1510942-1.html
author Tim Huang <tihuang@mozilla.com>
Wed, 16 Jul 2025 17:26:02 +0000 (7 hours ago)
changeset 796860 b48b65b15c8e8520f1eedcbd3aa29b2669fc3d20
parent 448924 1894e5ca0523dcf9b19985df4b8d1ad8659623ef
permissions -rw-r--r--
Bug 1976834 - Add the SafeBrowsing V5 protobuf files. r=dimi Differential Revision: https://phabricator.services.mozilla.com/D257225
<!doctype html>
<html class="reftest-wait">
<meta charset="utf-8">
<title>Test for bug 1510942: Caret in a transformed empty block</title>
<script src="/tests/SimpleTest/EventUtils.js"></script>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
  #editable {
    height: 300px;
    width: 100px;
    outline: 1px solid black;
    transform: translateZ(0);
  }
</style>
<div id="editable" contenteditable></div>
<script>
SimpleTest.waitForFocus(function() {
  document.getElementById("editable").focus();
  document.documentElement.className ="";
});
</script>