Cross Reference: /yui3/src/widget-buttons/tests/widget-buttons.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<!DOCTYPE html>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<html>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<head>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo <meta charset="utf-8">
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo <title>Test Page</title>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo</head>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<body class="yui3-skin-sam">
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<div id="log"></div>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<div id="test"></div>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<script src="/build/yui/yui.js"></script>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo<script>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolovar Y = YUI({
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo allowRollup: false,
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo filter: (window.location.search.match(/[?&]filter=([^&]+)/) || [])[1] || 'min',
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo modules: {
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo 'widget-buttons-test': {
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo fullpath: 'widget-buttons-test.js',
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo requires: ['widget-buttons', 'test', 'node-event-simulate']
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo }
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo },
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo useBrowserConsole: false
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo}).use('widget-buttons-test', 'test-console', function (Y) {
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo new Y.Test.Console().render('#log');
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo Y.Test.Runner.run();
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo});
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo</script>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo</body>
f5a29f21ef999f0daa0902fba6f6916bdafe2430Eric Ferraiuolo</html>