~bcsaller/juju-gui/update-reductions

« back to all changes in this revision

Viewing changes to lib/yui/tests/cache/tests/cache.html

  • Committer: kapil.foss at gmail
  • Date: 2012-07-13 18:45:59 UTC
  • Revision ID: kapil.foss@gmail.com-20120713184559-2xl7be17egsrz0c9
reshape

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
2
 
<html>
3
 
<head>
4
 
<title>Cache Tests</title>
5
 
<script type="text/javascript" src="../../../build/yui/yui.js"></script>
6
 
</head>
7
 
 
8
 
<body class="yui3-skin-sam">
9
 
<div id="log"></div>
10
 
 
11
 
<script type="text/javascript">
12
 
(function() {
13
 
    YUI({
14
 
        filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
15
 
        modules: {
16
 
            'cache-tests': {
17
 
                fullpath: './cache-tests.js',
18
 
                requires: ["test", "dump", "cache"]
19
 
            }
20
 
        }
21
 
    }).use("test-console", 'cache-tests', function(Y) {
22
 
        (new Y.Test.Console()).render('#log');
23
 
        Y.Test.Runner.run();
24
 
    });
25
 
})();
26
 
</script>
27
 
</body>
28
 
</html>