diff options
author | Camille Letavernier | 2014-02-07 16:19:14 +0000 |
---|---|---|
committer | Camille Letavernier | 2014-02-07 16:24:24 +0000 |
commit | af0428c6072f0a3eea7fd5de262a1a1556257660 (patch) | |
tree | b20bb16e42e4bd44e640923baf18542d39c09b97 /tests | |
parent | a2c512bd7e1f0d5b4fc70be51a32d82e788964f2 (diff) | |
download | org.eclipse.papyrus-af0428c6072f0a3eea7fd5de262a1a1556257660.tar.gz org.eclipse.papyrus-af0428c6072f0a3eea7fd5de262a1a1556257660.tar.xz org.eclipse.papyrus-af0428c6072f0a3eea7fd5de262a1a1556257660.zip |
417396: [CSS] The CSS Engine shall support label visibility & mask
https://bugs.eclipse.org/bugs/show_bug.cgi?id=417396
- Rename compartments to conform with UML2.5-beta2 specification, and
unify naming
Diffstat (limited to 'tests')
-rw-r--r-- | tests/junit/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.css.tests/resources/stylesheets/compartments.css | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/junit/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.css.tests/resources/stylesheets/compartments.css b/tests/junit/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.css.tests/resources/stylesheets/compartments.css index 13660016b20..fe0cb1f18a7 100644 --- a/tests/junit/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.css.tests/resources/stylesheets/compartments.css +++ b/tests/junit/plugins/infra/gmfdiag/org.eclipse.papyrus.infra.gmfdiag.css.tests/resources/stylesheets/compartments.css @@ -7,22 +7,22 @@ showTitle: true;
}
-Interface > Compartment[kind=Attribute],
-Interface > Compartment[kind=NestedClassifier] {
+Interface > Compartment[kind=attributes],
+Interface > Compartment[kind=nestedclassifiers] {
visible:false;
}
-Interface[ownedAttribute] > Compartment[kind=Attribute]{
+Interface[ownedAttribute] > Compartment[kind=attributes]{
visible:true;
}
-Compartment[kind=NestedClassifier] {
+Compartment[kind=nestedclassifiers] {
visible: false;
}
/* Collapse the Attribute compartment if the Class contains a P1 attribute (Displayed) */
-Class[ownedAttribute~="P1"] > Compartment[kind=Attribute]{
+Class[ownedAttribute~="P1"] > Compartment[kind=attributes]{
collapsed: true;
}
@@ -30,7 +30,7 @@ Enumeration > Compartment { collapsed: true;
}
-Enumeration > Compartment[kind=EnUmerAtionLiteRal]{ /* Case insensitive */
+Enumeration > Compartment[kind=LiteRalS]{ /* Case insensitive */
collapsed: false;
}
|