aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJinweiClarkChao <[email protected]>2014-02-20 12:50:15 +0800
committerJinweiClarkChao <[email protected]>2014-02-20 12:52:51 +0800
commit31fb10f393fbfd4d7adf528ec70624d2b8d247a8 (patch)
tree1009bb2a4f5fe89b8bc822b68104018ea8df5261 /Blocks/syntax/tests/cases/006_pad_line_numbers.html
parentbe404e3e01ca839e730c884309c25abef10863c9 (diff)
downloadjinwei.me-31fb10f393fbfd4d7adf528ec70624d2b8d247a8.tar.gz
Six Blocks Version
Diffstat (limited to 'Blocks/syntax/tests/cases/006_pad_line_numbers.html')
-rw-r--r--Blocks/syntax/tests/cases/006_pad_line_numbers.html39
1 files changed, 39 insertions, 0 deletions
diff --git a/Blocks/syntax/tests/cases/006_pad_line_numbers.html b/Blocks/syntax/tests/cases/006_pad_line_numbers.html
new file mode 100644
index 0000000..8ebdd55
--- /dev/null
+++ b/Blocks/syntax/tests/cases/006_pad_line_numbers.html
@@ -0,0 +1,39 @@
1<pre id="sh_006_pad_line_numbers" class="brush: java; pad-line-numbers: true">
2/**
3 * Returns an Image object that can then be painted on the screen.
4 * The url argument must specify an absolute {@link URL}. The name
5 * argument is a specifier that is relative to the url argument.
6 *
7 * @param url an absolute URL giving the base location of the image
8 * @param name the location of the image, relative to the url argument
9 * @return the image at the specified URL
10 * @see Image
11 */
12</pre>
13
14<script type="text/javascript">
15queue(function()
16{
17 var $sh;
18
19 module('006_pad_line_numbers');
20
21 test('check that line numbers are padded with zeroes', function()
22 {
23 $sh = $('#sh_006_pad_line_numbers');
24
25 ok_sh($sh);
26 ok_toolbar($sh);
27 ok_gutter($sh);
28 ok_code($sh);
29
30 $sh.find('.gutter > .line').each(function(index)
31 {
32 var text = $(this).text();
33
34 if (parseInt(text) < 10)
35 ok(text.charAt(0) == '0', 'Line ' + index + ' has leading zero: ' + text);
36 });
37 });
38});
39</script>
Powered by cgit v1.2.3 (git 2.41.0)