blob: 94b119c9026dedce284e56300baca2335ebe7905 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 EclipseSource and others. 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:
* EclipseSource - initial API and implementation
******************************************************************************/
package org.eclipse.e4.ui.tests.css.core.parser;
import java.io.IOException;
import junit.framework.TestCase;
import org.eclipse.e4.ui.css.core.impl.dom.DocumentCSSImpl;
import org.eclipse.e4.ui.css.core.impl.dom.ViewCSSImpl;
import org.eclipse.e4.ui.css.swt.engine.CSSSWTEngineImpl;
import org.eclipse.e4.ui.tests.css.core.util.ParserTestUtil;
import org.eclipse.e4.ui.tests.css.core.util.TestElement;
import org.eclipse.swt.widgets.Display;
import org.w3c.dom.css.CSSStyleDeclaration;
import org.w3c.dom.css.CSSStyleSheet;
import org.w3c.dom.css.ViewCSS;
public class CascadeTest extends TestCase {
private Display display;
private CSSSWTEngineImpl engine;
protected void setUp() throws Exception {
display = Display.getDefault();
engine = new CSSSWTEngineImpl(display);
}
public void testPosition() throws Exception {
// Two rules with the same specificity, the second rule should take
// precedence because of its position in the stylesheet
String css = "Button { color: blue; font-weight: bold; }\n"
+ "Button { color: black }\n";
ViewCSS viewCSS = createViewCss(css);
TestElement button = new TestElement("Button", engine);
CSSStyleDeclaration style = viewCSS.getComputedStyle(button, null);
assertEquals("black", style.getPropertyCSSValue("color").getCssText());
assertEquals("bold", style.getPropertyCSSValue("font-weight")
.getCssText());
}
public void testSpecificity() throws Exception {
// Two rules with different specificity, the first should take
// precedence because of its higher specificity
String css = "Label, Button.special { color: black; }\n"
+ "Button { color: blue; font-weight: bold; }\n";
ViewCSS viewCSS = createViewCss(css);
TestElement button = new TestElement("Button", engine);
CSSStyleDeclaration style = viewCSS.getComputedStyle(button, null);
assertEquals("blue", style.getPropertyCSSValue("color").getCssText());
button.setClass("special");
style = viewCSS.getComputedStyle(button, null);
assertEquals("black", style.getPropertyCSSValue("color").getCssText());
assertEquals("bold", style.getPropertyCSSValue("font-weight")
.getCssText());
}
public void testSpecificities() throws Exception {
// Different specificities
String css = "* { color: black; }\n"
+ "Button { color: blue; }\n"
+ "Button[BORDER] { color: gray; }\n"
+ "Button.special { color: green; }\n"
+ "Button#myid { color: red; }\n";
ViewCSS viewCSS = createViewCss(css);
TestElement label = new TestElement("Label", engine);
CSSStyleDeclaration style = viewCSS.getComputedStyle(label, null);
assertEquals("black", style.getPropertyCSSValue("color").getCssText());
TestElement button = new TestElement("Button", engine);
style = viewCSS.getComputedStyle(button, null);
assertEquals("blue", style.getPropertyCSSValue("color").getCssText());
button.setAttribute("BORDER", "true");
style = viewCSS.getComputedStyle(button, null);
assertEquals("gray", style.getPropertyCSSValue("color").getCssText());
button.setClass("special");
style = viewCSS.getComputedStyle(button, null);
assertEquals("green", style.getPropertyCSSValue("color").getCssText());
button.setId("myid");
style = viewCSS.getComputedStyle(button, null);
assertEquals("red", style.getPropertyCSSValue("color").getCssText());
}
private static ViewCSS createViewCss(String css) throws IOException {
CSSStyleSheet styleSheet = ParserTestUtil.parseCss(css);
DocumentCSSImpl docCss = new DocumentCSSImpl();
docCss.addStyleSheet(styleSheet);
return new ViewCSSImpl(docCss);
}
}