1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/widget/reftests/meter-native-style-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <body> 1.7 + <!-- Empty meter, no bar. --> 1.8 + <meter></meter> 1.9 + <!-- Full meter green colored. --> 1.10 + <meter min=0 low=0 high=1 optimum=2 max=10 value=10></meter> 1.11 + <!-- Full meter orange colored. --> 1.12 + <meter min=0 low=0 high=1 optimum=1 max=10 value=10></meter> 1.13 + <!-- Full meter red colored. --> 1.14 + <meter min=0 low=1 high=2 optimum=0 max=10 value=10></meter> 1.15 + <!-- Half-empty orange colored. --> 1.16 + <meter min=0 low=0 high=1 optimum=0 max=10 value=5></meter> 1.17 + <!-- Half-empty orange colored. --> 1.18 + <meter min=0 low=0 high=1 optimum=0 max=10 value=5></meter> 1.19 + <!-- With RTL, the bar should begin on the right. --> 1.20 + <meter style="-moz-transform: scale(-1, 1);" value=0.5></meter> 1.21 + </body> 1.22 +</html>