Bug 758179. Part 5: Test. r=mats

This commit is contained in:
Robert O'Callahan 2012-05-30 01:13:37 +12:00
Родитель 60997ea807
Коммит e0b3074d42
2 изменённых файлов: 43 добавлений и 0 удалений

Просмотреть файл

@ -65,6 +65,7 @@ _TEST_FILES = \
test_bug597333.html \
test_bug666225.html \
test_image_selection.html \
test_image_selection_2.html \
test_invalidate_during_plugin_paint.html \
test_movement_by_characters.html \
test_movement_by_words.html \

Просмотреть файл

@ -0,0 +1,42 @@
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=758179
-->
<head>
<title>Test for Bug 758179</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
<style>
#t1 { width:80px; height:60px; background:yellow; }
#t1.chosen #i1 { visibility:hidden; }
</style>
</head>
<body>
<div id="t1">
<img id="i1" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGQAAAAyAQMAAACQ%2B%2Bz9AAAAA1BMVEUA%2FwA0XsCoAAAAD0lEQVQoFWNgGAWjYGgCAAK8AAEb3eOQAAAAAElFTkSuQmCC">
</div>
<pre id="test">
<script type="application/javascript">
SimpleTest.waitForExplicitFinish();
var selection = window.getSelection();
var t1 = document.getElementById("t1");
function doTest() {
t1.addEventListener("mousedown", function() {
t1.className = "chosen";
}, false);
t1.addEventListener("mouseup", function() {
ok(selection.isCollapsed, "checking that selection is collapsed");
}, false);
synthesizeMouse(t1, 10, 10, {});
SimpleTest.finish();
}
SimpleTest.waitForFocus(doTest);
</script>
</pre>
</body>
</html>