blob: e909ce1ac5f286d3fc9f9ea6f4be831ff3787659 [file] [log] [blame]
<!DOCTYPE html>
<!--
Copyright (c) 2015 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<link rel="import" href="/base/ui/color_legend.html">
<script>
'use strict';
tr.b.unittest.testSuite(function() {
test('basic', function() {
// No label set.
var colorLegend = document.createElement('tr-b-ui-color-legend');
this.addHTMLOutput(colorLegend);
// Undefined label.
var colorLegend = document.createElement('tr-b-ui-color-legend');
colorLegend.label = undefined;
this.addHTMLOutput(colorLegend);
// Empty label.
var colorLegend = document.createElement('tr-b-ui-color-legend');
colorLegend.label = '';
this.addHTMLOutput(colorLegend);
// Non-empty label.
var colorLegend = document.createElement('tr-b-ui-color-legend');
colorLegend.label = 'Frequency';
this.addHTMLOutput(colorLegend);
// Long label.
var colorLegend = document.createElement('tr-b-ui-color-legend');
colorLegend.label = 'Total memory usage';
this.addHTMLOutput(colorLegend);
});
});
</script>