Update editable-table

This commit is contained in:
Oliver Hamlet
2016-03-05 11:49:26 +00:00
parent d84a4c0081
commit a6ae6d0f52
3 changed files with 349 additions and 298 deletions
+1
View File
@@ -62,6 +62,7 @@ function vulcanizeTests(releasePath) {
const outputPath = path.join(releasePath.path, 'html_tests', 'elements');
const tests = [
'test_editable-table.html',
'test_loot-custom-icons.html',
'test_loot-dropdown-menu.html',
'test_loot-message-dialog.html',
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,52 @@
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>test_editable-table.html</title>
<link rel="import" href="../../../../gui/html/native-shadow-dom.html">
<link rel="import" href="../../../../gui/html/elements/editable-table.html">
</head>
<body>
<table is="editable-table" data-template="fileRow">
<thead>
<tr><th>Filename</th><th>Display Name</th><th>Condition</th><th></th></tr>
</thead>
<tbody>
<!-- File rows go here. -->
</tbody>
</table>
<table is="editable-table" data-template="messageRow">
<thead>
<tr><th>Type</th><th>Content</th><th>Condition</th><th>Language</th><th></th></tr>
</thead>
<tbody>
<!-- Message rows go here. -->
</tbody>
</table>
<table is="editable-table" data-template="tagRow">
<thead>
<tr><th>Add/Remove</th><th>Bash Tag</th><th>Condition</th><th></th></tr>
</thead>
<tbody>
<!-- Bash Tag rows go here. -->
</tbody>
</table>
<table is="editable-table" data-template="dirtyInfoRow">
<thead>
<tr><th>CRC</th><th>ITM Count</th><th>Deleted References</th><th>Deleted Navmeshes</th><th>Cleaning Utility</th><th></th></tr>
</thead>
<tbody>
<!-- Dirty info rows go here. -->
</tbody>
</table>
<table is="editable-table" data-template="locationRow">
<thead>
<tr><th>URL</th><th>Name</th><th></th></tr>
</thead>
<tbody>
<!-- Location rows go here. -->
</tbody>
</table>
</body>