[Webkit-unassigned] [Bug 121148] SHOULD NEVER BE REACHED is touched WebCore::InputType::createStepRange

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Sep 11 21:09:48 PDT 2013


https://bugs.webkit.org/show_bug.cgi?id=121148





--- Comment #1 from yosin at chromium.org  2013-09-11 21:09:00 PST ---
RenderThemeQStyle::paintSliderTrack() should check HTMLInputElement::isSteppable() rather than HTMLInputElement is rendered as slider.
bool RenderThemeQStyle::paintSliderTrack(...)
{
    ...
    HTMLInputElement* slider = o->node()->toInputElement();
    if (slider && slider->isSteppable()) {
        ...
        p.styleOption.slider.maximum = slider->maximum() * width;
        ...
    }
    ...
}

Note: Blink doesn't assert for data:text/html,<input style="-webkit-appearance:slider-vertical;">

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.


More information about the webkit-unassigned mailing list