mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 04:05:49 +00:00
c5a1b0eda2
--HG-- rename : layout/reftests/forms/progress/bar-pseudo-element-ref.html => layout/reftests/forms/progress/bar-pseudo-element-vertical-ref.html rename : layout/reftests/forms/progress/bar-pseudo-element.html => layout/reftests/forms/progress/bar-pseudo-element-vertical-rtl.html rename : layout/reftests/forms/progress/bar-pseudo-element.html => layout/reftests/forms/progress/bar-pseudo-element-vertical.html rename : layout/reftests/forms/progress/indeterminate-style-width-ref.html => layout/reftests/forms/progress/indeterminate-style-height-ref.html rename : layout/reftests/forms/progress/indeterminate-style-width.html => layout/reftests/forms/progress/indeterminate-style-height.html rename : layout/reftests/forms/progress/margin-padding-ref.html => layout/reftests/forms/progress/margin-padding-vertical-ref.html rename : layout/reftests/forms/progress/margin-padding-rtl-ref.html => layout/reftests/forms/progress/margin-padding-vertical-rtl-ref.html rename : layout/reftests/forms/progress/margin-padding-rtl.html => layout/reftests/forms/progress/margin-padding-vertical-rtl.html rename : layout/reftests/forms/progress/margin-padding.html => layout/reftests/forms/progress/margin-padding-vertical.html rename : layout/reftests/forms/progress/values-ref.html => layout/reftests/forms/progress/values-vertical-ref.html rename : layout/reftests/forms/progress/values-ref.html => layout/reftests/forms/progress/values-vertical-rtl-ref.html rename : layout/reftests/forms/progress/values.html => layout/reftests/forms/progress/values-vertical-rtl.html rename : layout/reftests/forms/progress/values.html => layout/reftests/forms/progress/values-vertical.html
22 lines
601 B
HTML
22 lines
601 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<link rel='stylesheet' type='text/css' href='style.css'>
|
|
<style>
|
|
progress {
|
|
-moz-orient: vertical;
|
|
}
|
|
</style>
|
|
<body dir='rtl'>
|
|
<progress value="1.0"></progress>
|
|
<progress value="0.0"></progress>
|
|
<progress value="0.1"></progress>
|
|
<progress value="0.5"></progress>
|
|
<progress value="-1"></progress>
|
|
<progress value="42"></progress>
|
|
<progress value="42" max="100"></progress>
|
|
<progress value="42" max="1"></progress>
|
|
<progress value="42" max="-1"></progress>
|
|
<progress value="0.1" max="-1"></progress>
|
|
</body>
|
|
</html>
|