1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/forms/progress/indeterminate-style-width.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html> 1.6 + <link rel='stylesheet' type='text/css' href='style.css'> 1.7 + <style> 1.8 + body > progress:nth-child(1)::-moz-progress-bar { width: 20px; } 1.9 + body > progress:nth-child(2)::-moz-progress-bar { width: 0px; } 1.10 + body > progress:nth-child(3)::-moz-progress-bar { width: 50%; } 1.11 + body > progress:nth-child(4)::-moz-progress-bar { width: 1em; } 1.12 + /* last one is for the default value: width=100%. */ 1.13 + </style> 1.14 + <body> 1.15 + <!-- Those will be used to change padding/margin on ::-moz-progress-bar --> 1.16 + <progress></progress> 1.17 + <progress></progress> 1.18 + <progress></progress> 1.19 + <progress></progress> 1.20 + <progress></progress> 1.21 + </body> 1.22 +</html>