Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Unified Diff: telemetry/third_party/snap-it/content_script.js

Issue 3017573002: Make sure snap_page combined iframe serialized dom
Patch Set: . Created 3 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: telemetry/third_party/snap-it/content_script.js
diff --git a/telemetry/third_party/snap-it/content_script.js b/telemetry/third_party/snap-it/content_script.js
index 1abfc1f5bcf61c6adeda10a6df6d49a81b763420..7164164ce79235f9d3dfc8799acb746308c91852 100644
--- a/telemetry/third_party/snap-it/content_script.js
+++ b/telemetry/third_party/snap-it/content_script.js
@@ -4,26 +4,7 @@
* @param {HTMLSerializer} htmlSerializer The HTMLSerializer.
*/
function sendHTMLSerializerToExtension(htmlSerializer) {
- var result = {
- 'html': htmlSerializer.html,
- 'frameHoles': htmlSerializer.frameHoles,
- 'idToStyleIndex': htmlSerializer.idToStyleIndex,
- 'idToStyleMap': htmlSerializer.idToStyleMap,
- 'windowHeight': htmlSerializer.windowHeight,
- 'windowWidth': htmlSerializer.windowWidth,
- 'rootId': htmlSerializer.rootId,
- 'rootStyleIndex': htmlSerializer.rootStyleIndex,
- 'pseudoElementSelectorToCSSMap':
- htmlSerializer.pseudoElementSelectorToCSSMap,
- 'pseudoElementPlaceHolderIndex':
- htmlSerializer.pseudoElementPlaceHolderIndex,
- 'pseudoElementTestingStyleIndex':
- htmlSerializer.pseudoElementStyleTestingIndex,
- 'pseudoElementTestingStyleId': htmlSerializer.pseudoElementTestingStyleId,
- 'unusedId': htmlSerializer.generateId(document),
- 'frameIndex': htmlSerializer.iframeFullyQualifiedName(window)
- };
- chrome.runtime.sendMessage(result);
+ chrome.runtime.sendMessage(htmlSerializer.asDict());
}
var htmlSerializer = new HTMLSerializer();

Powered by Google App Engine
This is Rietveld 408576698