blob: c810751b2f62e38db140a9db65af5a532c9cdaee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE html>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<script src='/tests/SimpleTest/paint_listener.js'></script>
<script src='apz_test_utils.js'></script>
<style>
html, body {
margin: 0;
padding: 0;
}
select {
position: absolute;
top: 150px;
left: 150px;
height: 30px;
}
</style>
<select><option>he he he</option><option>boo boo</option><option>baz baz</option></select>
<script>
// Silence SimpleTest warning about missing assertions by having it wait
// indefinitely. We don't need to give it an explicit finish because the
// entire window this test runs in will be closed after subtestDone is called.
SimpleTest.waitForExplicitFinish();
</script>
|