Skip to content

Commit

Permalink
Reword title text in the test case list and crash stats. (google#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbarbella-chromium authored and inferno-chromium committed Feb 6, 2019
1 parent e0e5a3f commit fda03fd
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
14 changes: 7 additions & 7 deletions src/appengine/private/components/crash-stats/crash-stats.html
Original file line number Diff line number Diff line change
Expand Up @@ -311,18 +311,18 @@
</span>
</template>
<span class="labels">
<span class="label project" title="The crash is associated with [[item.projectName]] project.">Project [[item.projectName]]</span>
<span class="label project" title="The crash is associated with the [[item.projectName]] project.">Project [[item.projectName]]</span>
<if-else condition="[[item.isSecurity]]">
<span slot="t" class="label security" title="The crash is security-related.">Security</span>
<span slot="f" class="label" title="The crash is NOT security-related.">Security</span>
<span slot="t" class="label security" title="The crash is security-relevant.">Security</span>
<span slot="f" class="label" title="The crash is NOT security-relevant.">Security</span>
</if-else>
<if-else condition="[[item.isReproducible]]">
<span slot="t" class="label reproducible" title="The crash is reliably reproducible at least once over the selected time period.">Reliably reproduces</span>
<span slot="f" class="label" title="The crash is not reliably reproducible over the selected time period.">Reliably reproduces</span>
<span slot="t" class="label reproducible" title="Found at least one reliably reproducible occurrence of the crash over the selected time period.">Reliably reproduces</span>
<span slot="f" class="label" title="The crash was consistently not reproducible over the selected time period.">Reliably reproduces</span>
</if-else>
<if-else condition="[[item.isNew]]">
<span slot="t" class="label new" title="The crash is considered as 'new' within the selected time period.">New</span>
<span slot="f" class="label" title="The crash is NOT considered as 'new' within the selected time period.">New</span>
<span slot="t" class="label new" title="The crash was discovered (or rediscovered) in the selected time period.">New</span>
<span slot="f" class="label" title="The crash was discovered before the selected time period.">New</span>
</if-else>
<template is="dom-repeat" items="[[getIssue(item)]]" as="issue">
<a class="label issue" href="/issue/[[item.testcase.id]]/[[issue.number]]" title="[[issue.title]]">Issue [[issue.number]]</a>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@
on-tap="filterProject"
data-project$="[[item.projectName]]"
class="label project clickable"
title="The crash is associated with [[item.projectName]] project.">
title="The crash is associated with the [[item.projectName]] project.">
Project [[item.projectName]]
</span>
</template>
Expand All @@ -336,7 +336,7 @@
on-tap="filterPlatform"
data-platform$="[[item.platform]]"
class="label platform clickable"
title="The crash was found on [[item.platform]] OS.">
title="The crash was found on [[item.platform]].">
Platform [[item.platform]]
</span>
</template>
Expand All @@ -360,13 +360,13 @@
data-security="yes"
slot="t"
class="label security clickable"
title="The crash is security-related.">Security</span>
title="The crash is security-relevant.">Security</span>
<span
on-tap="filterSecurity"
data-security="no"
slot="f"
class="label clickable"
title="The crash is NOT security-related.">Security</span>
title="The crash is NOT security-relevant.">Security</span>
</if-else>
</td>
</tr>
Expand Down Expand Up @@ -407,7 +407,7 @@
</span>
<span slot="f" class="label impact" title="The crash impacs Head." on-tap="filterImpact" data-impact="head">Head</span>
</if-else>
<span slot="f" class="label" title="The crash's impacts are not computed yet.">Impact is pending</span>
<span slot="f" class="label" title="The crash's impacted versions are not computed yet.">Impact is pending</span>
</if-else>
</template>
</td>
Expand Down

0 comments on commit fda03fd

Please sign in to comment.