mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Work around bug 494546 causing performance problems when running chrome tests.
This commit is contained in:
parent
f51e72add0
commit
b7aff036cb
@ -51,7 +51,6 @@
|
||||
var tableContent = srvScope.linksToTableRows(links, 0);
|
||||
function populate() {
|
||||
$("test-table").innerHTML += tableContent;
|
||||
$("wrapper").innerHTML += " "; // redraw the table
|
||||
}
|
||||
gTestList = eval(srvScope.jsonArrayOfTestFiles(links));
|
||||
populate();
|
||||
@ -94,13 +93,16 @@
|
||||
<br />
|
||||
</div>
|
||||
<div id="wrapper">
|
||||
<table cellpadding="0" cellspacing="0" id="test-table">
|
||||
<tr>
|
||||
<td>Passed</td>
|
||||
<td>Failed</td>
|
||||
<td>Todo</td>
|
||||
<td>Test Files</td>
|
||||
</tr>
|
||||
<table cellpadding="0" cellspacing="0">
|
||||
<!-- tbody needed to avoid bug 494546 causing performance problems -->
|
||||
<tbody id="test-table">
|
||||
<tr>
|
||||
<td>Passed</td>
|
||||
<td>Failed</td>
|
||||
<td>Todo</td>
|
||||
<td>Test Files</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user