Home
last modified time | relevance | path

Searched refs:_attributes (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
DCookieParser.js210 this._attributes = {};
243 return "httponly" in this._attributes;
251 return "secure" in this._attributes;
261 return !("expires" in this._attributes || "max-age" in this._attributes);
269 return this._attributes["path"];
277 return this._attributes["port"];
285 return this._attributes["domain"];
293 return this._attributes["expires"];
301 return this._attributes["max-age"];
342 return this._attributes;
[all …]
DDOMAgent.js55 this._attributes = []; property in WebInspector.DOMNode
137 return this._attributes.length > 0;
305 return this._attributes;
322 for (var i = 0; i < this._attributes.length; ++i) {
323 if (this._attributes[i].name === name) {
324 this._attributes.splice(i, 1);
470 var attributesChanged = !this._attributes || attrs.length !== this._attributes.length * 2;
473 this._attributes = []; property
587 this._attributes.push(attr);
610 this._attributes.remove(attr);