| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <p>This tests making the meter element RTL. You should see two identical meters progressing from the right to the left.</p> | |
| <style> meter { border: solid 1px black; } </style> | |
| <meter min=0 value=50 max=100 dir="rtl"></meter><br> | |
| <meter min=0 value=50 max=100 style="transform: scaleX(-1);"></meter> | |
| </body> | |
| </html> |