Fixup invalid test.

This commit is contained in:
Emilio Cobos Álvarez 2017-03-27 00:27:54 +02:00
parent 3ab6a20c85
commit c654c05884
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -125,7 +125,7 @@ var numberProperties = [
numberProperties.forEach(function(prop) {
test(function() {
div.style.setProperty(prop, 'calc(1)');
assert_equals(div.style.getPropertyValue(prop), '1');
assert_equals(div.style.getPropertyValue(prop), 'calc(1)');
}, 'calc for ' + prop);
});