mirror of
https://github.com/swc-project/swc.git
synced 2024-12-22 13:11:31 +03:00
20 lines
491 B
HTML
20 lines
491 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p><button autofocus value="next">Button</button></p>
|
|
<p><button autofocus="autofocus" value="next">Button</button></p>
|
|
<p><button autofocus=" autofocus " value="next">Button</button></p>
|
|
<p><button autofocus="true" value="next">Button</button></p>
|
|
<p><button autofocus="false" value="next">Button</button></p>
|
|
|
|
<img draggable="false">
|
|
<img draggable="true">
|
|
|
|
<img data-readonly="test">
|
|
|
|
</body>
|
|
</html> |