Skip to content

← Browser Name

Edge WebView

  • Developer: Microsoft
  • Development Status: Replaced by Edge WebView2
  • Released: 2015
  • Platforms: Windows
  • Type: Browser
  • Rendering Engine: EdgeHTML

Overview

Edge WebView was Microsoft's embedded web control based on the legacy EdgeHTML version of Edge.

UAParser.js separates Microsoft's legacy, current, mobile, and embedded browser identities:

BrowserDescription
IEMicrosoft's legacy browser, replaced by Edge.
IE MobileThe former mobile version of Internet Explorer.
EdgeMicrosoft's browser that replaced Internet Explorer.
Edge WebViewThe embedded web control from the legacy Edge platform.
Edge WebView2The modern web control powered by the Edge Chromium runtime.

User-Agent Examples

Windows IoT
sh
Mozilla/5.0 (Windows IoT 10.0; Android 6.0.1; WebView/3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Mobile Safari/537.36 Edge/18.17763

Code Example

js
import { UAParser } from 'ua-parser-js';
import { BrowserName } from 'ua-parser-js/enums';

const parser = new UAParser();
const ua = 'Mozilla/5.0 (Windows IoT 10.0; Android 6.0.1; WebView/3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Mobile Safari/537.36 Edge/18.17763';

const browser = parser.setUA(ua).getBrowser();

console.log(browser);
// {name: "Edge WebView", version: "18.17763", major: "18", type: "inapp"}

console.log(browser.is(BrowserName.EDGE_WEBVIEW));
// true

UAParser.js v2 is licensed under AGPLv3 or PRO licenses.