зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1792524 - [WebDriver BiDi] Add support for serialization and deserialization of generic platform objects. r=webdriver-reviewers,jdescottes
Differential Revision: https://phabricator.services.mozilla.com/D165421
This commit is contained in:
Родитель
e58b9d039a
Коммит
0e51bbe007
|
@ -644,30 +644,25 @@ export function serialize(
|
||||||
}
|
}
|
||||||
|
|
||||||
return serialized;
|
return serialized;
|
||||||
}
|
} else if (ChromeUtils.isDOMObject(value)) {
|
||||||
// TODO: Bug 1770733 and 1792524. Remove the if condition when the serialization of all the other types is implemented,
|
|
||||||
// since then the serialization of plain objects should be the fallback.
|
|
||||||
else if (className == "Object") {
|
|
||||||
const serialized = buildSerialized("object", handleId);
|
const serialized = buildSerialized("object", handleId);
|
||||||
setInternalIdsIfNeeded(serializationInternalMap, serialized, value);
|
|
||||||
|
|
||||||
if (!knownObject && maxDepth !== null && maxDepth > 0) {
|
|
||||||
serialized.value = serializeMapping(
|
|
||||||
Object.entries(value),
|
|
||||||
maxDepth,
|
|
||||||
childOwnership,
|
|
||||||
serializationInternalMap,
|
|
||||||
realm
|
|
||||||
);
|
|
||||||
}
|
|
||||||
return serialized;
|
return serialized;
|
||||||
}
|
}
|
||||||
|
|
||||||
lazy.logger.warn(
|
// Otherwise serialize the JavaScript object as generic object.
|
||||||
`Unsupported type: ${type} for remote value: ${stringify(value)}`
|
const serialized = buildSerialized("object", handleId);
|
||||||
);
|
setInternalIdsIfNeeded(serializationInternalMap, serialized, value);
|
||||||
|
|
||||||
return undefined;
|
if (!knownObject && maxDepth !== null && maxDepth > 0) {
|
||||||
|
serialized.value = serializeMapping(
|
||||||
|
Object.entries(value),
|
||||||
|
maxDepth,
|
||||||
|
childOwnership,
|
||||||
|
serializationInternalMap,
|
||||||
|
realm
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return serialized;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Загрузка…
Ссылка в новой задаче