Changeset 195455 in webkit
- Timestamp:
- Jan 22, 2016, 10:06:18 AM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r195453 r195455 1 2016-01-22 Chris Dumez <cdumez@apple.com> 2 3 Unreviewed iOS build fix after r195452. 4 5 * accessibility/AccessibilityNodeObject.cpp: 6 (WebCore::AccessibilityNodeObject::colorValue): 7 1 8 2016-01-21 Dave Hyatt <hyatt@apple.com> 2 9 -
trunk/Source/WebCore/accessibility/AccessibilityNodeObject.cpp
r195452 r195455 1846 1846 b = 0; 1847 1847 1848 #if ENABLE(INPUT_TYPE_COLOR) 1848 1849 if (!isColorWell()) 1849 1850 return; … … 1852 1853 return; 1853 1854 1854 HTMLInputElement& input = downcast<HTMLInputElement>(*node());1855 auto& input = downcast<HTMLInputElement>(*node()); 1855 1856 if (!input.isColorControl()) 1856 1857 return; … … 1861 1862 g = color.green(); 1862 1863 b = color.blue(); 1864 #endif 1863 1865 } 1864 1866
Note:
See TracChangeset
for help on using the changeset viewer.