mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
11 lines
181 B
HTML
11 lines
181 B
HTML
<style>
|
|
input {
|
|
padding-left: 0;
|
|
padding-right: 0;
|
|
}
|
|
</style>
|
|
<input id="1" type="submit"></input>
|
|
<script>
|
|
var elem = document.getElementById('1');
|
|
elem.focus();
|
|
</script>
|