# File lib/rcov/formatters/html_erb_template.rb, line 26
      def code_coverage_html(code_coverage_percentage, is_total=false)
        %{<div class="percent_graph_legend"><tt class='#{ is_total ? 'coverage_total' : ''}'>#{ "%3.2f" % code_coverage_percentage }%</tt></div>
          <div class="percent_graph">
            <div class="covered" style="width:#{ code_coverage_percentage.round }px"></div>
            <div class="uncovered" style="width:#{ 100 - code_coverage_percentage.round }px"></div>
          </div>}
      end