layout/reftests/forms/meter/default-style/default-style-dyn.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

michael@0 1 <!DOCTYPE html>
michael@0 2 <html>
michael@0 3 <link rel='stylesheet' type='text/css' href='style.css'>
michael@0 4 <body>
michael@0 5 <meter id='m1' value="0.1" low="0" optimum="0.5" high="1" min="0" max="1"></meter>
michael@0 6 <meter id='m2' value="0.1" low="0.3" optimum="0.7" high="1" min="0" max="1"></meter>
michael@0 7 <meter id='m3' value="0.1" low="0.3" optimum="0.7" high="0.5" min="0" max="1"></meter>
michael@0 8 <meter id='m4' value="0.1" low="0.3" optimum="0.7" high="0.5" min="0" max="1"></meter>
michael@0 9 <meter id='m5' value="0.1" low="0.3" optimum="0.7" high="0.5" min="0" max="1"></meter>
michael@0 10 <meter id='m6' value="0.1" low="0.3" optimum="0.7" high="0.5" min="0" max="1"></meter>
michael@0 11
michael@0 12 <script>
michael@0 13
michael@0 14 var m = document.getElementById('m1');
michael@0 15 m.setAttribute("low",0.3);
michael@0 16
michael@0 17 m = document.getElementById('m2');
michael@0 18 m.setAttribute("high",0.5);
michael@0 19
michael@0 20 m = document.getElementById('m3');
michael@0 21 m.setAttribute("value",0.4);
michael@0 22
michael@0 23 m = document.getElementById('m4');
michael@0 24 m.setAttribute("optimum",0.1);
michael@0 25
michael@0 26 m = document.getElementById('m5');
michael@0 27 m.setAttribute("min",0.9);
michael@0 28
michael@0 29 m = document.getElementById('m6');
michael@0 30 m.setAttribute("max",0.5);
michael@0 31
michael@0 32 </script>
michael@0 33 </body>
michael@0 34 </html>

mercurial