adding testes

This commit is contained in:
Lucas Gravley 2020-08-25 14:05:42 -05:00
parent c2e207f643
commit 2ff9be6197
2 changed files with 21 additions and 28 deletions

View file

@ -1,9 +1,12 @@
/* Bad */ using System;
/* Multi-line */
/* Comment */ namespace HelloWorld
.selector-3[type="text"] { {
background: linear-gradient(#FFFFFF, rgba(0, 0, 0, 0.8)); class Program
box-sizing: border-box; {
display: block; static void Main(string[] args)
color: #AAAAAA; {
Console.WriteLine(Hello World);
}
}
} }

View file

@ -1,22 +1,12 @@
/** using System;
* Multi-line comment
*/
.selector-1, namespace HelloWorld
.selector-2, {
.selector-3[type="text"] { class Program
background: linear-gradient(#fff, rgba(0, 0, 0, 0.8)); {
box-sizing: border-box; static void Main(string[] args)
display: block; {
color: #333; Console.WriteLine("Hello World!");
}
}
} }
.selector-a,
.selector-b:not(:first-child) {
padding: 10px !important;
top: calc(calc(1em * 2) / 3);
}
.selector-x { width: 10%; }
.selector-y { width: 20%; }
.selector-z { width: 30%; }