From c46329d04db9e60dbc3d8e8e16a1c8489cb206a2 Mon Sep 17 00:00:00 2001 From: Eric Bidelman Date: Thu, 13 Apr 2017 16:46:57 -0700 Subject: [PATCH] Fix rebase --- lighthouse-core/report/v2/renderer/report-renderer.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lighthouse-core/report/v2/renderer/report-renderer.js b/lighthouse-core/report/v2/renderer/report-renderer.js index 56889559137c..b9ee5426c513 100644 --- a/lighthouse-core/report/v2/renderer/report-renderer.js +++ b/lighthouse-core/report/v2/renderer/report-renderer.js @@ -220,12 +220,12 @@ class ReportRenderer { * @return {!Element} */ _renderReport(report) { - const container = this._dom._createElement('div', 'lighthouse-content'); - const element = container.appendChild(this._createElement('div', 'lh-report')); + const container = this._dom.createElement('div', 'lh-content'); + const element = container.appendChild(this._dom.createElement('div', 'lh-report')); element.appendChild(this._renderReportHeader(report)); - const categories = element.appendChild(this._createElement('div', 'lh-categories')); + const categories = element.appendChild(this._dom.createElement('div', 'lh-categories')); for (const category of report.reportCategories) { categories.appendChild(this._renderCategory(category)); }