summaryrefslogtreecommitdiffstats
path: root/layout/reftests/selection/addrange-ref.html
blob: 4e6a70db2ff78e00535503dcd6913562c35e5597 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<html>
    <head>
        <title>Testcase #1 for bug 602331</title>
        <script type="text/javascript" charset="utf-8">
            function selectExisting() {
                window.getSelection().removeAllRanges();
                
                var range = document.createRange();
                range.selectNode(document.getElementById('existing_node'));
                window.getSelection().addRange(range);
            }
        </script>
    </head>
    <body onload="selectExisting()">
        * <span id="existing_node">Hello Kitty</span> *
    </body>
</html>