Files
2nd/10_Wiki/Topics/Domain_Programming/Programming & Language/Interop 2025.md
T
Antigravity Agent c24165b8bc refactor(topics): 멀티 에이전트용 지식 재편 — _Common(공통 기본기) + Domain_* 구조
에이전트 8종(대화형/프로그래머 C·S/디자이너/설계자/기획자/QA/PD/PM)에게
[공통 기본 능력 + 롤별 Specialty] 2층으로 지식을 주입하기 위한 재분류.
문서 내용·포맷은 무수정, 폴더 이동만 (6,372개 문서 수 보존 확인).

- Topic_Programming → Domain_Programming (내부 구조 보존)
- Topic_Graphic → Domain_Design
- Topic_Business → Domain_Product
- Topic_General → Domain_General
- _Common 신설: Math(구 Topic_Math_Specialty), Reasoning(구 General/From_Thinking & Reasoning),
  Reasoning_Creativity(구 General/From_창의성), Communication(Poetic_Blog_Writing + From_writing)
- 타 도메인의 From_* 폴더는 유지 (출처 표기일 뿐, 이미 도메인에 맞게 분류된 문서)
- 빈 폴더 정리 (memory/procedures)
- 에이전트→폴더 매핑은 workspace의 .astra/agent-knowledge-map.json (9개 에이전트)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-11 11:05:56 +09:00

4.5 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-interop-2025 Interop 2025 10_Wiki/Topics verified self
Web Interop 2025
none A 0.9 applied
web-platform
browser
standards
2026-05-10 pending
language framework
HTML/CSS/JavaScript Web Platform

Interop 2025

매 한 줄

"매 browser vendor 들이 매년 합의하여 fix 하는 web platform inconsistency list". Apple, Google, Microsoft, Mozilla, Bocoup, Igalia 가 공동으로 select 한 focus area 를 1년간 implement, web-platform-tests pass rate 의 dashboard 로 progress 의 track. 2025 cycle 의 anchor positioning, scrollbar styling, navigation API, View Transitions cross-document, storage access API 가 highlight.

매 핵심

매 origin & process

  • 2021 Compat 2021 시작, 2022 부터 "Interop" 명칭.
  • 매년 vendor 공동 선정 + community proposal.
  • WPT (web-platform-tests) score 로 measure — wpt.fyi dashboard.

매 Interop 2025 의 focus areas

  • Anchor positioning (CSS): tooltip/popover 의 declarative anchor.
  • View Transitions cross-document: MPA 도 SPA 같은 transition.
  • Scrollbar gutter / colors: scrollbar styling cross-browser.
  • Navigation API: history API replacement.
  • Storage Access API: cross-site cookie consent flow.
  • Container queries (residual gaps).
  • Custom highlights API: native highlight rendering.

매 응용

  1. Web feature 의 production-safe baseline 결정 (Baseline initiative 와 align).
  2. Polyfill / progressive enhancement strategy 의 기준.
  3. Browser team 의 quarterly priority.

💻 패턴

Anchor positioning (CSS)

/* Trigger */
.btn { anchor-name: --my-anchor; }

/* Popover positioned relative to anchor */
.tooltip {
  position: absolute;
  position-anchor: --my-anchor;
  top: anchor(bottom);
  left: anchor(center);
  translate: -50% 8px;
}

View Transitions cross-document

<!-- both pages opt in -->
<meta name="view-transition" content="same-origin">
<style>
  @view-transition { navigation: auto; }
  .hero { view-transition-name: hero; }
</style>

Navigation API

navigation.addEventListener('navigate', (e) => {
  if (!e.canIntercept || e.hashChange) return
  e.intercept({
    handler: async () => {
      const data = await fetch(e.destination.url).then(r => r.json())
      render(data)
    },
  })
})

Storage Access API

// inside iframe — request 1P-like cookie access
if (await document.hasStorageAccess() === false) {
  try {
    await document.requestStorageAccess()
  } catch (e) { /* user denied */ }
}

Scrollbar styling (modern)

.list {
  scrollbar-gutter: stable both-edges;
  scrollbar-width: thin;
  scrollbar-color: var(--thumb) transparent;
}

Feature detect via Baseline / @supports

@supports (anchor-name: --x) {
  .tooltip { position-anchor: --my-anchor; }
}
@supports not (anchor-name: --x) {
  .tooltip { /* fallback positioning JS */ }
}

매 결정 기준

상황 Approach
New feature production use Interop 2025 list + Baseline check
필요한 feature 가 still red polyfill or feature flag
Cross-browser bug found wpt.fyi 에 issue file
Greenfield SPA Navigation API 채택 검토
Tooltip / popover Anchor positioning + popover API

기본값: 매 Baseline Newly Available + Interop 2025 통과 feature 만 의 default 사용.

🔗 Graph

  • 변형: Interop 2026
  • 응용: View Transitions API · Navigation API
  • Adjacent: Chromium · Baseline

🤖 LLM 활용

언제: 매 web platform feature 의 cross-browser readiness 의 query, polyfill strategy, modern CSS/JS adoption 결정. 언제 X: server-side, native, non-browser runtime.

안티패턴

  • Single-vendor preview 의 production: Chrome canary 만 의 working ≠ ship-ready.
  • WPT pass = bug-free 의 가정: real-world edge case 는 WPT 가 다 cover X.
  • Polyfill 의 무지성 적용: native 가 ship 된 후에도 polyfill 유지 = bundle bloat.
  • Interop list 의 구속: list 외 의 feature 도 needed 면 채택 가능 — list 는 priority 일 뿐.

🧪 검증 / 중복

  • Verified (web.dev/interop-2025, wpt.fyi/interop-2025, vendor blog posts 2025).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Interop 2025 focus areas + adoption patterns