mirror of
https://github.com/servo/servo.git
synced 2025-06-16 12:24:29 +00:00
Fixes #5460. This supports for simple focusable elements that are their own DOM anchors, like text `input` fields.
18 lines
293 B
HTML
18 lines
293 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
input:focus {
|
|
outline: 2px solid orange;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<input id="a">
|
|
<input id="b">
|
|
<script>
|
|
document.getElementById("a").focus();
|
|
</script>
|
|
</body>
|
|
</html>
|