~ubuntu-branches/ubuntu/precise/maas/precise-security

« back to all changes in this revision

Viewing changes to src/maasserver/static/jslibs/yui/3.4.1/tests/event-valuechange/tests/functional/event-valuechange.html

Tags: 1.2+bzr1373+dfsg-0ubuntu1~12.04.4
* SECURITY UPDATE: failure to authenticate downloaded content (LP: #1039513)
  - debian/patches/CVE-2013-1058.patch: Authenticate downloaded files with
    GnuPG and MD5SUM files. Thanks to Julian Edwards.
  - CVE-2013-1058
* SECURITY UPDATE: configuration options may be loaded from current working
  directory (LP: #1158425)
  - debian/patches/CVE-2013-1057-1-2.patch: Do not load configuration
    options from the current working directory. Thanks to Julian Edwards.
  - CVE-2013-1057

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<!DOCTYPE html>
2
 
<html>
3
 
<head>
4
 
    <meta charset="utf-8">
5
 
    <title>Test Page</title>
6
 
</head>
7
 
<body class="yui3-skin-sam">
8
 
 
9
 
<div id="log"></div>
10
 
 
11
 
<script src="../../../../build/yui/yui.js"></script>
12
 
<script>
13
 
var Y = YUI({
14
 
    allowRollup: false,
15
 
    filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
16
 
    modules: {
17
 
        'test-console': {
18
 
            fullpath : '../assets/test-console.js',
19
 
            requires : ['console-filters'],
20
 
            skinnable: true
21
 
        },
22
 
 
23
 
        'skin-sam-test-console': {
24
 
            fullpath: '../assets/test-console.css',
25
 
            type    : 'css'
26
 
        },
27
 
 
28
 
        'event-valuechange-test': {
29
 
            fullpath: 'event-valuechange-test.js',
30
 
            requires: ['event-valuechange', 'node-base', 'node-event-simulate', 'test']
31
 
        }
32
 
    },
33
 
    useBrowserConsole: false
34
 
}).use('event-valuechange-test', 'test-console', function (Y) {
35
 
    Y.Test.Runner.run();
36
 
});
37
 
</script>
38
 
 
39
 
</body>
40
 
</html>