12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html>
- <!--
- Copyright 2011 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 charset="UTF-8" />
- <title>
- Closure Unit Tests - goog.fx.DragListGroup
- </title>
- <script src="../base.js">
- </script>
- <script>
- goog.require('goog.fx.DragListGroupTest');
- </script>
- <style>
- .opacity-40 {
- opacity: 0.4;
- -moz-opacity: 0.4;
- filter: alpha(opacity=40);
- }
- .cursor_move {
- cursor: move;
- -moz-user-select: none;
- -webkit-user-select: none;
- }
- .cursor_pointer {
- cursor: pointer;
- }
- .blue_bg {
- background-color: #0000CC;
- }
- </style>
- </head>
- <body>
- <div id="sandbox">
- </div>
- </body>
- </html>
|