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