mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 02:13:08 +09:00
24 lines
432 B
HTML
24 lines
432 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<link rel="match" href="align-ref.html">
|
|
<style>
|
|
hr {
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
|
|
<hr align=>
|
|
<hr align=left>
|
|
<hr align=center>
|
|
<hr align=right>
|
|
<hr align=foobar>
|
|
|
|
<script>
|
|
// Test the IDL attribute
|
|
const values = ['', 'left', 'center', 'right', 'foobar'];
|
|
values.forEach(value => {
|
|
const hr = document.createElement('hr');
|
|
hr.align = value;
|
|
document.body.appendChild(hr);
|
|
});
|
|
</script>
|