CSSStyleRule.test.js 345 B

123456789101112
  1. test("CSSStyleRule", function(){
  2. var r = new CSSOM.CSSStyleRule;
  3. r.cssText = "h1:first-of-type {\n\tfont-size: 3em\n}";
  4. equal(r.cssText, "h1:first-of-type {font-size: 3em;}");
  5. equal(r.selectorText, "h1:first-of-type");
  6. r.selectorText = "h1.title";
  7. equal(r.selectorText, "h1.title");
  8. equal(r.cssText, "h1.title {font-size: 3em;}");
  9. });