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.
139 140 141 |
# File 'lib/axe/cuprite/results.rb', line 139 def initialize(raw) @raw = raw || {} end |
Instance Attribute Details
#raw ⇒ Object (readonly)
Returns the value of attribute raw.
137 138 139 |
# File 'lib/axe/cuprite/results.rb', line 137 def raw @raw end |
Instance Method Details
#bg_color ⇒ Object
147 148 149 |
# File 'lib/axe/cuprite/results.rb', line 147 def bg_color @raw["bgColor"] end |
#contrast_ratio ⇒ Object
151 152 153 |
# File 'lib/axe/cuprite/results.rb', line 151 def contrast_ratio @raw["contrastRatio"] end |
#expected_contrast_ratio ⇒ Object
155 156 157 |
# File 'lib/axe/cuprite/results.rb', line 155 def expected_contrast_ratio @raw["expectedContrastRatio"] end |
#fg_color ⇒ Object
143 144 145 |
# File 'lib/axe/cuprite/results.rb', line 143 def fg_color @raw["fgColor"] end |
#font_size ⇒ Object
159 160 161 |
# File 'lib/axe/cuprite/results.rb', line 159 def font_size @raw["fontSize"] end |
#font_weight ⇒ Object
163 164 165 |
# File 'lib/axe/cuprite/results.rb', line 163 def font_weight @raw["fontWeight"] end |