HTMLProgressElement.max
Previously, 0 was returned if `HTMLProgressElement.max` was set to a negative value.
The max attribute is now clamped to ensure it is limited to positive numbers and the value attribute is clamped to ensure it is non-negative.
Previously, we returned from the value setter if the specified value was above the max value. This is not required, as the getter clamps the returned value to the max value.