Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 <!DOCTYPE html>
2 <html>
3 <body class="reftest-wait">
4 <!-- See bug 658282. -->
5 <link rel='stylesheet' type='text/css' href='style.css'>
6 <script>
7 function loadHandler() {
8 var button = document.getElementsByTagName('button')[0];
9 var radios = document.getElementsByName('foo');
11 button.onclick = function() {
12 for (var i = 0; i < radios.length; i++) {
13 radios[i].checked = false;
14 }
15 button.parentNode.removeChild(button);
16 document.documentElement.className='';
17 };
19 radios[0].focus();
20 radios[0].checked = true;
21 button.focus();
22 button.click();
23 }
24 </script>
25 <body onload="loadHandler();">
26 <input class='invalid' id='i1' name='foo' type='radio' required>
27 <input class='invalid' id='i2' name='foo' type='radio' required>
28 <button></button>
29 </body>
30 </html>