Changeset 195455 in webkit


Ignore:
Timestamp:
Jan 22, 2016 10:06:18 AM (8 years ago)
Author:
Chris Dumez
Message:

Unreviewed iOS build fix after r195452.

  • accessibility/AccessibilityNodeObject.cpp:

(WebCore::AccessibilityNodeObject::colorValue):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r195453 r195455  
     12016-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
    182016-01-21  Dave Hyatt  <hyatt@apple.com>
    29
  • trunk/Source/WebCore/accessibility/AccessibilityNodeObject.cpp

    r195452 r195455  
    18461846    b = 0;
    18471847
     1848#if ENABLE(INPUT_TYPE_COLOR)
    18481849    if (!isColorWell())
    18491850        return;
     
    18521853        return;
    18531854
    1854     HTMLInputElement& input = downcast<HTMLInputElement>(*node());
     1855    auto& input = downcast<HTMLInputElement>(*node());
    18551856    if (!input.isColorControl())
    18561857        return;
     
    18611862    g = color.green();
    18621863    b = color.blue();
     1864#endif
    18631865}
    18641866
Note: See TracChangeset for help on using the changeset viewer.