Coverage Report

Created: 2026-07-15 07:03

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/wt/src/Wt/Render/CssData_p.C
Line
Count
Source
1
#include "CssData_p.h"
2
3
using namespace Wt::Render;
4
5
Term DeclarationBlockImpl::value(const std::string& property) const
6
0
{
7
0
  std::map<std::string, Term >::const_iterator iter
8
0
      = properties_.find(property);
9
0
  return iter != properties_.end() ? iter->second : Term();
10
0
}