mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
25 lines
432 B
HTML
25 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>
|