| Summary: | iOS8 Safari <select>: Tab crashes when moving to the next form widget after having changed the value of a <select> | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Gabriel Schulhof <gabriel.schulhof> |
| Component: | Forms | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED MOVED | ||
| Severity: | Normal | CC: | bfulgham, webkit-bug-importer |
| Priority: | P2 | Keywords: | InRadar |
| Version: | 528+ (Nightly build) | ||
| Hardware: | iPhone / iPad | ||
| OS: | Unspecified | ||
|
Description
Gabriel Schulhof
2014-10-17 02:20:27 PDT
The <select> has a change event handler that blurs it when it fires. <!DOCTYPE html>
<html>
<head>
<title>JQM latest - issue 7685</title>
<script>
document.addEventListener( "change", function( event ){
event.target.blur();
});
</script>
</head>
<body>
<form>
<select id="select-1">
<option value="value1">S1 Value 1</option>
<option value="value2">S1 Value 2</option>
</select>
<select id="select-2">
<option value="value1">S2 Value 1</option>
<option value="value2">S2 Value 2</option>
</select>
</form>
</body>
</html>
The fix for this issue was needed outside the WebKit project, therefore this is being resolved as 'Moved'. This should now be fixed in shipping software. |