Import a Chromium <input type=color> test that tests that no crash occurs when changing the color with the picker open.
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