File: formattingMultilineCommentsWithTabs2.ts

package info (click to toggle)
node-typescript 4.8.4%2Bds1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 523,068 kB
  • sloc: javascript: 1,735,777; makefile: 7; sh: 1
file content (36 lines) | stat: -rw-r--r-- 1,255 bytes parent folder | download | duplicates (7)
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
33
34
35
36
/// <reference path='fourslash.ts'/>

////var f = function (j) {
////
////	switch (j) {
////		case 1:
/////*1*/				/* when current checkbox has focus, Firefox has changed check state already
/////*2*/				on SPACE bar press only
/////*3*/				IE does not have issue, use the CSS class
/////*4*/				input:focus[type=checkbox] (z-index = 31290)
/////*5*/				to determine whether checkbox has focus or not
////				*/
////			break;
////		case 2:
////		break;
////	}
////}
var options = format.copyFormatOptions();
options.ConvertTabsToSpaces = false;
var oldOptions = format.setFormatOptions(options);
try {
    format.document();
    goTo.marker("1");
    verify.currentLineContentIs("			/* when current checkbox has focus, Firefox has changed check state already");
    goTo.marker("2");
    verify.currentLineContentIs("			on SPACE bar press only");
    goTo.marker("3");
    verify.currentLineContentIs("			IE does not have issue, use the CSS class");
    goTo.marker("4");
    verify.currentLineContentIs("			input:focus[type=checkbox] (z-index = 31290)");
    goTo.marker("5");
    verify.currentLineContentIs("			to determine whether checkbox has focus or not");
}
finally {
    format.setFormatOptions(oldOptions);
}