Class: AxeCuprite::ContrastData
- Inherits:
-
Object
- Object
- AxeCuprite::ContrastData
- Defined in:
- lib/axe/cuprite/results.rb
Overview
Typed view over a color-contrast check’s ‘data` hash.
Instance Attribute Summary collapse
-
#raw ⇒ Object
readonly
Returns the value of attribute raw.
Instance Method Summary collapse
- #bg_color ⇒ Object
- #contrast_ratio ⇒ Object
- #expected_contrast_ratio ⇒ Object
- #fg_color ⇒ Object
- #font_size ⇒ Object
- #font_weight ⇒ Object
-
#initialize(raw) ⇒ ContrastData
constructor
A new instance of ContrastData.
Constructor Details
#initialize(raw) ⇒ ContrastData
Returns a new instance of ContrastData.
168 169 170 |
# File 'lib/axe/cuprite/results.rb', line 168 def initialize(raw) @raw = DeepFreeze.call(raw || {}) end |
Instance Attribute Details
#raw ⇒ Object (readonly)
Returns the value of attribute raw.
166 167 168 |
# File 'lib/axe/cuprite/results.rb', line 166 def raw @raw end |
Instance Method Details
#bg_color ⇒ Object
176 177 178 |
# File 'lib/axe/cuprite/results.rb', line 176 def bg_color @raw["bgColor"] end |
#contrast_ratio ⇒ Object
180 181 182 |
# File 'lib/axe/cuprite/results.rb', line 180 def contrast_ratio @raw["contrastRatio"] end |
#expected_contrast_ratio ⇒ Object
184 185 186 |
# File 'lib/axe/cuprite/results.rb', line 184 def expected_contrast_ratio @raw["expectedContrastRatio"] end |
#fg_color ⇒ Object
172 173 174 |
# File 'lib/axe/cuprite/results.rb', line 172 def fg_color @raw["fgColor"] end |
#font_size ⇒ Object
188 189 190 |
# File 'lib/axe/cuprite/results.rb', line 188 def font_size @raw["fontSize"] end |
#font_weight ⇒ Object
192 193 194 |
# File 'lib/axe/cuprite/results.rb', line 192 def font_weight @raw["fontWeight"] end |