blob: 8b7eee6737df368660f451302989b489cfa2ce3f [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.setAttribute('style', '--foo:one;--foo:two;');
assert_equals(testElem.style.length, 1);
assert_equals(testElem.style.getPropertyValue('--foo'), 'two');
}, "the cascade applies correctly to variables in inline style.")
</script>