chromium/third_party/blink/web_tests/external/wpt/html/interaction/focus/the-autofocus-attribute/not-on-first-task.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>The element is not focused during the initial parsing task</title>
<link rel="help" href="https://html.spec.whatwg.org/multipage/#autofocusing-a-form-control:-the-autofocus-attribute">
<link rel="author" title="Domenic Denicola" href="[email protected]">

<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>

<input autofocus>
<input autofocus>

<script>
"use strict";

test(() => {
  const input = document.querySelector("input");

  assert_equals(document.activeElement, document.body);
  assert_not_equals(document.activeElement, input);
});
</script>