File: import-malformed.css

package info (click to toggle)
ruby-css-parser 1.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: ruby: 3,093; makefile: 6
file content (35 lines) | stat: -rw-r--r-- 398 bytes parent folder | download | duplicates (3)
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
.malformed.one:before {
  content: "\\";
  color: "red";
}

.wellformed.one {
  color: "green";
}

.malformed.two:before {
  content: "\"";
  color: "red";
}

.wellformed.two {
  color: "green";
}

.malformed.three:before {
  content: "{";
  color: "red";
}

.wellformed.three {
  color: "green";
}

.malformed.four:before {
  content: "}";
  color: "red";
}

.wellformed.four {
  color: "green";
}