Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/obsolete/requirements-for-implementations/other-elements-attributes-and-apis/window-external.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>window.external</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
"use strict";
test(() => {
assert_own_property(window, "external");
}, "window.external exists");
test(() => {
assert_equals(window.external.AddSearchProvider(), undefined);
assert_equals(window.external.IsSearchProviderInstalled(), undefined);
}, "window.external SearchProvider methods are no-ops");
</script>