aboutsummaryrefslogtreecommitdiff
path: root/contexts/data/lib/closure-library/closure/goog/ui/menubutton_test_frame.html
blob: b918890d3e71e43f31ddc6e530f6b004c7129e55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<!--

  @author tkent@google.com (TAMURA Kent)
-->
<html>
<!--
Copyright 2009 The Closure Library Authors. All Rights Reserved.

Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<style type='text/css'>
#demoMenuButton {
  /*
   * Set a fixed width because the button size can be changed by a scroll bar
   * without it.
   */
  width: 64px;
}
.goog-menu {
  position: absolute;
  color: #aaa;
}
</style>
</head>
<body>
<div id="demoMenuButton" class="goog-menu-button">
  Button
  <div id="demoMenu" class="goog-menu">
    <div id='menuItem1' class="goog-menuitem">Annual Report.pdf</div>
    <div id='menuItem2' class="goog-menuitem">Quarterly Update.pdf</div>
    <div id='menuItem3' class="goog-menuitem">Enemies List.txt</div>
  </div>
</div>

<div id="footer"></div>
</body>
</html>