mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
19 lines
594 B
HTML
19 lines
594 B
HTML
<!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>
|