mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 817102 - Copy/paste from about:telemetry has no line breaks. r=ttaubert
This commit is contained in:
parent
d6ea34c93d
commit
f281d5d25a
@ -167,24 +167,26 @@ let SlowSQL = {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a header row for a Slow SQL table
|
* Creates a header row for a Slow SQL table
|
||||||
|
* Tabs & newlines added to cells to make it easier to copy-paste.
|
||||||
*
|
*
|
||||||
* @param aTable Parent table element
|
* @param aTable Parent table element
|
||||||
* @param aTitle Table's title
|
* @param aTitle Table's title
|
||||||
*/
|
*/
|
||||||
renderTableHeader: function SlowSQL_renderTableHeader(aTable, aTitle) {
|
renderTableHeader: function SlowSQL_renderTableHeader(aTable, aTitle) {
|
||||||
let caption = document.createElement("caption");
|
let caption = document.createElement("caption");
|
||||||
caption.appendChild(document.createTextNode(aTitle));
|
caption.appendChild(document.createTextNode(aTitle + "\n"));
|
||||||
aTable.appendChild(caption);
|
aTable.appendChild(caption);
|
||||||
|
|
||||||
let headings = document.createElement("tr");
|
let headings = document.createElement("tr");
|
||||||
this.appendColumn(headings, "th", this.slowSqlHits);
|
this.appendColumn(headings, "th", this.slowSqlHits + "\t");
|
||||||
this.appendColumn(headings, "th", this.slowSqlAverage);
|
this.appendColumn(headings, "th", this.slowSqlAverage + "\t");
|
||||||
this.appendColumn(headings, "th", this.slowSqlStatement);
|
this.appendColumn(headings, "th", this.slowSqlStatement + "\n");
|
||||||
aTable.appendChild(headings);
|
aTable.appendChild(headings);
|
||||||
},
|
},
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Fills out the table body
|
* Fills out the table body
|
||||||
|
* Tabs & newlines added to cells to make it easier to copy-paste.
|
||||||
*
|
*
|
||||||
* @param aTable Parent table element
|
* @param aTable Parent table element
|
||||||
* @param aSql SQL stats object
|
* @param aSql SQL stats object
|
||||||
@ -195,9 +197,9 @@ let SlowSQL = {
|
|||||||
|
|
||||||
let sqlRow = document.createElement("tr");
|
let sqlRow = document.createElement("tr");
|
||||||
|
|
||||||
this.appendColumn(sqlRow, "td", hitCount);
|
this.appendColumn(sqlRow, "td", hitCount + "\t");
|
||||||
this.appendColumn(sqlRow, "td", averageTime.toFixed(0));
|
this.appendColumn(sqlRow, "td", averageTime.toFixed(0) + "\t");
|
||||||
this.appendColumn(sqlRow, "td", sql);
|
this.appendColumn(sqlRow, "td", sql + "\n");
|
||||||
|
|
||||||
aTable.appendChild(sqlRow);
|
aTable.appendChild(sqlRow);
|
||||||
}
|
}
|
||||||
@ -212,8 +214,8 @@ let SlowSQL = {
|
|||||||
*/
|
*/
|
||||||
appendColumn: function SlowSQL_appendColumn(aRowElement, aColType, aColText) {
|
appendColumn: function SlowSQL_appendColumn(aRowElement, aColType, aColText) {
|
||||||
let colElement = document.createElement(aColType);
|
let colElement = document.createElement(aColType);
|
||||||
let aColTextElement = document.createTextNode(aColText);
|
let colTextElement = document.createTextNode(aColText);
|
||||||
colElement.appendChild(aColTextElement);
|
colElement.appendChild(colTextElement);
|
||||||
aRowElement.appendChild(colElement);
|
aRowElement.appendChild(colElement);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -529,6 +531,7 @@ let KeyValueTable = {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the table header
|
* Create the table header
|
||||||
|
* Tabs & newlines added to cells to make it easier to copy-paste.
|
||||||
*
|
*
|
||||||
* @param aTable Table element
|
* @param aTable Table element
|
||||||
*/
|
*/
|
||||||
@ -537,9 +540,9 @@ let KeyValueTable = {
|
|||||||
aTable.appendChild(headerRow);
|
aTable.appendChild(headerRow);
|
||||||
|
|
||||||
let keysColumn = document.createElement("th");
|
let keysColumn = document.createElement("th");
|
||||||
keysColumn.appendChild(document.createTextNode(this.keysHeader));
|
keysColumn.appendChild(document.createTextNode(this.keysHeader + "\t"));
|
||||||
let valuesColumn = document.createElement("th");
|
let valuesColumn = document.createElement("th");
|
||||||
valuesColumn.appendChild(document.createTextNode(this.valuesHeader));
|
valuesColumn.appendChild(document.createTextNode(this.valuesHeader + "\n"));
|
||||||
|
|
||||||
headerRow.appendChild(keysColumn);
|
headerRow.appendChild(keysColumn);
|
||||||
headerRow.appendChild(valuesColumn);
|
headerRow.appendChild(valuesColumn);
|
||||||
@ -547,6 +550,7 @@ let KeyValueTable = {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Create the table body
|
* Create the table body
|
||||||
|
* Tabs & newlines added to cells to make it easier to copy-paste.
|
||||||
*
|
*
|
||||||
* @param aTable Table element
|
* @param aTable Table element
|
||||||
* @param aMeasurements Key/value map
|
* @param aMeasurements Key/value map
|
||||||
@ -561,11 +565,11 @@ let KeyValueTable = {
|
|||||||
aTable.appendChild(newRow);
|
aTable.appendChild(newRow);
|
||||||
|
|
||||||
let keyField = document.createElement("td");
|
let keyField = document.createElement("td");
|
||||||
keyField.appendChild(document.createTextNode(key));
|
keyField.appendChild(document.createTextNode(key + "\t"));
|
||||||
newRow.appendChild(keyField);
|
newRow.appendChild(keyField);
|
||||||
|
|
||||||
let valueField = document.createElement("td");
|
let valueField = document.createElement("td");
|
||||||
valueField.appendChild(document.createTextNode(value));
|
valueField.appendChild(document.createTextNode(value + "\n"));
|
||||||
newRow.appendChild(valueField);
|
newRow.appendChild(valueField);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user