1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/forms/progress/block-invalidate.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,19 @@ 1.4 +<!DOCTYPE html> 1.5 +<html class='reftest-wait'> 1.6 + <link rel='stylesheet' type='text/css' href='style.css'> 1.7 + <style> 1.8 + progress { display: block; } 1.9 + </style> 1.10 + <script> 1.11 + function loadHandler() { 1.12 + setTimeout(function() { 1.13 + var p = document.getElementsByTagName('progress')[0]; 1.14 + p.value = '0.5'; 1.15 + document.documentElement.className = ''; 1.16 + }, 0); 1.17 + } 1.18 + </script> 1.19 + <body onload="loadHandler();"> 1.20 + <progress value='0'></progress> 1.21 + </body> 1.22 +</html>