layout/base/tests/bug1634743-1-ref.html
author Alexandru Marc <amarc@mozila.com>
Tue, 15 Jul 2025 02:33:52 +0300 (8 hours ago)
changeset 796591 ca1cc5350282d2e1047872fb126704505db5e97a
parent 527789 b256a79e09213a2481eb91844106fddfc977fb04
permissions -rw-r--r--
Revert "Bug 1938967 - Part 2: Use relative paths within Taskbar Tabs to create shortcuts. r=nrishel,fluent-reviewers,bolsson" for causing bc failures @ browser_createWindowsShortcut.js This reverts commit 76c91e29a4310104f82d32ce50de9faf027c34f5. Revert "Bug 1938967 - Part 1: Allow shortcuts to be located in subdirectories of the Start menu or desktop. r=nrishel" This reverts commit 17f3a92d47e36c8a879be8d0bf1777cbcb72dc91.
<!doctype html>
<html class="reftest-wait">
<title>Test reference</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<style>
  div {
    outline: 2px solid blue;
    line-height: 5;
    border: 1px solid gray;
    padding: 8px;
  }
</style>
<div contenteditable="true" spellcheck="false">abc</div>
<script>
SimpleTest.waitForFocus(function() {
  document.querySelector('[contenteditable="true"]').focus();
  requestAnimationFrame(function() {
    requestAnimationFrame(function() {
      document.documentElement.removeAttribute("class");
    });
  });
});
</script>