Dynamic stylesheet test
- - styleEl.styleSheet.cssText = STUFF : FAIL. Stylesheet is empty
- - addRule('.foo','{ STUFF }', lastIdx) : FAIL. Adds empty rule
- - addRule('.foo','{}', lastIdx) : CORRECT
- - rule.style.width = '4em'; : FAIL. No reflow
- - rule.style.background = '#0F0'; FAIL. No reflow
- - rule.style.styleFloat = 'right'; FAIL. No reflow
- - rule.style.filter = 'alpha(opacity=VAL)'; CORRECT, and reflow/repaint applies all previous style changes
- - rule.style.cssText = STUFF (with filter); CORRECT