~bac/juju-gui/trunkcopy

« back to all changes in this revision

Viewing changes to lib/yui/tests/cache/tests/cache-offline.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>CacheOffline 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-offline-tests': {
17
 
                fullpath: './cache-offline.js',
18
 
                requires: [ 'test', 'dump', 'cache-offline' ]
19
 
            }
20
 
        }
21
 
    }).use('test-console', 'cache-offline-tests', function(Y) {
22
 
        
23
 
        (new Y.Test.Console()).render('log');
24
 
 
25
 
        Y.Test.Runner.run();
26
 
    });
27
 
})();
28
 
</script>
29
 
</body>
30
 
</html>