Skip to main content
summaryrefslogtreecommitdiffstats
blob: f45a42990498ed207e9d7bd08b8f12a09a1a9bdb (plain) (blame)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
/*****************************************************************************
 * Copyright (c) 2012 CEA LIST.
 * 
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Camille Letavernier (CEA LIST) camille.letavernier@cea.fr
 *****************************************************************************/
 
/**
*	Papyrus 0.9 CSS
*	Test stylesheet for #getAvailableClasses()
*/

/******************************************************** 
 * All cX should be matched for Interfaces (c01 ~ c17) 
 * xX should not be matched for Interfaces
 *******************************************************/


/**************** Ignored Selector *********************/

.anyClass {
	
}

/**************** Simple selectors *********************/


*.c01{
	
}

Interface.c02{
	
}

.c03 {
	
}

.c04, .c05, .c06 {
	
}

Class.x01{
	
}

#x05 {
	
}

/************ Combinator selectors **************/

.c07 .c08 {
	
}
.c09 Class.x02{
	
}

.c10 > Class.x03{
	
}

Interface.c11 + Class.x04 {
	
}

*.c12 + Interface.c13 {
	
}

/************* Combinator Conditions ****************/

#x06:x07 {
	
}

.c14#x8:x09{
	
}

Interface.c15#x10{
	
}

#x11.c16 {
	
}

#x12.c17:x13 {
	
}

Back to the top