blob: 6fb9b22a58258cb4f93eba7e7f24567cc86a05c8 [file] [log] [blame]
<!DOCTYPE html>
<script src="../../../resources/testharness.js"></script>
<script src="../../../resources/testharnessreport.js"></script>
<div id='testElem'></div>
<script>
test(function() {
testElem.style.setProperty('--bar', 'value');
testElem.setAttribute('style', testElem.getAttribute('style'));
assert_equals(testElem.style.getPropertyValue('--bar'), 'value');
testElem.style.setProperty('--bar', ' value');
testElem.setAttribute('style', testElem.getAttribute('style'));
assert_equals(testElem.style.getPropertyValue('--bar'), ' value');
}, "round tripping style works for variables.");
</script>