blob: 7a025df64793cb6e1b55c7f2ec2c34c25a3ce7a0 [file] [log] [blame]
<!doctype html>
<meta charset="utf-8">
<title>Declared StylePropertyMap.set() with shorthands</title>
<link rel="help" href="https://drafts.css-houdini.org/css-typed-om-1/#set-a-value-on-a-stylepropertymap">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../../resources/testhelper.js"></script>
<body>
<script>
'use strict';
const gInvalidTestCases = [
{ property: 'margin', values: [CSS.deg(0)], desc: 'an invalid CSSStyleValue' },
{ property: 'margin', values: ['10s'], desc: 'an invalid String' },
];
for (const {property, values, desc} of gInvalidTestCases) {
test(t => {
let styleMap = createInlineStyleMap(t, '');
assert_throws_js(TypeError, () => styleMap.set(property, ...values));
}, 'Setting a shorthand with ' + desc + ' on css rule throws TypeError');
}
test(t => {
let [elem, styleMap] = createRuleWithDeclaredStyleMap(t, 'margin: 1px 2px 3px 4px');
const result = styleMap.get('margin');
elem.style.margin = '';
styleMap.set('margin', result);
assert_equals(elem.style.getPropertyValue('margin'), '1px 2px 3px 4px');
assert_equals(elem.style.getPropertyValue('margin-top'), '1px');
assert_equals(elem.style.getPropertyValue('margin-right'), '2px');
assert_equals(elem.style.getPropertyValue('margin-bottom'), '3px');
assert_equals(elem.style.getPropertyValue('margin-left'), '4px');
}, 'Setting a shorthand with a CSSStyleValue updates css rule');
test(t => {
let [elem, styleMap] = createRuleWithDeclaredStyleMap(t);
styleMap.set('margin', '1px 2px 3px 4px');
assert_equals(elem.style.getPropertyValue('margin'), '1px 2px 3px 4px');
assert_equals(elem.style.getPropertyValue('margin-top'), '1px');
assert_equals(elem.style.getPropertyValue('margin-right'), '2px');
assert_equals(elem.style.getPropertyValue('margin-bottom'), '3px');
assert_equals(elem.style.getPropertyValue('margin-left'), '4px');
}, 'Setting a shorthand with a string updates css rule');
</script>