In the below case, the node for the rule gets 1 child which is of type property with name as margin\n padding and value as 10px
.foo {
margin
padding: 10px;
}
In the below case, the node for the rule gets 1 child which is of type property with name as margin and value as padding: 10px
.foo {
margin:
padding: 10px;
}