1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt-doc.git synced 2025-04-25 12:07:10 -07:00

Syntax highlighting.

This commit is contained in:
Cedric Beust 2015-12-05 16:29:15 -08:00
parent c11be25ff8
commit 6b7427454a
105 changed files with 17571 additions and 91 deletions

View file

@ -0,0 +1,60 @@
<pre id="sh_007_collapse_a" class="brush: groovy; collapse: true" title="This is a title for collapsed block">
/**
* Returns an Image object that can then be painted on the screen.
* The url argument must specify an absolute {@link URL}. The name
* argument is a specifier that is relative to the url argument.
*
* @param url an absolute URL giving the base location of the image
* @param name the location of the image, relative to the url argument
* @return the image at the specified URL
* @see Image
*/
</pre>
<pre id="sh_007_collapse_b" class="brush: groovy; collapse: true">
/**
* Returns an Image object that can then be painted on the screen.
* The url argument must specify an absolute {@link URL}. The name
* argument is a specifier that is relative to the url argument.
*
* @param url an absolute URL giving the base location of the image
* @param name the location of the image, relative to the url argument
* @return the image at the specified URL
* @see Image
*/
</pre>
<script type="text/javascript">
queue(function()
{
var $sh;
module('007_collapse');
test('collapsed block with title', function()
{
$sh = $('#sh_007_collapse_a');
ok_sh($sh);
ok_toolbar($sh);
ok_collapsed($sh);
var $title = $sh.find('.toolbar a.toolbar_item.command_expandSource');
ok($title.length == 1, 'Expand present');
equal($title.text(), 'This is a title for collapsed block', 'Expand text');
});
test('collapsed block without title', function()
{
$sh = $('#sh_007_collapse_b');
ok_sh($sh);
ok_toolbar($sh);
ok_collapsed($sh);
var $title = $sh.find('.toolbar a.toolbar_item.command_expandSource');
ok($title.length == 1, 'Expand present');
equal($title.text(), SyntaxHighlighter.config.strings.expandSource, 'Expand text');
});
});
</script>