| function selectNodes(a, b) { |
| window.getSelection().setBaseAndExtent(a, 1, b, 1); |
| output += window.getSelection().anchorNode.parentNode.id + ' '; |
| var x = document.getElementById('x'); |
| var y = document.getElementById('y'); |
| document.getElementById('result').innerHTML = (output == "x y " ? "PASS" : ("FAIL: " + output)); |
| } catch (e) { alert(e); } |
| <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=20117">bug 20117</a>: |
| setBaseAndExtent fails to reverse the current selection.</p> |
| <div id='result'>FAIL (script didn't run)</div> |