Lines Matching refs:attributeValue
126 let attributeValue = ''
142 attributeValue = cookieAv.slice(position.position + 1)
154 attributeValue = attributeValue.trim()
158 if (attributeValue.length > maxAttributeValueSize) {
173 const expiryTime = new Date(attributeValue)
186 const charCode = attributeValue.charCodeAt(0)
188 if ((charCode < 48 || charCode > 57) && attributeValue[0] !== '-') {
194 if (!/^\d+$/.test(attributeValue)) {
199 const deltaSeconds = Number(attributeValue)
223 let cookieDomain = attributeValue
245 if (attributeValue.length === 0 || attributeValue[0] !== '/') {
252 cookiePath = attributeValue
281 const attributeValueLowercase = attributeValue.toLowerCase()
307 cookieAttributeList.unparsed.push(`${attributeName}=${attributeValue}`)