accessibility-developer-tools
Version:
This is a library of accessibility-related testing and utility code.
44 lines (41 loc) • 787 B
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>