script/dom/
values.rs

1/* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at https://mozilla.org/MPL/2.0/. */
4
5// https://html.spec.whatwg.org/multipage#reflecting-content-attributes-in-idl-attributes:idl-unsigned-long
6// https://html.spec.whatwg.org/multipage#limited-to-only-non-negative-numbers-greater-than-zero
7pub(crate) const UNSIGNED_LONG_MAX: u32 = 2147483647;