You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/test/runtime/samples/inline-style-optimisation-b.../_config.js

21 lines
491 B

export default {
html: `
<p style="opacity: 0.5; color: red">color: red</p>
`,
test({ assert, component, target, window }) {
const p = target.querySelector('p');
let styles = window.getComputedStyle(p);
assert.equal(styles.opacity, '0.5');
assert.equal(styles.color, 'red');
component.styles = 'font-size: 20px';
styles = window.getComputedStyle(p);
assert.equal(styles.opacity, '0.5');
assert.equal(styles.color, '');
assert.equal(styles.fontSize, '20px');
}
};