blob: cefdd25d456cdc369a92006a337353e2f8db2c4d [file] [log] [blame]
<!DOCTYPE html>
<title>SVGTransformList.consolidate() on an empty transform list</title>
<script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
test(function() {
let element = document.createElementNS("http://www.w3.org/2000/svg", "pattern");
let transformList = element.patternTransform.baseVal;
assert_equals(transformList.length, 0);
assert_equals(transformList.consolidate(), null);
});
</script>