initial commit
[namibia] / public / js / lib / syntaxhighlighter / tests / cases / 012_server_side.html
1 <script id="sh_012_server_side_input" type="text/plain">
2 function helloWorld()
3 {
4         // this is great!
5         for(var i = 0; i <= 1; i++)
6                 alert("yay");
7 }
8 </script>
9
10 <div id="sh_012_server_side_output">
11 </div>
12
13 <script type="text/javascript">
14 queue(function()
15 {
16         var $sh;
17         
18         module('012_server_side');
19
20         test('generate markup', function()
21         {
22                 var brush = new SyntaxHighlighter.brushes.JScript(),
23                         code = $('#sh_012_server_side_input').html()
24                         ;
25         
26                 brush.init({ toolbar: false });
27                 $sh = $('#sh_012_server_side_output');
28                 $sh.html(brush.getHtml(code));
29                 
30                 ok_sh($sh);
31                 ok_gutter($sh);
32                 ok_code($sh);
33         });
34 });
35 </script>