mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
199 B
HTML
12 lines
199 B
HTML
<!DOCTYPE html>
|
|
<ol id="x">
|
|
<li>Three</li>
|
|
<li>Two</li>
|
|
<li>One</li>
|
|
</ol>
|
|
<script>
|
|
var l = document.getElementById("x");
|
|
var w = l.offsetWidth;
|
|
l.setAttribute("reversed", "");
|
|
</script>
|