Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 <html>
3 <head>
4 <script>
5 function boom()
6 {
7 document.getElementById("i1").style.counterIncrement = "chicken";
8 document.getElementById("i3").style.counterIncrement = "chicken";
9 }
10 </script>
11 </head>
13 <body onload="boom();" style="overflow: auto; display: -moz-grid-line;">
14 <img id="i1" style="width: 30px; float: right;">
15 <img id="i2" style="margin: 0 100%; padding: 0 60px;">
16 <img id="i3" style="margin: 100% 0; float: right;">
17 </body>
19 </html>