Scenario

IME UI & Experience: Viewports, Candidates, and Layout

Managing browser UI collisions, virtual keyboard resizing, and IME candidate window positioning.

ui
Scenario ID
scenario-ime-ui-experience

Details

Overview

The “IME experience” is not just about data—it’s about the physical stability of the editor. Mobile browsers and floating candidate windows frequently collide with application UI.

Key Experience Barriers

1. The ‘Viewport Jump’ (Scroll Anchoring)

When an IME is activated, the browser’s “Visual Viewport” changes.

  • Regression (iOS 18): Focusing a long document frequently fails to anchor the caret, causing the viewport to jump to the top of the container.
  • Android: Chrome often resizes the entire content area, which can cause ‘jumpy’ layout if elements aren’t sized with dv units.

2. Candidate Window Positioning

Floating windows (e.g., Japanese Kanji selection) are rendered by the OS but positioned by the browser.

  • Bug: In Fixed or Absolute containers, WebKit often places the window at the absolute 0,0 screen coordinate instead of anchoring it to the caret.

3. Interactive Widget Behavior

Modern viewports define interactive-widget=resizes-content. Choosing between resizes-content and resizes-visual determines whether the editor’s height shrinks or simply gets covered by the keyboard.

Optimization Strategy: Viewport Sync

/* Use the Visual Viewport API for stabilization */
window.visualViewport.addEventListener('resize', () => {
  if (isFocused && isIMEActive) {
      // Manually force caret into view to prevent snap-jump
      ensureCaretInCenter();
  }
});

Scenario flow

Visual view of how this scenario connects to its concrete cases and environments. Nodes can be dragged and clicked.

React Flow mini map

Variants

Each row is a concrete case for this scenario, with a dedicated document and playground.

Case OS Device Browser Keyboard Status
ce-0580 iOS 18.0 iPhone / iPad Any Safari 18.x Virtual Keyboard confirmed

Cases

Open a case to see the detailed description and its dedicated playground.

Related Scenarios

Other scenarios that share similar tags or category.

Tags: keyboard, scroll

Caret visibility after scroll on iOS Safari

After the user or the page scrolls while editing in iOS Safari, the caret may render in the wrong place, disappear until the next tap, or sit outside the visible viewport—especially with fixed headers or virtual keyboard resize.

1 case
Tags: keyboard, scroll

Page scroll when the mobile keyboard opens

Mobile browsers may scroll the page to bring the focused field into view when the virtual keyboard opens—sometimes overscrolling or hiding fixed UI and the caret.

1 case
Tags: scroll

Caret scrolls out of view during typing

Automatic scroll-to-caret may fail when the editable is inside nested scrollers, overflow hidden ancestors, or during rapid input—the user loses sight of the insertion point without manual scroll.

1 case

Comments & Discussion

Have questions, suggestions, or want to share your experience? Join the discussion below.