This is required to remove focus in strict-focus=true even when the focus is
set to an editable element before the page is completely loaded. The previous
logic caused the cursor to be visible in form filed but vimb where still in
normals mode.
if (vb.mode->id == 'i') {
vb_enter('n');
}
+ dom_check_auto_insert(view);
break;
case WEBKIT_LOAD_FINISHED:
update_title();
if (strncmp(uri, "about:", 6)) {
- dom_check_auto_insert(view);
history_add(HISTORY_URL, uri, webkit_web_view_get_title(view));
}
break;