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><html><head>
2 </head>
3 <body>
4 noteditable<span id="x" contenteditable="true" spellcheck="false">navigable|unnavigable</span><br />
5 <script>
6 // Position the caret after "u"
7 var sel = window.getSelection();
8 sel.removeAllRanges();
9 var range = document.createRange();
10 var x = document.getElementById('x');
11 var t = x.firstChild;
12 range.setStart(t, 11);
13 range.setEnd(t, 11);
14 sel.addRange(range);
15 x.focus();
16 </script>
17 </body>
18 </html>