mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 787289 - Don't copy useless info from about:support. r=dtownsend
This commit is contained in:
parent
ec00d0cbc3
commit
ecea0b052d
@ -323,6 +323,9 @@ function createTextForElement(elem) {
|
||||
}
|
||||
|
||||
function generateTextForElement(elem, indent, textFragmentAccumulator) {
|
||||
if (elem.classList.contains("no-copy"))
|
||||
return;
|
||||
|
||||
// Add a little extra spacing around most elements.
|
||||
if (elem.tagName != "td")
|
||||
textFragmentAccumulator.push("\n");
|
||||
|
@ -90,7 +90,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr id="profile-row">
|
||||
<tr id="profile-row" class="no-copy">
|
||||
<th class="column">
|
||||
#ifdef XP_WIN
|
||||
&aboutSupport.appBasicsProfileDirWinMac;
|
||||
@ -118,7 +118,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<tr class="no-copy">
|
||||
<th class="column">
|
||||
&aboutSupport.appBasicsEnabledPlugins;
|
||||
</th>
|
||||
@ -138,7 +138,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<tr class="no-copy">
|
||||
<th class="column">
|
||||
&aboutSupport.appBasicsCrashIDs;
|
||||
</th>
|
||||
@ -148,7 +148,7 @@
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<tr class="no-copy">
|
||||
<th class="column">
|
||||
&aboutSupport.appBasicsMemoryUse;
|
||||
</th>
|
||||
|
Loading…
Reference in New Issue
Block a user