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