Skip to content

Commit

Permalink
report: remove margin when saving html in standalone report (#13409)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorjclark authored Nov 23, 2021
1 parent 4059955 commit 323763d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion report/renderer/report-ui-features.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ export class ReportUIFeatures {
if (this._topbar) {
this._topbar.resetUIState();
}
return `<!doctype html><body>${this._dom.rootEl.outerHTML}`;
return `<!doctype html><body style="margin: 0">${this._dom.rootEl.outerHTML}`;
}

/**
Expand Down

0 comments on commit 323763d

Please sign in to comment.