https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 7196fc9774577a75f50a49a1107d7d0e80807616 authored by Ian Kilpatrick on 22 December 2018, 23:06:09 UTC
[LayoutNG] Remove NGLayoutResult::PositionedFloats.
Tip revision: 7196fc9
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="d@domenic.me">

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

<input autofocus>
<input autofocus>

<script>
"use strict";

const input = document.querySelector("input");

assert_equals(document.activeElement, document.body);
assert_not_equals(document.activeElement, input);

done();
</script>
back to top