Home | History | Annotate | Download | only in parse-only

Lines Matching refs:bools

1556 var bools = ['compact', 'nowrap', 'ismap', 'declare', 'noshade', 'checked', 'disabled', 'readonly', 'multiple', 'selected', 'noresize', 'defer'];
1559 bools = bools.associate(bools);
1561 Hash.extend(attributes, bools);
1633 if (key && bools[attribute]) value = !!value;
1646 return (bools[attribute]) ? !!value : (key) ? value : value || null;
1656 (key) ? this[key] = (key && bools[attribute]) ? false : '' : this.removeAttribute(attribute);