| Summary: | Import a Chromium <input type=color> test | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Jon Honeycutt <jhoneycutt> | ||||
| Component: | Forms | Assignee: | Jon Honeycutt <jhoneycutt> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | aestes, dbates, wenson_hsieh | ||||
| Priority: | P2 | ||||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=119094 | ||||||
| Attachments: |
|
||||||
|
Description
Jon Honeycutt
2015-09-04 16:23:09 PDT
Created attachment 260644 [details]
Patch
Committed r189408: <http://trac.webkit.org/changeset/189408> This test asserts in WebKit1. Will skip for now, but this is really the wrong way to not implement a feature - we should not assert on legitimate code paths.
#if ENABLE(INPUT_TYPE_COLOR)
std::unique_ptr<ColorChooser> WebChromeClient::createColorChooser(ColorChooserClient* client, const Color& initialColor)
{
// FIXME: Implement <input type='color'> for WK1 (Bug 119094).
ASSERT_NOT_REACHED();
return nullptr;
}
#endif
|